5 Commits

Author SHA1 Message Date
e7ed00b50b Merge version_3 into main
Merge version_3 into main
2026-05-12 20:47:36 +00:00
50eea16525 Update src/app/page.tsx 2026-05-12 20:47:30 +00:00
e161cb398d Merge version_2 into main
Merge version_2 into main
2026-05-12 20:44:00 +00:00
6e69d0ee2c Update src/app/page.tsx 2026-05-12 20:43:57 +00:00
7fc74e8e17 Merge version_1 into main
Merge version_1 into main
2026-05-12 20:36:27 +00:00

View File

@@ -6,12 +6,12 @@ import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactText from '@/components/sections/contact/ContactText';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroSplit from '@/components/sections/hero/HeroSplit';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import { Award, Shield, Star } from "lucide-react";
import { Award, Shield, Star, Bot } from "lucide-react";
export default function LandingPage() {
return (
@@ -70,6 +70,13 @@ export default function LandingPage() {
/>
</div>
<div className="fixed bottom-6 right-6 z-50">
<button className="flex items-center gap-2 bg-primary-cta text-primary-cta-text p-4 rounded-full shadow-lg hover:scale-105 transition-transform">
<Bot size={24} />
<span className="hidden md:inline font-semibold">Ask AI Assistant</span>
</button>
</div>
<div id="about" data-section="about">
<AboutMetric
useInvertedBackground={false}
@@ -92,7 +99,7 @@ export default function LandingPage() {
features={[
{ title: "Premium Shingle Systems", description: "High-durability designer shingles designed for aesthetic elegance and longevity.", imageSrc: "http://img.b2bpic.net/free-photo/low-angle-view-modern-building-with-glass-windows-sunlight_181624-11971.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/close-view-electric-car-charging-station_1268-20909.jpg", buttonText: "Discover" },
{ title: "Metal Roof Installations", description: "Modern metal roofing offering sleek lines and industrial-grade protection.", imageSrc: "http://img.b2bpic.net/free-photo/photo-wood-texture-pattern_58702-15608.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/gold-coin-real-brazil-currency-money-icon-sign-symbol-business-financial-exchange-3d-background-illustration_56104-1981.jpg", buttonText: "Discover" },
{ title: "Repair & Preservation", description: "Specialized maintenance and restoration services for historic and high-end properties.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-with-protection-helmet_23-2149343636.jpg", titleImageSrc: "http://img.b2bpic.net/free-psd/3d-golden-circle-home-icon-dark-background_84443-56221.jpg", buttonText: "Discover" }
{ title: "Repair & Preservation", description: "Specialized maintenance and restoration services for historic and high-end properties.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-with-protection-helmet_23-2149343636.jpg", titleImageSrc: "http://img.b2bpsd/3d-golden-circle-home-icon-dark-background_84443-56221.jpg", buttonText: "Discover" }
]}
title="Our Craftsmanship"
description="Comprehensive roofing solutions tailored for distinguished homes."
@@ -160,9 +167,12 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/luxury-home-exterior-dusk_1150-13651.jpg"
logoText="Williams Brothers Roofing"
columns={[
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Careers", href: "#" }] },
{ title: "Services", items: [{ label: "Residential", href: "#" }, { label: "Heritage", href: "#" }] },
{ title: "Connect", items: [{ label: "Instagram", href: "#" }, { label: "Twitter", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] }
]}
@@ -171,4 +181,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}