-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
136 lines (131 loc) · 4.98 KB
/
index.html
File metadata and controls
136 lines (131 loc) · 4.98 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="color-scheme" content="only light">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="EcoFresh Dry Cleaner - Professional eco-friendly dry cleaning services in Charlotte, NC with free pickup and delivery. Serving Charlotte, Mathews, and surrounding areas. Schedule your pickup today!"
/>
<meta
name="keywords"
content="dry cleaning Charlotte NC, eco-friendly dry cleaning, Charlotte dry cleaner, pickup delivery Charlotte, professional cleaning Charlotte, sustainable dry cleaning, Mathews dry cleaning, Mallard Creek dry cleaning, Piedmont Row dry cleaning"
/>
<meta name="author" content="EcoFresh Dry Cleaner" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://ecofreshdrycleaner.com/" />
<meta property="og:title" content="EcoFresh Dry Cleaner - Charlotte, NC Eco-Friendly Dry Cleaning Services" />
<meta
property="og:description"
content="Professional eco-friendly dry cleaning services in Charlotte, NC with free pickup and delivery. Serving Charlotte, Mathews, and surrounding areas. Schedule your pickup today!"
/>
<meta property="og:image" content="/og-image.jpg" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://ecofreshdrycleaner.com/" />
<meta
property="twitter:title"
content="EcoFresh Dry Cleaner - Charlotte, NC Eco-Friendly Dry Cleaning Services"
/>
<meta
property="twitter:description"
content="Professional eco-friendly dry cleaning services in Charlotte, NC with free pickup and delivery. Serving Charlotte, Mathews, and surrounding areas. Schedule your pickup today!"
/>
<meta property="twitter:image" content="/og-image.jpg" />
<title>EcoFresh Dry Cleaner - Charlotte, NC Eco-Friendly Dry Cleaning Services</title>
<!-- Local Business Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "EcoFresh Dry Cleaner",
"description": "Professional eco-friendly dry cleaning services in Charlotte, NC with free pickup and delivery. Serving Charlotte, Mathews, and surrounding areas.",
"url": "https://ecofreshdrycleaner.com",
"telephone": ["(794) 847-5992", "(704) 717-8180", "(704) 554-1788"],
"email": "hello@ecofreshdrycleaner.com",
"address": [
{
"@type": "PostalAddress",
"streetAddress": "1115 A Mathews Mint Hill Rd",
"addressLocality": "Mathews",
"addressRegion": "NC",
"postalCode": "28105",
"addressCountry": "US"
},
{
"@type": "PostalAddress",
"streetAddress": "2712 W Mallard Creek Church Rd",
"addressLocality": "Charlotte",
"addressRegion": "NC",
"postalCode": "28262",
"addressCountry": "US"
},
{
"@type": "PostalAddress",
"streetAddress": "4625 Piedmont Row Dr #145A",
"addressLocality": "Charlotte",
"addressRegion": "NC",
"postalCode": "28210",
"addressCountry": "US"
}
],
"geo": [
{
"@type": "GeoCoordinates",
"latitude": "35.2271",
"longitude": "-80.8431"
}
],
"areaServed": [
{
"@type": "City",
"name": "Charlotte",
"containedInPlace": {
"@type": "State",
"name": "North Carolina"
}
},
{
"@type": "City",
"name": "Mathews",
"containedInPlace": {
"@type": "State",
"name": "North Carolina"
}
}
],
"serviceType": "Dry Cleaning Services",
"priceRange": "$$",
"openingHours": [
"Mo-Fr 07:00-18:00",
"Sa 09:00-15:00"
],
"paymentAccepted": ["Cash", "Credit Card", "Check"],
"currenciesAccepted": "USD",
"foundingDate": "2000",
"slogan": "Eco-Friendly Dry Cleaning Services in Charlotte, NC",
"sameAs": [
"https://ecofreshdrycleaner.com"
]
}
</script>
<!-- Google Maps API -->
<script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCr1r81Y8XAe06d8-2kCsSBW559qaGQc2o&loading=async"
async
defer
></script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>