Skip to content

Commit 1c96878

Browse files
committed
Updated Phone Numbers and SEO
1 parent 2c08abc commit 1c96878

File tree

4 files changed

+161
-4
lines changed

4 files changed

+161
-4
lines changed

index.html

Lines changed: 105 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,31 @@
66
<link rel="icon" type="image/png" href="/src/assets/favicon.png" />
77
<link rel="apple-touch-icon" href="/src/assets/favicon.png" />
88
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
9-
<title>Staycations - Transform Your Backyard</title>
9+
<title>Staycations - Luxury Pool Design & Outdoor Living | DFW Texas</title>
10+
11+
<!-- SEO Meta Tags -->
12+
<meta name="description" content="Transform your backyard into a luxury resort with Staycations. Custom pool design, concrete hardscaping, artificial turf, and outdoor living spaces in the DFW Metroplex. Call (817) 592-1134 for a free quote.">
13+
<meta name="keywords" content="pool design, pool installation, luxury pools, concrete hardscaping, artificial turf, outdoor living, DFW pools, Texas pool builders, backyard transformation, Plano pools, Frisco pools, McKinney pools">
14+
<meta name="author" content="Staycations">
15+
<meta name="robots" content="index, follow">
16+
<meta name="language" content="English">
17+
18+
<!-- Open Graph / Facebook -->
19+
<meta property="og:type" content="website">
20+
<meta property="og:url" content="https://www.staycationstx.com/">
21+
<meta property="og:title" content="Staycations - Luxury Pool Design & Outdoor Living | DFW Texas">
22+
<meta property="og:description" content="Transform your backyard into a luxury resort with custom pools, hardscaping, and outdoor living spaces. Serving the DFW Metroplex.">
23+
<meta property="og:image" content="https://www.staycationstx.com/images/IMG_1271.jpg">
24+
25+
<!-- Twitter -->
26+
<meta property="twitter:card" content="summary_large_image">
27+
<meta property="twitter:url" content="https://www.staycationstx.com/">
28+
<meta property="twitter:title" content="Staycations - Luxury Pool Design & Outdoor Living | DFW Texas">
29+
<meta property="twitter:description" content="Transform your backyard into a luxury resort with custom pools, hardscaping, and outdoor living spaces. Serving the DFW Metroplex.">
30+
<meta property="twitter:image" content="https://www.staycationstx.com/images/IMG_1271.jpg">
31+
32+
<!-- Canonical URL -->
33+
<link rel="canonical" href="https://www.staycationstx.com/">
1034

1135
<!-- Tailwind CSS CDN -->
1236
<script src="https://cdn.tailwindcss.com"></script>
@@ -40,6 +64,86 @@
4064
}
4165
}
4266
</script>
67+
68+
<!-- Structured Data / JSON-LD -->
69+
<script type="application/ld+json">
70+
{
71+
"@context": "https://schema.org",
72+
"@type": "LocalBusiness",
73+
"name": "Staycations",
74+
"description": "Luxury pool design, concrete hardscaping, artificial turf, and outdoor living spaces in the DFW Metroplex",
75+
"url": "https://www.staycationstx.com",
76+
"telephone": "+18175921134",
77+
"email": "service@staycationstx.com",
78+
"address": {
79+
"@type": "PostalAddress",
80+
"addressLocality": "Dallas-Fort Worth",
81+
"addressRegion": "TX",
82+
"addressCountry": "US"
83+
},
84+
"geo": {
85+
"@type": "GeoCoordinates",
86+
"latitude": "32.7767",
87+
"longitude": "-96.7970"
88+
},
89+
"image": "https://www.staycationstx.com/images/logo.png",
90+
"priceRange": "$$$",
91+
"openingHoursSpecification": {
92+
"@type": "OpeningHoursSpecification",
93+
"dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"],
94+
"opens": "08:00",
95+
"closes": "18:00"
96+
},
97+
"sameAs": [],
98+
"serviceArea": {
99+
"@type": "GeoCircle",
100+
"geoMidpoint": {
101+
"@type": "GeoCoordinates",
102+
"latitude": "32.7767",
103+
"longitude": "-96.7970"
104+
},
105+
"geoRadius": "50mi"
106+
},
107+
"hasOfferCatalog": {
108+
"@type": "OfferCatalog",
109+
"name": "Pool and Outdoor Living Services",
110+
"itemListElement": [
111+
{
112+
"@type": "Offer",
113+
"itemOffered": {
114+
"@type": "Service",
115+
"name": "Custom Pool Design",
116+
"description": "Luxury pools tailored to your space and style"
117+
}
118+
},
119+
{
120+
"@type": "Offer",
121+
"itemOffered": {
122+
"@type": "Service",
123+
"name": "Concrete & Hardscaping",
124+
"description": "Beautiful concrete work and outdoor surfaces"
125+
}
126+
},
127+
{
128+
"@type": "Offer",
129+
"itemOffered": {
130+
"@type": "Service",
131+
"name": "Artificial Turf",
132+
"description": "Low-maintenance, year-round green spaces"
133+
}
134+
},
135+
{
136+
"@type": "Offer",
137+
"itemOffered": {
138+
"@type": "Service",
139+
"name": "Outdoor Living",
140+
"description": "Complete backyard transformations"
141+
}
142+
}
143+
]
144+
}
145+
}
146+
</script>
43147
</head>
44148
<body>
45149
<div id="root"></div>

public/robots.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# robots.txt for https://www.staycationstx.com
2+
3+
User-agent: *
4+
Allow: /
5+
6+
# Sitemap location
7+
Sitemap: https://www.staycationstx.com/sitemap.xml
8+
9+
# Crawl delay (optional, helps prevent server overload)
10+
Crawl-delay: 1
11+
12+
# Disallow access to any admin or private areas if they exist
13+
# Disallow: /admin/
14+
# Disallow: /private/

public/sitemap.xml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3+
<url>
4+
<loc>https://www.staycationstx.com/</loc>
5+
<lastmod>2025-01-06</lastmod>
6+
<changefreq>weekly</changefreq>
7+
<priority>1.0</priority>
8+
</url>
9+
<url>
10+
<loc>https://www.staycationstx.com/#services</loc>
11+
<lastmod>2025-01-06</lastmod>
12+
<changefreq>monthly</changefreq>
13+
<priority>0.8</priority>
14+
</url>
15+
<url>
16+
<loc>https://www.staycationstx.com/#gallery</loc>
17+
<lastmod>2025-01-06</lastmod>
18+
<changefreq>weekly</changefreq>
19+
<priority>0.8</priority>
20+
</url>
21+
<url>
22+
<loc>https://www.staycationstx.com/#process</loc>
23+
<lastmod>2025-01-06</lastmod>
24+
<changefreq>monthly</changefreq>
25+
<priority>0.7</priority>
26+
</url>
27+
<url>
28+
<loc>https://www.staycationstx.com/#about</loc>
29+
<lastmod>2025-01-06</lastmod>
30+
<changefreq>monthly</changefreq>
31+
<priority>0.7</priority>
32+
</url>
33+
<url>
34+
<loc>https://www.staycationstx.com/#contact</loc>
35+
<lastmod>2025-01-06</lastmod>
36+
<changefreq>monthly</changefreq>
37+
<priority>0.9</priority>
38+
</url>
39+
</urlset>

src/App.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const StaycationsWebsite = () => {
5757
`Submitted from: Staycations Website`
5858
);
5959

60-
const mailtoLink = `mailto:quotes@staycationpools.com?subject=${subject}&body=${body}`;
60+
const mailtoLink = `mailto:service@staycationstx.com?subject=${subject}&body=${body}`;
6161

6262
// Open email client
6363
window.location.href = mailtoLink;
@@ -741,12 +741,12 @@ const StaycationsWebsite = () => {
741741
<p className="text-gray-300 text-lg">(817) 592-1134</p>
742742
</a>
743743
<a
744-
href="mailto:service@staycationpools.com"
744+
href="mailto:service@staycationstx.com"
745745
className="bg-gray-700/50 backdrop-blur-sm rounded-2xl p-8 hover:bg-gray-600/50 transition-all transform hover:-translate-y-2 block text-center"
746746
>
747747
<Mail className="w-12 h-12 text-blue-400 mx-auto mb-4" />
748748
<h3 className="text-xl font-semibold mb-2">Email Us</h3>
749-
<p className="text-gray-300 text-sm break-all">service@staycationpools.com</p>
749+
<p className="text-gray-300 text-sm break-all">service@staycationstx.com</p>
750750
</a>
751751
<div className="bg-gray-700/50 backdrop-blur-sm rounded-2xl p-8 hover:bg-gray-600/50 transition-all transform hover:-translate-y-2">
752752
<MapPin className="w-12 h-12 text-blue-400 mx-auto mb-4" />

0 commit comments

Comments
 (0)