13 Commits

Author SHA1 Message Date
b30791cf05 Update src/app/page.tsx 2026-04-09 01:00:23 +00:00
9cc64a25a3 Merge version_15 into main
Merge version_15 into main
2026-04-09 00:46:38 +00:00
8a63ffed6c Update src/app/page.tsx 2026-04-09 00:46:35 +00:00
e04c521287 Merge version_14 into main
Merge version_14 into main
2026-04-09 00:44:59 +00:00
6fa4d67c56 Update src/app/page.tsx 2026-04-09 00:44:56 +00:00
053714d62b Switch to version 11: modified src/app/page.tsx 2026-04-09 00:43:34 +00:00
3776722ac5 Switch to version 12: modified src/app/page.tsx 2026-04-09 00:43:30 +00:00
8c97403841 Merge version_13 into main
Merge version_13 into main
2026-04-09 00:42:59 +00:00
73690b90fc Update src/app/page.tsx 2026-04-09 00:42:56 +00:00
a14769d35a Merge version_12 into main
Merge version_12 into main
2026-04-09 00:40:29 +00:00
bbf88f2695 Update src/app/page.tsx 2026-04-09 00:40:26 +00:00
d7a01f2f65 Merge version_11 into main
Merge version_11 into main
2026-04-09 00:30:18 +00:00
099350ec4e Merge version_11 into main
Merge version_11 into main
2026-04-09 00:29:55 +00:00

View File

@@ -5,12 +5,12 @@ import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactText from '@/components/sections/contact/ContactText';
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import FooterCard from '@/components/sections/footer/FooterCard';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import { Award, Clock, Home, MapPin, Smile } from "lucide-react";
import { Award, Clock, Home, MapPin, Smile, Facebook, Instagram, MessageCircle } from "lucide-react";
export default function LandingPage() {
return (
@@ -46,8 +46,7 @@ export default function LandingPage() {
logoText="Gonzalez Renovations"
description="Premier home renovation specialists serving the greater Austin area. Transforming local houses into high-end dream homes with expert craftsmanship."
buttons={[
{ text: "Start Project", onClick: () => window.location.href = "mailto:Gonzalezrenovationservices@gmail.com" },
{ text: "Our Portfolio", onClick: () => window.location.href = "https://google.com" }
{ text: "Start Project", onClick: () => window.location.href = "mailto:Gonzalezrenovationservices@gmail.com" }
]}
background={{
variant: "gradient-bars"
@@ -80,7 +79,7 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Meet our OWNERS"
title="Meet our FOUNDERS"
description="The driving force behind every successful renovation."
groups={[
{ id: "g1", groupTitle: "Leadership", members: [
@@ -134,30 +133,18 @@ export default function LandingPage() {
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/hands-engineer-working-blueprint-construction-concept-engineering-tools-vintage-tone-retro-filter-effect-soft-focus-selective-focus_1418-480.jpg?id=1238642"
<div id="footer" data-section="footer" className="bg-gray-800 text-white p-12">
<FooterCard
logoText="Gonzalez Renovations"
columns={[
{ title: "Navigation", items: [
{ label: "Home", href: "#hero" },
{ label: "About", href: "#about" },
]},
{ title: "Services", items: [
{ label: "Kitchens", href: "#services" },
{ label: "Baths", href: "#services" },
]},
{ title: "Company", items: [
{ label: "Portfolio", href: "#gallery" },
{ label: "Contact", href: "#contact" },
]},
{ title: "Legal", items: [
{ label: "Privacy", href: "#" },
]},
copyrightText="© 2025 Gonzalez Renovations | All Rights Reserved"
socialLinks={[
{ icon: Facebook, href: "https://facebook.com", ariaLabel: "Facebook" },
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Instagram" },
{ icon: MessageCircle, href: "https://wa.me/", ariaLabel: "WhatsApp" }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}