11 Commits

Author SHA1 Message Date
f1ad020f79 Update src/app/page.tsx 2026-04-09 00:07:27 +00:00
70b8ed2d5b Merge version_5 into main
Merge version_5 into main
2026-04-09 00:05:08 +00:00
d72d5b7f97 Update src/app/page.tsx 2026-04-09 00:05:02 +00:00
118364bfd1 Merge version_4 into main
Merge version_4 into main
2026-04-08 23:52:41 +00:00
a360666c7e Update src/app/page.tsx 2026-04-08 23:52:35 +00:00
d6a0409cda Merge version_4 into main
Merge version_4 into main
2026-04-08 23:52:06 +00:00
35404a4415 Update src/app/page.tsx 2026-04-08 23:52:00 +00:00
d8f6df9585 Switch to version 3: modified src/app/page.tsx 2026-04-08 23:12:57 +00:00
a9a28beb4e Switch to version 2: modified src/app/page.tsx 2026-04-08 23:12:52 +00:00
da3edfb7dc Merge version_3 into main
Merge version_3 into main
2026-04-08 23:12:52 +00:00
473b5e169b Merge version_3 into main
Merge version_3 into main
2026-04-08 23:11:11 +00:00

View File

@@ -9,7 +9,8 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TeamCardFive from '@/components/sections/team/TeamCardFive';
import { Award, Clock, Home, MapPin, ShieldCheck, Smile } from "lucide-react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import { Award, Clock, Home, MapPin, Smile } from "lucide-react";
export default function LandingPage() {
return (
@@ -39,6 +40,8 @@ export default function LandingPage() {
name: "Projects", id: "gallery"},
{
name: "Contact", id: "contact"},
{
name: "Estimate", id: "estimate"},
]}
brandName=""
/>
@@ -47,7 +50,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroLogoBillboard
logoText="Gonzalez Renovations"
description="Expert home renovations tailored to your vision. Crafting legacy through precision and passion."
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", href: "#contact" },
{ text: "Our Portfolio", href: "#gallery" }
@@ -143,6 +146,16 @@ export default function LandingPage() {
/>
</div>
<div id="estimate" data-section="estimate">
<ContactCenter
tag="Get Started"
title="Request An Estimate"
description="Provide your details below to begin your renovation journey with us. We serve all major areas in the greater Austin metro region."
background={{ variant: "gradient-bars" }}
useInvertedBackground={false}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
@@ -163,32 +176,25 @@ export default function LandingPage() {
columns={[
{
title: "Navigation", items: [
{
label: "Home", href: "#hero"},
{
label: "About", href: "#about"},
{ label: "Home", href: "#hero" },
{ label: "About", href: "#about" },
],
},
{
title: "Services", items: [
{
label: "Kitchens", href: "#services"},
{
label: "Baths", href: "#services"},
{ label: "Kitchens", href: "#services" },
{ label: "Baths", href: "#services" },
],
},
{
title: "Company", items: [
{
label: "Portfolio", href: "#gallery"},
{
label: "Contact", href: "#contact"},
{ label: "Portfolio", href: "#gallery" },
{ label: "Contact", href: "#contact" },
],
},
{
title: "Legal", items: [
{
label: "Privacy", href: "#"},
{ label: "Privacy", href: "#" },
],
},
]}