-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (69 loc) · 2.99 KB
/
Copy pathindex.html
File metadata and controls
79 lines (69 loc) · 2.99 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
75
76
77
78
79
<!doctype html>
<html lang="en">
<head>
<!-- ✅ Meta Basics -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>EyeVisionOptics | Precision. Refinement. Vision Redefined.</title>
<meta
name="description"
content="Curating an unparalleled vision experience through precision and uncompromising refinement. EyeVisionOptics — Pune’s destination for premium eyewear, expert optical care, and sophisticated craftsmanship."
/>
<!-- ✅ Keywords (Keep short & high-value for local SEO) -->
<meta
name="keywords"
content="EyeVisionOptics Pune, premium eyewear, optical store JM Road, contact lenses, eye testing, Varilux lenses"
/>
<!-- ✅ Open Graph / Social -->
<meta property="og:type" content="website" />
<meta property="og:title" content="EyeVisionOptics | Precision. Refinement. Vision Redefined." />
<meta
property="og:description"
content="Experience luxury eyewear and expert vision care at EyeVisionOptics, Pune."
/>
<meta property="og:image" content="/images/eyevisionlogo.png" />
<meta property="og:url" content="https://www.eyevisionoptics.in/" />
<meta property="og:site_name" content="EyeVisionOptics" />
<!-- ✅ Favicon -->
<link rel="icon" type="image/png" href="/images/eyevisionlogo.png" />
<!-- ✅ Fonts -->
<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=DM+Serif+Text:ital@0;1&family=Mona+Sans:wght@300;400;600;700&display=swap"
rel="stylesheet"
/>
<!-- ✅ Theme & PWA -->
<meta name="theme-color" content="#0078FF" />
<link rel="apple-touch-icon" href="/images/eyevisionlogo.png" />
<!-- ✅ Schema (Simplified LocalBusiness Schema) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Optician",
"name": "EyeVisionOptics",
"image": "https://www.eyevisionoptics.in/images/eyevisionlogo.png",
"description": "Premium eyewear and personalized optical care in Pune.",
"address": {
"@type": "PostalAddress",
"streetAddress": "J.M. Road",
"addressLocality": "Pune",
"addressRegion": "MH",
"addressCountry": "IN"
},
"url": "https://www.eyevisionoptics.in",
"sameAs": ["https://www.facebook.com/EyeVisionOptics/"]
}
</script>
<!-- ✅ Performance -->
<link rel="preload" as="video" href="/videos/hero.mp4" type="video/mp4" />
<link rel="preload" as="image" href="/images/eyevisionlogo.png" />
</head>
<body class="antialiased bg-black text-gray-100">
<noscript>
Please enable JavaScript to experience EyeVisionOptics’ full interactive visual experience.
</noscript>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>