index.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>Contact Homepage</title>
  7. <script src="https://cdn.tailwindcss.com"></script>
  8. <script type="importmap">
  9. {
  10. "imports": {
  11. "react": "https://esm.sh/react@18.2.0",
  12. "react-dom/client": "https://esm.sh/react-dom@18.2.0/client",
  13. "react-router-dom": "https://esm.sh/react-router-dom@6",
  14. "recharts": "https://esm.sh/recharts@2.12.7",
  15. "react-dom/": "https://aistudiocdn.com/react-dom@^19.2.0/",
  16. "react/": "https://aistudiocdn.com/react@^19.2.0/"
  17. }
  18. }
  19. </script>
  20. <style>
  21. /* Holographic Gleam Effect */
  22. .holographic-gleam::before {
  23. content: '';
  24. position: absolute;
  25. top: -10%;
  26. left: -50%;
  27. width: 200%;
  28. height: 200%;
  29. background: linear-gradient(
  30. 110deg,
  31. rgba(0, 255, 255, 0) 40%,
  32. rgba(0, 255, 255, 0.5) 48%,
  33. rgba(255, 0, 255, 0.5) 52%,
  34. rgba(255, 0, 255, 0) 60%
  35. );
  36. background-size: 200% 100%;
  37. animation: holographic-gleam 3s linear infinite;
  38. transform: rotate(25deg);
  39. z-index: 1;
  40. opacity: 1; /* Always active */
  41. }
  42. @keyframes holographic-gleam {
  43. 0% { background-position: 200% 0; }
  44. 100% { background-position: -200% 0; }
  45. }
  46. @keyframes spin {
  47. from { transform: rotate(0deg); }
  48. to { transform: rotate(360deg); }
  49. }
  50. </style>
  51. <link rel="stylesheet" href="/index.css">
  52. </head>
  53. <body class="bg-slate-100">
  54. <div id="root"></div>
  55. <script type="module" src="/src/index.tsx"></script>
  56. <script type="module" src="/index.tsx"></script>
  57. </body>
  58. </html>