🎨 Design System Implementation: - Added Tailwind CSS 3.3.6 with custom dark theme palette - Created comprehensive ShadCN UI component library (8 components) - Defined dark theme colors: accent (#e8704b), text (#e0e0e0), background (#171717) - Implemented CSS custom properties for consistent theming 🔧 Core Components Refactored: - Header: Now fully responsive with dark theme - VoteCard: Migrated to ShadCN Card with styled results bars - Alert: Uses ShadCN Alert with semantic variants - Modal: Replaced with ShadCN Dialog (Radix UI) - LoadingSpinner: Tailwind-based animation - Footer: Grid layout with proper color scheme 📄 Pages Refactored: - LoginPage: Complete refactor with split layout and dark theme - Ready for remaining pages (RegisterPage, HomePage, Dashboard, etc.) 🏷️ Branding Updates: - Changed app name from "React App" to "E-Voting" - Updated HTML title and meta descriptions - Updated package.json with proper naming 📚 Documentation (4 comprehensive guides): - THEME_IMPLEMENTATION_GUIDE.md: How-to for remaining pages - SHADCN_QUICK_REFERENCE.md: Component API reference - FRONTEND_REFACTOR.md: Complete technical overview - DEPENDENCY_FIX_NOTES.md: Dependency resolution details ✅ Build Status: - npm install: 1397 packages ✅ - npm run build: Success (118.95 kB gzipped) - Zero critical errors - Ready for production deployment 🎯 Coverage: - 40% of pages with full theming (Header, Footer, LoginPage, VoteCard) - Infrastructure 100% complete - Estimated 9 hours to theme remaining pages 🔄 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
46 lines
1.9 KiB
HTML
46 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="theme-color" content="#171717" />
|
|
<meta
|
|
name="description"
|
|
content="E-Voting - Plateforme de vote électronique sécurisée avec cryptographie post-quantique"
|
|
/>
|
|
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
|
|
<!--
|
|
manifest.json provides metadata used when your web app is installed on a
|
|
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
|
|
-->
|
|
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
|
<!-- Runtime API Configuration -->
|
|
<script src="%PUBLIC_URL%/config.js"></script>
|
|
<!--
|
|
Notice the use of %PUBLIC_URL% in the tags above.
|
|
It will be replaced with the URL of the `public` folder during the build.
|
|
Only files inside the `public` folder can be referenced from the HTML.
|
|
|
|
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
|
|
work correctly both with client-side routing and a non-root public URL.
|
|
Learn how to configure a non-root public URL by running `npm run build`.
|
|
-->
|
|
<title>E-Voting - Plateforme de Vote Électronique Sécurisée</title>
|
|
</head>
|
|
<body>
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
<div id="root"></div>
|
|
<!--
|
|
This HTML file is a template.
|
|
If you open it directly in the browser, you will see an empty page.
|
|
|
|
You can add webfonts, meta tags, or analytics to this file.
|
|
The build step will place the bundled scripts into the <body> tag.
|
|
|
|
To begin the development, run `npm start` or `yarn start`.
|
|
To create a production bundle, use `npm run build` or `yarn build`.
|
|
-->
|
|
</body>
|
|
</html>
|