1 Commits

Author SHA1 Message Date
641f5af198 Update src/app/page.tsx 2026-03-10 12:53:09 +00:00

View File

@@ -8,7 +8,7 @@ import PricingCardOne from "@/components/sections/pricing/PricingCardOne";
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterCard from "@/components/sections/footer/FooterCard";
import { Crown, Home, Sparkles, Shield, Award, CheckCircle, Briefcase, TrendingUp } from "lucide-react";
import { Crown, Home, Sparkles, Mail, Phone, MapPin } from "lucide-react";
export default function LandingPage() {
return (
@@ -187,7 +187,7 @@ export default function LandingPage() {
{ text: "Book Free Consultation", href: "tel:226-224-3573" }
]}
buttonAnimation="slide-up"
background={{ variant: "plain" }}
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
/>
</div>
@@ -195,9 +195,14 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterCard
logoText="OW HomeShield Inc."
copyrightText="© 2025 OW HomeShield Inc. | Licensed • Insured • Professional | Emergency Service Available 24/7"
copyrightText="© 2025 OW HomeShield Inc. | Emergency Service Available 24/7"
socialLinks={[
{ icon: Phone, href: "tel:226-224-3573", ariaLabel: "Call us" },
{ icon: Mail, href: "mailto:info@owhomeshield.com", ariaLabel: "Email us" },
{ icon: MapPin, href: "#", ariaLabel: "Find our location" }
]}
/>
</div>
</ThemeProvider>
);
}
}