Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0b75652b5c | |||
| f402160bc1 | |||
| 33612d8ecc | |||
| 8ce1ea698e | |||
| ed33f42b46 |
@@ -11,7 +11,7 @@ import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
|||||||
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
||||||
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
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() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -35,6 +35,7 @@ export default function LandingPage() {
|
|||||||
{ name: "Services", id: "services" },
|
{ name: "Services", id: "services" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "testimonials" },
|
||||||
|
{ name: "Hours", id: "hours" },
|
||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "faq" },
|
||||||
]}
|
]}
|
||||||
button={{ text: "Get Free Quote", href: "contact" }}
|
button={{ text: "Get Free Quote", href: "contact" }}
|
||||||
@@ -236,6 +237,33 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</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">
|
<div id="social-proof" data-section="social-proof">
|
||||||
<SocialProofOne
|
<SocialProofOne
|
||||||
title="Trusted by Local Businesses & Homeowners"
|
title="Trusted by Local Businesses & Homeowners"
|
||||||
@@ -314,6 +342,7 @@ export default function LandingPage() {
|
|||||||
{ label: "Home", href: "#hero" },
|
{ label: "Home", href: "#hero" },
|
||||||
{ label: "Services", href: "#services" },
|
{ label: "Services", href: "#services" },
|
||||||
{ label: "About", href: "#about" },
|
{ label: "About", href: "#about" },
|
||||||
|
{ label: "Hours", href: "#hours" },
|
||||||
{ label: "FAQ", href: "#faq" },
|
{ label: "FAQ", href: "#faq" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user