Spaces:
Paused
Paused
| <html lang="vi"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <link rel="icon" type="image/svg+xml" href="/vite.svg" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>NewsAI - Digital Curator</title> | |
| <script src="https://cdn.tailwindcss.com?plugins=forms,container-queries"></script> | |
| <link href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet"/> | |
| <link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap" rel="stylesheet"/> | |
| <script> | |
| tailwind.config = { | |
| darkMode: "class", | |
| theme: { | |
| extend: { | |
| colors: { | |
| "background": "#f6f7fb", | |
| "on-background": "#0b0b0b", | |
| "surface": "#ffffff", | |
| "outline": "rgba(15, 23, 42, 0.16)", | |
| }, | |
| fontFamily: { | |
| "headline": ["Manrope", "sans-serif"], | |
| "body": ["Inter", "sans-serif"], | |
| "label": ["Inter", "sans-serif"], | |
| }, | |
| borderRadius: { "DEFAULT": "0.25rem", "sm": "0.125rem", "md": "0.375rem", "lg": "0.5rem", "xl": "0.75rem", "2xl": "1rem" }, | |
| }, | |
| }, | |
| } | |
| </script> | |
| </head> | |
| <body> | |
| <div id="root"></div> | |
| <script type="module" src="/src/main.jsx"></script> | |
| </body> | |
| </html> | |