Button improvements: - Primary buttons now more prominent with shadow, larger padding, and hover effects - Secondary buttons use ghost style for reduced visual weight - Added transform animations for better interactivity - Clear visual hierarchy between Create/Cancel actions Form and layout improvements: - Enhanced form inputs with better padding and hover states - Fixed white background issue on input focus (now uses theme colors) - Added browser autofill color fixes to prevent white-on-white text - Improved placeholder text visibility with proper theme colors - Added form-section card styling for better visual grouping Page layout enhancements: - Increased header padding and added subtle shadow - Better typography hierarchy with larger headings - Narrower content width (800px) for improved readability - More breathing room between sections CSS consolidation (continued): - AspectRatioSelector.css: 88→42 lines (52% reduction) - CreationActions.css: 96→57 lines (41% reduction) - EmptyPresentationState.css: 129→27 lines (79% reduction) - Updated components to use utility classes from application.css All changes maintain theme consistency and work in both light/dark modes. 🤖 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.