Spaces:
Running
Running
| <html lang="fa" dir="rtl"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>تغییر صدا با هوش مصنوعی آلفا</title> | |
| <!-- Tailwind CSS --> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: '#667eea', | |
| secondary: '#764ba2', | |
| accent: '#38b2ac', | |
| }, | |
| fontFamily: { | |
| vazir: ['Vazirmatn', 'sans-serif'], | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| <!-- Fonts --> | |
| <link href="https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100;300;400;500;700;900&display=swap" rel="stylesheet"> | |
| <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet"> | |
| <style> | |
| body { | |
| font-family: 'Vazirmatn', sans-serif; | |
| background: #fdfbfb; | |
| background-image: radial-gradient(#e0e0e0 1px, transparent 1px); | |
| background-size: 30px 30px; | |
| } | |
| /* Custom Scrollbar */ | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: #f1f1f1; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: #c7c7c7; | |
| border-radius: 4px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: #a8a8a8; | |
| } | |
| </style> | |
| <script type="importmap"> | |
| { | |
| "imports": { | |
| "react/": "https://aistudiocdn.com/react@^19.2.1/", | |
| "react": "https://aistudiocdn.com/react@^19.2.1", | |
| "react-dom/": "https://aistudiocdn.com/react-dom@^19.2.1/" | |
| } | |
| } | |
| </script> | |
| </head> | |
| <body> | |
| <div id="root"></div> | |
| </body> | |
| </html> |