Compare commits
23 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c575f91792 | |||
| 98631e12f1 | |||
| 4d9b1d1263 | |||
| ac5baed598 | |||
| 38e10194e7 | |||
| b8dc9c9399 | |||
| 873279ce2e | |||
| c89a7413ff | |||
| 162b7c91ef | |||
| 7ee51db0d7 | |||
| 7f43047c3f | |||
| abe1cfa6fd | |||
| 825f9177e3 | |||
| 9854086892 | |||
| de8e5c1f1b | |||
| 9061e99f84 | |||
| 83e72a8edc | |||
| 4e6b2fe6fb | |||
| 8187b973f8 | |||
| ce9e803ba8 | |||
| e1dce3b0fc | |||
| e546990a43 | |||
| 8dc33cbbd8 |
@@ -1,68 +1,33 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import "./styles/variables.css";
|
||||
import "./styles/base.css";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
variable: "--font-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 in Sarasota", description:
|
||||
"Professional pool cage and screen repair services in Sarasota, Lakewood Ranch, and Bradenton. Fast, reliable screen repair and rescreening solutions."};
|
||||
|
||||
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.variable}`}>
|
||||
{children}
|
||||
<script
|
||||
type="text/javascript"
|
||||
id="hs-script-loader"
|
||||
async
|
||||
defer
|
||||
src="//js-na1.hs-scripts.com/23751040.js"
|
||||
></script>
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1430,7 +1395,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
121
src/app/page.tsx
121
src/app/page.tsx
@@ -25,10 +25,10 @@ import {
|
||||
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Service Areas", id: "/service-areas" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Services", id: "#services-overview" },
|
||||
{ name: "Why Us", id: "#why-choose" },
|
||||
{ name: "Service Areas", id: "#service-areas" },
|
||||
{ name: "Contact", id: "#cta-contact" },
|
||||
];
|
||||
|
||||
export default function HomePage() {
|
||||
@@ -50,20 +50,20 @@ export default function HomePage() {
|
||||
brandName="American Screen Hero"
|
||||
navItems={navItems}
|
||||
button={{
|
||||
text: "Get a Free Estimate", href: "/contact"}}
|
||||
text: "Get a Free Estimate", href: "#cta-contact"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardDashboard
|
||||
title="Sarasota's Trusted Pool Cage & Screen Repair Experts"
|
||||
description="Fast, reliable screen repair and pool enclosure rescreening services for homeowners. We handle everything from small repairs to full enclosure projects."
|
||||
title="Pool Cage & Screen Repair Experts in Sarasota"
|
||||
description="Professional pool enclosure and screen repair services. Fast, reliable, and dedicated to restoring your outdoor space."
|
||||
tag="Professional Screen Services"
|
||||
tagIcon={Shield}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{
|
||||
text: "Get a Free Estimate", href: "/contact"},
|
||||
text: "Get a Free Estimate", href: "#cta-contact"},
|
||||
{
|
||||
text: "Call Now: (941) 809-9115", href: "tel:(941)809-9115"},
|
||||
]}
|
||||
@@ -72,11 +72,12 @@ export default function HomePage() {
|
||||
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: [
|
||||
imageSrc:
|
||||
"https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?w=1200&h=600&fit=crop", searchPlaceholder: "What screen service do you need?", buttons: [
|
||||
{
|
||||
text: "View Services", href: "/services"},
|
||||
text: "View Services", href: "#services-overview"},
|
||||
{
|
||||
text: "Get Quote", href: "/contact"},
|
||||
text: "Get Quote", href: "#cta-contact"},
|
||||
],
|
||||
sidebarItems: [
|
||||
{
|
||||
@@ -138,34 +139,66 @@ 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."},
|
||||
"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: "#why-choose"},
|
||||
]}
|
||||
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}
|
||||
@@ -179,7 +212,7 @@ export default function HomePage() {
|
||||
"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: "#cta-contact"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
showBorder={true}
|
||||
@@ -202,19 +235,19 @@ 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>
|
||||
@@ -251,11 +284,11 @@ 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="Ready to get your pool cage or screen repaired? Contact us today for a free estimate. We respond within 24 hours guaranteed."
|
||||
animationType="entrance-slide"
|
||||
buttons={[
|
||||
{
|
||||
text: "Get a Free Estimate", href: "/contact"},
|
||||
text: "Get a Free Estimate", href: "#cta-contact"},
|
||||
{
|
||||
text: "Call (941) 809-9115", href: "tel:(941)809-9115"},
|
||||
]}
|
||||
@@ -273,23 +306,23 @@ export default function HomePage() {
|
||||
{
|
||||
label: "Home", href: "/"},
|
||||
{
|
||||
label: "Services", href: "/services"},
|
||||
label: "Services", href: "#services-overview"},
|
||||
{
|
||||
label: "About Us", href: "/about"},
|
||||
label: "About Us", href: "#why-choose"},
|
||||
{
|
||||
label: "Contact", href: "/contact"},
|
||||
label: "Contact", href: "#cta-contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Pool Cage Repair", href: "/services"},
|
||||
label: "Pool Cage Repair", href: "#services-overview"},
|
||||
{
|
||||
label: "Screen Rescreening", href: "/services"},
|
||||
label: "Screen Rescreening", href: "#services-overview"},
|
||||
{
|
||||
label: "Hurricane Screens", href: "/services"},
|
||||
label: "Hurricane Screens", href: "#services-overview"},
|
||||
{
|
||||
label: "Lanai Repair", href: "/services"},
|
||||
label: "Lanai Repair", href: "#services-overview"},
|
||||
],
|
||||
},
|
||||
{
|
||||
@@ -299,17 +332,17 @@ export default function HomePage() {
|
||||
{
|
||||
label: "Email: ascreenhero@gmail.com", href: "mailto:ascreenhero@gmail.com"},
|
||||
{
|
||||
label: "Free Estimate", href: "/contact"},
|
||||
label: "Free Estimate", href: "#cta-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 +352,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user