Merge version_2 into main #5

Merged
bender merged 1 commits from version_2 into main 2026-03-27 00:06:22 +00:00

View File

@@ -9,7 +9,7 @@ import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import { Award, Building2, CheckCircle, Home, ShieldCheck, Sun, Hammer } from "lucide-react";
import { Award, Building2, CheckCircle, Home, ShieldCheck, Sun, Hammer, Medal } from "lucide-react";
export default function LandingPage() {
return (
@@ -41,8 +41,8 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboardCarousel
title="Built with Precision. Designed to Last."
description="Twin Peaks Contracting LLC delivers high-quality residential construction, remodeling, and structural work with unmatched craftsmanship and attention to detail."
title="Twin Peaks Contracting: Veteran-Owned Excellence"
description="Twin Peaks Contracting LLC delivers high-quality residential construction, remodeling, and structural work. As a veteran-owned business, we bring precision, discipline, and unmatched craftsmanship to every project."
background={{ variant: "plain" }}
buttons={[
{ text: "Get a Free Estimate", href: "#contact" },
@@ -61,13 +61,13 @@ export default function LandingPage() {
<div id="about" data-section="about">
<AboutMetric
title="Craftsmanship You Can Trust"
title="Craftsmanship & Commitment"
useInvertedBackground={true}
metricsAnimation="slide-up"
metrics={[
{ icon: CheckCircle, label: "5-Star Rated", value: "100%" },
{ icon: Award, label: "Years Experience", value: "15+" },
{ icon: Building2, label: "Projects Completed", value: "500+" },
{ icon: Medal, label: "Veteran-Owned", value: "USA" },
{ icon: CheckCircle, label: "Customer Rating", value: "5.0" },
{ icon: Award, label: "Client Reviews", value: "8" },
]}
/>
</div>
@@ -91,7 +91,7 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials">
<TestimonialCardThirteen
title="What Our Clients Say"
description="Real feedback from our satisfied Long Island homeowners."
description="Real feedback from our satisfied clients in the Yorkville area."
showRating={true}
animationType="slide-up"
textboxLayout="split"
@@ -107,10 +107,10 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactCTA
tag="Get Started"
tag="Contact Us"
title="Ready to Start Your Project?"
description="Lets bring your vision to life with expert craftsmanship and a team you can trust."
buttons={[{ text: "Get Your Free Estimate", href: "#" }]}
description="Visit our location at 61 Whitesboro St, Yorkville, NY 13495 or give us a call at (315) 886-2055 to schedule your consultation."
buttons={[{ text: "Call Us Now", href: "tel:3158862055" }]}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
@@ -118,7 +118,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Twin Peaks Contracting"
logoText="Twin Peaks Contracting LLC"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
/>
@@ -126,4 +126,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}