31 Commits

Author SHA1 Message Date
1301edc6e7 Switch to version 6: modified src/app/page.tsx 2026-03-10 04:04:59 +00:00
f891ba3622 Switch to version 6: modified src/app/layout.tsx 2026-03-10 04:04:58 +00:00
c2eca91979 Switch to version 5: modified src/app/page.tsx 2026-03-10 04:04:51 +00:00
dd94171a63 Switch to version 5: modified src/app/layout.tsx 2026-03-10 04:04:50 +00:00
5f4f587ef3 Switch to version 6: modified src/app/page.tsx 2026-03-10 04:04:42 +00:00
8e46e42111 Switch to version 6: modified src/app/layout.tsx 2026-03-10 04:04:41 +00:00
4a79fc0ac0 Merge version_7 into main
Merge version_7 into main
2026-03-10 04:01:30 +00:00
c575f91792 Update src/app/layout.tsx 2026-03-10 04:01:26 +00:00
af6634c631 Merge version_7 into main
Merge version_7 into main
2026-03-10 04:00:47 +00:00
98631e12f1 Update src/app/page.tsx 2026-03-10 04:00:43 +00:00
4d9b1d1263 Update src/app/layout.tsx 2026-03-10 04:00:43 +00:00
ac5baed598 Merge version_6 into main
Merge version_6 into main
2026-03-10 03:40:19 +00:00
38e10194e7 Update src/app/page.tsx 2026-03-10 03:40:14 +00:00
b8dc9c9399 Merge version_6 into main
Merge version_6 into main
2026-03-10 03:39:05 +00:00
873279ce2e Update src/app/page.tsx 2026-03-10 03:39:01 +00:00
c89a7413ff Merge version_6 into main
Merge version_6 into main
2026-03-10 03:37:52 +00:00
162b7c91ef Update src/app/page.tsx 2026-03-10 03:37:48 +00:00
7ee51db0d7 Update src/app/layout.tsx 2026-03-10 03:37:48 +00:00
7f43047c3f Merge version_5 into main
Merge version_5 into main
2026-03-10 03:35:15 +00:00
abe1cfa6fd Update src/app/page.tsx 2026-03-10 03:35:11 +00:00
825f9177e3 Merge version_3 into main
Merge version_3 into main
2026-03-09 21:21:50 +00:00
9854086892 Update theme colors 2026-03-09 21:21:44 +00:00
de8e5c1f1b Merge version_3 into main
Merge version_3 into main
2026-03-09 20:58:57 +00:00
9061e99f84 Update src/app/page.tsx 2026-03-09 20:58:52 +00:00
83e72a8edc Merge version_3 into main
Merge version_3 into main
2026-03-09 20:24:41 +00:00
4e6b2fe6fb Update src/app/page.tsx 2026-03-09 20:24:37 +00:00
8187b973f8 Update src/app/layout.tsx 2026-03-09 20:24:37 +00:00
ce9e803ba8 Merge version_2 into main
Merge version_2 into main
2026-03-09 20:11:18 +00:00
e1dce3b0fc Update src/app/page.tsx 2026-03-09 20:11:14 +00:00
e546990a43 Update src/app/layout.tsx 2026-03-09 20:11:14 +00:00
8dc33cbbd8 Merge version_1 into main
Merge version_1 into main
2026-03-09 20:04:24 +00:00
3 changed files with 162 additions and 119 deletions

View File

@@ -1,68 +1,40 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "./styles/variables.css";
import "./styles/base.css";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Pool Screen Repair Sarasota | American Screen Hero",
description: "Professional pool cage, screen repair & rescreening services in Sarasota, Lakewood Ranch, and Bradenton, Florida. Free estimates. Call (941) 809-9115 today.",
keywords: "pool cage repair Sarasota, pool cage rescreening Sarasota, lanai screen repair, screen repair Bradenton, screen repair Lakewood Ranch, pool enclosure repair, screen rescreening Florida, pool screen installation",
metadataBase: new URL("https://americanscreenhero.com"),
alternates: {
canonical: "https://americanscreenhero.com",
},
openGraph: {
title: "Sarasota's Trusted Pool Screen Repair Experts | American Screen Hero",
description: "Fast, reliable screen repair and pool enclosure rescreening. Free estimates. Serving Sarasota, Lakewood Ranch, and Bradenton.",
url: "https://americanscreenhero.com",
siteName: "American Screen Hero",
type: "website",
images: [
{
url: "https://americanscreenhero.com/og-hero.jpg",
alt: "Professional pool screen repair service",
},
],
},
twitter: {
card: "summary_large_image",
title: "Pool Screen Repair Sarasota | American Screen Hero",
description: "Expert screen repair and pool enclosure rescreening. Get your free estimate today.",
images: ["https://americanscreenhero.com/twitter-hero.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "American Screen Hero - Pool Cage & Screen Repair Sarasota", description: "Professional pool cage and screen repair services in Sarasota, Lakewood Ranch, and Bradenton. Fast, reliable rescreening and repairs."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<body className={inter.className}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
(function() {
try {
const vw = window.innerWidth * 0.01;
document.documentElement.style.setProperty('--vw', vw + 'px');
window.addEventListener('resize', () => {
const vw = window.innerWidth * 0.01;
document.documentElement.style.setProperty('--vw', vw + 'px');
});
} catch (e) {}
})();
`,
}}
/>
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1430,7 +1402,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -50,7 +50,8 @@ export default function HomePage() {
brandName="American Screen Hero"
navItems={navItems}
button={{
text: "Get a Free Estimate", href: "/contact"}}
text: "Get a Free Estimate", href: "/contact"
}}
/>
</div>
@@ -63,20 +64,25 @@ export default function HomePage() {
tagAnimation="slide-up"
buttons={[
{
text: "Get a Free Estimate", href: "/contact"},
text: "Get a Free Estimate", href: "/contact"
},
{
text: "Call Now: (941) 809-9115", href: "tel:(941)809-9115"},
text: "Call Now: (941) 809-9115", href: "tel:(941)809-9115"
},
]}
buttonAnimation="slide-up"
background={{
variant: "radial-gradient"}}
variant: "radial-gradient"
}}
dashboard={{
title: "Complete Screen Solutions", logoIcon: Zap,
imageSrc: "http://img.b2bpic.net/free-photo/man-servant-washing-windows_23-2149530810.jpg", searchPlaceholder: "What screen service do you need?", buttons: [
{
text: "View Services", href: "/services"},
text: "View Services", href: "/services"
},
{
text: "Get Quote", href: "/contact"},
text: "Get Quote", href: "/contact"
},
],
sidebarItems: [
{
@@ -93,13 +99,16 @@ export default function HomePage() {
stats: [
{
title: "Years Experience", values: [15, 18, 20],
description: "Serving the Sarasota area"},
description: "Serving the Sarasota area"
},
{
title: "Projects Completed", values: [1200, 1500, 1850],
description: "Happy homeowners"},
description: "Happy homeowners"
},
{
title: "Service Areas", values: [3, 5, 7],
description: "Greater Sarasota region"},
description: "Greater Sarasota region"
},
],
chartTitle: "Customer Satisfaction", chartData: [
{
@@ -121,13 +130,16 @@ export default function HomePage() {
listTitle: "Featured Services", listItems: [
{
icon: CheckCircle,
title: "Pool Cage Rescreening", status: "Most Popular"},
title: "Pool Cage Rescreening", status: "Most Popular"
},
{
icon: CheckCircle,
title: "Screen Door Repair", status: "Quick Service"},
title: "Screen Door Repair", status: "Quick Service"
},
{
icon: CheckCircle,
title: "Hurricane Screen Installation", status: "Protection"},
title: "Hurricane Screen Installation", status: "Protection"
},
],
}}
/>
@@ -138,34 +150,67 @@ export default function HomePage() {
features={[
{
icon: DropletIcon,
title: "Pool Cage Repair", description:
"Expert repair of pool cage screens and enclosures. We handle damage assessment, panel replacement, and structural repairs."},
title: "Pool Cage Screen Repair", description: "Expert repair of damaged pool cage screens. We assess damage, replace panels, and ensure proper sealing for complete protection."
},
{
icon: RefreshCw,
title: "Pool Cage Rescreening", description:
"Complete rescreening of pool enclosures with high-quality mesh. Restore your pool protection and enjoy outdoor living."},
title: "Pool Cage Rescreening", description: "Complete rescreening of pool enclosures with premium mesh material. Restore function and appearance to your outdoor space."
},
{
icon: Home,
title: "Lanai Screen Repair", description:
"Professional lanai screen repair and maintenance. Keep your outdoor living space protected from insects and weather."},
{
icon: Wind,
title: "Hurricane Screen Replacement", description:
"Install protective hurricane screens for storm season. Reinforce your home's defense against severe weather."},
title: "Lanai and Patio Screen Repair", description: "Professional repair and maintenance of lanai and patio screens. Keep your outdoor living areas protected from insects and elements."
},
{
icon: DoorOpen,
title: "Screen Door Repair", description:
"Fast repair and replacement of screen doors. Smooth operation and secure seals guaranteed."},
title: "Screen Door Repair and Replacement", description: "Fast and reliable screen door repairs and full replacements. Smooth operation and secure seals guaranteed."
},
{
icon: Wind,
title: "Hurricane Screen Installation", description: "Install protective hurricane screens for storm season. Reinforce your home's defense against severe weather and strong winds."
},
{
icon: Zap,
title: "Screen Maintenance", description:
"Regular maintenance and minor repairs to keep your screens in perfect condition year-round."},
title: "Screen Panel Replacement", description: "Individual screen panel replacement for pools, lanais, and patios. Get the exact panels you need without full rescreening."
},
]}
title="Our Screen Repair Services"
title="Professional Screen Repair Services in Sarasota"
description="Comprehensive screen and pool enclosure solutions for homeowners throughout Sarasota, Lakewood Ranch, and Bradenton."
tag="What We Offer"
tagIcon={Wrench}
tagAnimation="slide-up"
buttons={[
{
text: "Learn More", href: "#trust-section"
}
]}
buttonAnimation="slide-up"
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="trust-section" data-section="trust-section">
<FeatureBorderGlow
features={[
{
icon: CheckCircle,
title: "Fast and Reliable Service", description: "We respond quickly to your service requests and complete repairs efficiently without compromising quality or attention to detail."
},
{
icon: Shield,
title: "Quality Screen Repairs", description: "We use premium materials and proven techniques. Every repair is backed by our commitment to excellence and customer satisfaction."
},
{
icon: Star,
title: "Free Estimates", description: "Get a clear, no-obligation estimate for your screen repair project. We assess your needs and provide honest pricing upfront."
},
]}
title="Why Trust American Screen Hero?"
description="We stand behind every job we do."
tag="Our Promise"
tagIcon={Shield}
tagAnimation="slide-up"
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
@@ -176,10 +221,12 @@ export default function HomePage() {
<TextSplitAbout
title="Why Choose American Screen Hero?"
description={[
"We are dedicated to providing the highest quality screen repair and pool enclosure services in Sarasota and surrounding areas. Our team brings years of experience, professional craftsmanship, and genuine commitment to customer satisfaction.", "Every project receives our full attention. We use premium materials, proven techniques, and meticulous attention to detail. From emergency repairs to complete enclosure rescreening, we handle your home with the care it deserves.", "Your satisfaction is our priority. We arrive on time, work efficiently, and stand behind every job. Experience the American Screen Hero difference today."]}
"We are dedicated to providing the highest quality screen repair and pool enclosure services in Sarasota and surrounding areas. Our team brings years of experience, professional craftsmanship, and genuine commitment to customer satisfaction.", "Every project receives our full attention. We use premium materials, proven techniques, and meticulous attention to detail. From emergency repairs to complete enclosure rescreening, we handle your home with the care it deserves.", "Your satisfaction is our priority. We arrive on time, work efficiently, and stand behind every job. Experience the American Screen Hero difference today."
]}
buttons={[
{
text: "Get a Free Estimate", href: "/contact"},
text: "Get a Free Estimate", href: "/contact"
},
]}
buttonAnimation="slide-up"
showBorder={true}
@@ -202,19 +249,23 @@ export default function HomePage() {
{
id: "1", name: "Margaret S.", role: "Homeowner", company: "Sarasota", rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/photo-serious-mixed-race-partners-discuss-financial-data_273609-44254.jpg", imageAlt: "satisfied homeowner portrait happy client"},
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiruCR7xtXa8HIbr52voHdY3BQ/uploaded-1773089720919-hem8b6pv.png", imageAlt: "satisfied homeowner portrait happy client"
},
{
id: "2", name: "Robert T.", role: "Pool Owner", company: "Lakewood Ranch", rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/young-smiling-woman-bikini-swimming-pool_23-2148138682.jpg", imageAlt: "pool owner satisfied customer portrait"},
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiruCR7xtXa8HIbr52voHdY3BQ/uploaded-1773089720920-fo18wc4b.png", imageAlt: "pool owner satisfied customer portrait"
},
{
id: "3", name: "Patricia M.", role: "Senior Homeowner", company: "Bradenton", rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/medium-shot-women-reading-cellphone-messages_23-2150273387.jpg", imageAlt: "elderly homeowner satisfied review"},
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiruCR7xtXa8HIbr52voHdY3BQ/uploaded-1773089720919-8mmoxn7n.png", imageAlt: "elderly homeowner satisfied review"
},
{
id: "4", name: "James & Linda K.", role: "Family Homeowners", company: "Sarasota", rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/business-person-planning-alternative-energies_23-2149205472.jpg", imageAlt: "florida family homeowner portrait"},
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiruCR7xtXa8HIbr52voHdY3BQ/uploaded-1773089720920-zs7bl4ob.png", imageAlt: "florida family homeowner portrait"
},
]}
/>
</div>
@@ -225,18 +276,22 @@ export default function HomePage() {
{
icon: MapPin,
title: "Sarasota", description:
"Full service coverage throughout Sarasota, including downtown, coastal neighborhoods, and surrounding areas."},
"Full service coverage throughout Sarasota, including downtown, coastal neighborhoods, and surrounding areas."
},
{
icon: MapPin,
title: "Lakewood Ranch", description:
"Serving all of Lakewood Ranch. Fast response times and same-day estimates for pool enclosure repairs."},
"Serving all of Lakewood Ranch. Fast response times and same-day estimates for pool enclosure repairs."
},
{
icon: MapPin,
title: "Bradenton", description:
"Professional screen repair service in Bradenton. We handle residential and pool enclosure projects."},
"Professional screen repair service in Bradenton. We handle residential and pool enclosure projects."
},
{
icon: MapPin,
title: "Surrounding Areas", description: "Extended service to nearby communities. Call for availability in your area."},
title: "Surrounding Areas", description: "Extended service to nearby communities. Call for availability in your area."
},
]}
title="Service Areas We Serve"
description="Fast service to homeowners throughout Sarasota and surrounding communities. Same-day quotes available."
@@ -251,16 +306,19 @@ export default function HomePage() {
<div id="cta-contact" data-section="cta-contact">
<ContactText
text="Ready for professional screen repair service? Contact American Screen Hero today for your free estimate."
text="Storm season approaching? Get your free estimate today! Respond within 24 hours guaranteed."
animationType="entrance-slide"
buttons={[
{
text: "Get a Free Estimate", href: "/contact"},
text: "Get a Free Estimate", href: "/contact"
},
{
text: "Call (941) 809-9115", href: "tel:(941)809-9115"},
text: "Call (941) 809-9115", href: "tel:(941)809-9115"
},
]}
background={{
variant: "radial-gradient"}}
variant: "radial-gradient"
}}
useInvertedBackground={false}
/>
</div>
@@ -271,45 +329,59 @@ export default function HomePage() {
{
title: "Company", items: [
{
label: "Home", href: "/"},
label: "Home", href: "/"
},
{
label: "Services", href: "/services"},
label: "Services", href: "/services"
},
{
label: "About Us", href: "/about"},
label: "About Us", href: "/about"
},
{
label: "Contact", href: "/contact"},
label: "Contact", href: "/contact"
},
],
},
{
title: "Services", items: [
{
label: "Pool Cage Repair", href: "/services"},
label: "Pool Cage Repair", href: "/services"
},
{
label: "Screen Rescreening", href: "/services"},
label: "Screen Rescreening", href: "/services"
},
{
label: "Hurricane Screens", href: "/services"},
label: "Hurricane Screens", href: "/services"
},
{
label: "Lanai Repair", href: "/services"},
label: "Lanai Repair", href: "/services"
},
],
},
{
title: "Contact", items: [
{
label: "Call: (941) 809-9115", href: "tel:(941)809-9115"},
label: "Call: (941) 809-9115", href: "tel:(941)809-9115"
},
{
label: "Email: ascreenhero@gmail.com", href: "mailto:ascreenhero@gmail.com"},
label: "Email: ascreenhero@gmail.com", href: "mailto:ascreenhero@gmail.com"
},
{
label: "Free Estimate", href: "/contact"},
label: "Free Estimate", href: "/contact"
},
],
},
{
title: "Service Areas", items: [
{
label: "Sarasota", href: "/service-areas"},
label: "Sarasota", href: "/service-areas"
},
{
label: "Lakewood Ranch", href: "/service-areas"},
label: "Lakewood Ranch", href: "/service-areas"
},
{
label: "Bradenton", href: "/service-areas"},
label: "Bradenton", href: "/service-areas"
},
],
},
]}
@@ -319,4 +391,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #fbfaff;
--card: #f7f5ff;
--foreground: #0f0022;
--primary-cta: #0b4da8;
--primary-cta-text: #fbfaff;
--background: #f5faff;
--card: #f1f8ff;
--foreground: #001122;
--primary-cta: #15479c;
--primary-cta-text: #f5faff;
--secondary-cta: #ffffff;
--secondary-cta-text: #0f0022;
--accent: #d8cef5;
--background-accent: #c4a8f9;
--secondary-cta-text: #001122;
--accent: #a8cce8;
--background-accent: #7ba3cf;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);