Merge version_3 into main #4

Merged
bender merged 2 commits from version_3 into main 2026-03-04 18:53:27 +00:00
2 changed files with 32 additions and 3 deletions

View File

@@ -1419,4 +1419,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -11,7 +11,7 @@ import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import FaqDouble from "@/components/sections/faq/FaqDouble";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import { Shield, Wrench, Award, Hammer, TrendingUp, MessageSquare, Users, HelpCircle, Phone } from "lucide-react";
import { Shield, Wrench, Award, Hammer, TrendingUp, MessageSquare, Users, HelpCircle, Phone, Clock } from "lucide-react";
export default function LandingPage() {
return (
@@ -35,6 +35,7 @@ export default function LandingPage() {
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Hours", id: "hours" },
{ name: "FAQ", id: "faq" },
]}
button={{ text: "Get Free Quote", href: "contact" }}
@@ -236,6 +237,33 @@ export default function LandingPage() {
/>
</div>
<div id="hours" data-section="hours">
<div className="w-full py-16 px-4">
<div className="max-w-4xl mx-auto">
<div className="flex items-center justify-center gap-2 mb-6">
<Clock className="w-6 h-6" />
<h2 className="text-3xl font-bold">Business Hours</h2>
</div>
<div className="bg-card rounded-lg p-8 shadow-lg">
<div className="space-y-4">
<div className="flex justify-between items-center pb-4 border-b border-accent">
<span className="font-semibold">Monday - Friday</span>
<span className="text-foreground">7:00 AM - 5:00 PM</span>
</div>
<div className="flex justify-between items-center pb-4 border-b border-accent">
<span className="font-semibold">Saturday</span>
<span className="text-foreground">Closed</span>
</div>
<div className="flex justify-between items-center">
<span className="font-semibold">Sunday</span>
<span className="text-foreground">Closed</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="social-proof" data-section="social-proof">
<SocialProofOne
title="Trusted by Local Businesses & Homeowners"
@@ -314,6 +342,7 @@ export default function LandingPage() {
{ label: "Home", href: "#hero" },
{ label: "Services", href: "#services" },
{ label: "About", href: "#about" },
{ label: "Hours", href: "#hours" },
{ label: "FAQ", href: "#faq" },
],
},
@@ -347,4 +376,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}