## Major Improvements: ### Absolute Positioning System - Implemented fixed positioning for slide editor to break out of DOM flow - Editor uses full viewport (top: 80px; left: 0; right: 0; bottom: 0) - Fixed header at top with z-index layering for proper overlap - Background overlay to separate from underlying content ### Viewport-Optimized Layout - True 50/50 split using full available viewport width - Height calculations based on actual viewport (100vh) not container constraints - Responsive top positioning (80px desktop, 60px tablet, 50px mobile) - No scrolling issues - content always fits within viewport boundaries ### Enhanced Live Preview - Applied presentation aspect ratio classes to preview container - Dynamic aspect ratio detection (16:9, 4:3, 16:10) - Viewport-aware sizing with proper aspect ratio preservation - Added aspect ratio indicator in preview meta information ### Improved User Experience - Compact header design with reduced padding and font sizes - Internal scrolling for content fields while keeping actions visible - Better space utilization with reduced margins and gaps - Consistent behavior across all screen sizes and orientations ### Technical Enhancements - Z-index management for proper layering (header: 20, content: 10) - Flexbox structure for optimal space distribution - Overflow handling for different content types - Mobile-responsive design with appropriate scaling 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> |
||
---|---|---|
public | ||
scripts | ||
src | ||
.gitignore | ||
CLAUDE.md | ||
ERROR_HANDLING_STANDARDS.md | ||
eslint.config.js | ||
IMPORT_STANDARDS.md | ||
index.html | ||
package-lock.json | ||
package.json | ||
REACT19_IMPLEMENTATION.md | ||
README.md | ||
tsconfig.app.json | ||
tsconfig.json | ||
tsconfig.node.json | ||
USERFLOWS.md | ||
VITE_PERFORMANCE.md | ||
vite.config.ts |
Online slide presentation editor and viewer built with React and Vite
A web application for creating, editing, and presenting slide presentations with customizable themes and layouts.
Features
- Create new presentations with a selection of built-in themes
- Add slides with various layouts based on the selected theme
- Add text and images to slide layout "slots"
- Add presentation notes to slides
- Present slides in full-screen mode
- Easily switch themes and update presentations accordingly
- Modular and reusable React components
- Customizable themes with support for CSS, fonts, colors, and images
- Support for "master slides" with non-overridable content
- Responsive design for various screen sizes
- Export presentations to PDF or HTML format
Getting Started
Prerequisites
- Node.js (v20 or later)
- npm (v9 or later)
- Git (for cloning the repository)
- A modern web browser (for running the application)
- A code editor (e.g., VSCode) for development
- Basic knowledge of React, TypeScript, HTML, and CSS
- Familiarity with Vite and npm package management
Installation
- Clone the repository:
git clone https://git.dasfad.com/mmainguy/slideshare.git
- Navigate to the project directory:
cd slideshare
- Install dependencies:
-
npm install ```
- Start the development server:
-
npm run dev ```
- Open your web browser and navigate to
http://localhost:5173
to view the application.