Files
2fe1ad4e-515f-4622-ae15-2a3…/src/app/roofing/page.tsx

243 lines
8.5 KiB
TypeScript

"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard";
import FeatureCardSix from "@/components/sections/feature/FeatureCardSix";
import ContactText from "@/components/sections/contact/ContactText";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
export default function RoofingPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Services", id: "/roofing" },
{ name: "Our Process", id: "#process" },
{ name: "Reviews", id: "#reviews" },
{ name: "Contact", id: "#contact" },
];
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="compact"
sizing="largeSmall"
background="floatingGradient"
cardStyle="soft-shadow"
primaryButtonStyle="double-inset"
secondaryButtonStyle="layered"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Skytop Construction"
navItems={navItems}
button={{
text: "Get Free Inspection",
href: "#contact",
}}
/>
</div>
<div id="hero" data-section="hero">
<HeroLogoBillboard
logoText="Professional Roof Replacement & Repair"
description="Expert roofing solutions for Massachusetts homeowners. Storm damage specialists with decades of combined expertise."
buttons={[
{
text: "Get Free Inspection",
href: "#contact",
},
{
text: "Back to Home",
href: "/",
},
]}
background={{ variant: "sparkles-gradient" }}
imageSrc="http://img.b2bpic.net/free-photo/carpenter-man-working-roof_23-2148748788.jpg?_wi=2"
imageAlt="Professional roof installation"
frameStyle="card"
mediaAnimation="slide-up"
/>
</div>
<div id="services-detail" data-section="services-detail">
<FeatureCardSix
title="Roofing Services We Offer"
description="From complete roof replacement to emergency repairs, we handle all your roofing needs with premium materials and expert craftsmanship"
tag="Services"
textboxLayout="default"
useInvertedBackground={false}
features={[
{
id: 1,
title: "Full Roof Replacement",
description:
"Complete roof replacement using premium CertainTeed, GAF, and Owens Corning materials. Typically completed in one day with expert installation.",
imageSrc: "http://img.b2bpic.net/free-photo/laborer-building-roof-house_23-2148748844.jpg?_wi=2",
imageAlt: "Roof replacement",
},
{
id: 2,
title: "Roof Repairs & Maintenance",
description:
"Emergency repairs, leak fixes, and preventative maintenance to extend your roof's lifespan and protect your home.",
imageSrc: "http://img.b2bpic.net/free-photo/carpenter-man-working-sideways_23-2148748786.jpg?_wi=2",
imageAlt: "Roof repairs",
},
{
id: 3,
title: "Storm Damage Restoration",
description:
"We specialize in storm damage assessment and work directly with your insurance company to maximize your claim approval.",
imageSrc: "http://img.b2bpic.net/free-photo/image-tired-strong-man-trying-close-his-suitcase-with-clothes-sweating-wiping-forehead-after_1258-314035.jpg?_wi=2",
imageAlt: "Storm damage repair",
},
]}
/>
</div>
<div id="process-detail" data-section="process-detail">
<FeatureCardSix
title="Why Choose Skytop for Roofing"
description="Our commitment to quality, transparency, and customer satisfaction sets us apart as the trusted roofing contractor in Massachusetts"
tag="Why Us"
textboxLayout="default"
useInvertedBackground={false}
features={[
{
id: 1,
title: "Licensed & Insured Professionals",
description:
"All our roofing specialists are fully licensed, insured, and certified with industry-leading certifications.",
imageSrc: "http://img.b2bpic.net/free-photo/worker-with-checklist_1187-1558.jpg?_wi=2",
imageAlt: "Professional credentials",
},
{
id: 2,
title: "Insurance Claim Expertise",
description:
"We handle the entire insurance claim process, from initial assessment to final approval, eliminating stress for you.",
imageSrc: "http://img.b2bpic.net/free-photo/working-with-papers_1098-16148.jpg?_wi=2",
imageAlt: "Insurance handling",
},
{
id: 3,
title: "Premium Materials Only",
description:
"We exclusively use top-tier roofing materials from trusted brands to ensure durability and longevity.",
imageSrc: "http://img.b2bpic.net/free-photo/photo-wall-texture-pattern_58702-14957.jpg?_wi=2",
imageAlt: "Premium materials",
},
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
text="Ready to Protect Your Home? Schedule Your Free Roof Inspection Today"
animationType="entrance-slide"
buttons={[
{
text: "Get Free Inspection",
href: "#contact-form",
},
{
text: "Call: (508) 513-5392",
href: "tel:+15085135392",
},
]}
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Skytop Construction"
columns={[
{
title: "Services",
items: [
{
label: "Roof Replacement",
href: "/roofing",
},
{
label: "Storm Damage Repair",
href: "/roofing",
},
{
label: "Siding Installation",
href: "/roofing",
},
{
label: "Gutters & Drainage",
href: "/roofing",
},
],
},
{
title: "Company",
items: [
{
label: "About Us",
href: "/",
},
{
label: "Our Process",
href: "#process",
},
{
label: "Reviews",
href: "#reviews",
},
{
label: "Certifications",
href: "#social-proof",
},
],
},
{
title: "Contact",
items: [
{
label: "Phone: (508) 513-5392",
href: "tel:+15085135392",
},
{
label: "Email: info@skytopconstructioninc.com",
href: "mailto:info@skytopconstructioninc.com",
},
{
label: "East Bridgewater, MA",
href: "#",
},
],
},
{
title: "Resources",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
{
label: "License Information",
href: "#",
},
],
},
]}
copyrightText="© 2025 Skytop Construction Inc. All rights reserved. Licensed & Insured."
/>
</div>
</ThemeProvider>
);
}