-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (63 loc) · 2.19 KB
/
index.html
File metadata and controls
74 lines (63 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description"
content="To-Eat is a modern food brand offering convenient, high-quality meals crafted for great taste, freshness, and everyday lifestyles." />
<meta name="keywords" content="To-Eat, food brand, ready meals, convenient food, quality meals" />
<link rel="icon" href="/favicon.png" sizes="any" />
<!-- ========================= -->
<!-- OPEN GRAPH / SOCIAL MEDIA -->
<!-- ========================= -->
<meta property="og:title" content="To-Eat – Modern & Convenient Meals" />
<meta property="og:description"
content="Discover To-Eat, a modern food brand delivering high-quality meals designed for taste, freshness, and convenience." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.toeat.site/" />
<meta property="og:image" content="/assets/logo.png" />
<meta property="og:site_name" content="To-Eat" />
<!-- ========================= -->
<!-- STRUCTURED DATA / BRAND -->
<!-- ========================= -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "To-Eat",
"url": "https://www.toeat.site",
"logo": "https://www.toeat.site/logo.png",
"description": "To-Eat is a food brand focused on modern, convenient, and high-quality meals."
}
</script>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
brand: {
50: '#fff5f0',
100: '#ffe8dd',
500: '#ff6b35',
600: '#e85a2a',
900: '#1a1a2e',
}
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
serif: ['Playfair Display', 'serif'],
}
}
}
}
</script>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap"
rel="stylesheet">
</head>
<body>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>