9 Commits

Author SHA1 Message Date
fca881faae Update src/app/page.tsx 2026-04-09 01:26:16 +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

View File

@@ -4,13 +4,13 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactText from '@/components/sections/contact/ContactText';
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import FooterMedia from '@/components/sections/footer/FooterMedia';
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, ChefHat, Bath, Home as HomeIcon, Footprints, Trees, Hammer } from "lucide-react";
import { Award, Clock, Home, MapPin, Smile } 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"
@@ -58,18 +57,17 @@ export default function LandingPage() {
</div>
<div id="services" data-section="services">
<FeatureCardThree
<FeatureCardTwentyThree
animationType="slide-up"
textboxLayout="split"
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
features={[
{ title: "Kitchen Remodeling", description: "Modern and functional kitchen designs tailored to your cooking needs.", imageSrc: "" },
{ title: "Bathroom Suites", description: "Create a luxurious spa experience within your own home.", imageSrc: "" },
{ title: "Home Extensions", description: "Expand your living space with seamless, high-quality room additions.", imageSrc: "" },
{ title: "Flooring & Tiling", description: "Durable, elegant flooring solutions to ground your living spaces.", imageSrc: "" },
{ title: "Exterior Renovations", description: "Enhance your curb appeal with professional stone and masonry work.", imageSrc: "" },
{ title: "Custom Carpentry", description: "Bespoke cabinetry and detailed woodwork for a unique finish.", imageSrc: "" },
{ id: "f1", title: "Kitchen Remodeling", tags: ["Modern", "Custom"], imageSrc: "http://img.b2bpic.net/free-photo/interior-shot-luxurious-house-dining-room_181624-10412.jpg?_wi=1" },
{ id: "f2", title: "Bathroom Suites", tags: ["Spa", "Elegant"], imageSrc: "http://img.b2bpic.net/free-photo/interior-shot-luxurious-house-dining-room_181624-10412.jpg?_wi=2" },
{ id: "f3", title: "Home Extensions", tags: ["Spacious", "Seamless"], imageSrc: "http://img.b2bpic.net/free-photo/interior-shot-luxurious-house-dining-room_181624-10412.jpg?_wi=3" },
{ id: "f4", title: "Flooring & Tiling", tags: ["Durable", "Classic"], imageSrc: "http://img.b2bpic.net/free-photo/interior-shot-luxurious-house-dining-room_181624-10412.jpg?_wi=4" },
{ id: "f5", title: "Exterior Renovations", tags: ["Curb Appeal", "Stone"], imageSrc: "http://img.b2bpic.net/free-photo/interior-shot-luxurious-house-dining-room_181624-10412.jpg?_wi=5" },
{ id: "f6", title: "Custom Carpentry", tags: ["Bespoke", "Detailed"], imageSrc: "http://img.b2bpic.net/free-photo/interior-shot-luxurious-house-dining-room_181624-10412.jpg?_wi=6" },
]}
title="Our Expertise"
description="Comprehensive renovation solutions designed to enhance the value and beauty of your home."
@@ -81,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: [
@@ -138,7 +136,7 @@ export default function LandingPage() {
<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"
logoText="Gonzalez Renovations"
logoText="Gonzalez Framin and paiting"
columns={[
{ title: "Navigation", items: [
{ label: "Home", href: "#hero" },
@@ -161,4 +159,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}