supplier_central_frontend/index.html

45 lines
1.7 KiB
HTML
Raw Permalink Normal View History

<!doctype html>
2026-08-21 05:13:19 +00:00
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>sellercentral</title>
2026-08-21 05:13:19 +00:00
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
2026-08-21 05:13:19 +00:00
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
<script src="https://cdn.tailwindcss.com?plugins=forms,container-queries"></script>
<script>
tailwind = {
config: {
theme: {
extend: {
colors: {
brand: {
maroon: '#671B26',
maroonHover: '#52141e',
footerWine: '#791B2C',
cream: '#fbf9f5',
creamDark: '#f2eee6',
navy: '#1B2667',
border: '#e6e1d8'
}
},
fontFamily: {
sans: ['Inter', 'system-ui', '-apple-system', 'Segoe UI', 'Roboto', 'sans-serif']
}
}
}
}
};
</script>
2026-08-21 05:13:19 +00:00
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>