3 Commits

Author SHA1 Message Date
dc12e3a54d Update src/app/page.tsx 2026-03-04 19:07:41 +00:00
cd75ac490a Update src/app/layout.tsx 2026-03-04 19:07:41 +00:00
50c3560f14 Merge version_2 into main
Merge version_2 into main
2026-03-04 19:04:37 +00:00
2 changed files with 3 additions and 82 deletions

View File

@@ -1412,4 +1412,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -1,14 +1,11 @@
"use client";
import { Building2, CheckCircle, Hammer, Home, Shield, Wrench, Zap, Phone } from "lucide-react";
import { Building2, CheckCircle, Hammer, Home, Shield, Wrench, Zap } from "lucide-react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia";
import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow";
import ProductCardFour from "@/components/sections/product/ProductCardFour";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
import FaqBase from "@/components/sections/faq/FaqBase";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
@@ -32,7 +29,6 @@ export default function LandingPage() {
brandName="Avila Construction"
navItems={[
{ name: "Services", id: "services" },
{ name: "Portfolio", id: "portfolio" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
]}
@@ -58,7 +54,6 @@ export default function LandingPage() {
]}
buttons={[
{ text: "Get a Free Quote", href: "#contact" },
{ text: "View Our Work", href: "#portfolio" },
]}
mediaAnimation="slide-up"
/>
@@ -101,29 +96,6 @@ export default function LandingPage() {
/>
</div>
<div id="portfolio" data-section="portfolio">
<ProductCardFour
title="Featured Projects"
description="Explore a selection of our most successful projects showcasing our commitment to quality, innovation, and client satisfaction."
tag="Portfolio"
products={[
{
id: "1", name: "Riverside Luxury Homes", price: "$2.5M", variant: "Residential Development • 45 Units", imageSrc: "http://img.b2bpic.net/free-photo/house-construction-petrovac-montenegro_1268-14788.jpg", imageAlt: "completed construction modern building commercial property finished project"
},
{
id: "2", name: "Downtown Commerce Plaza", price: "$5.8M", variant: "Commercial Office • 85,000 sq ft", imageSrc: "http://img.b2bpic.net/free-photo/group-four-people-standing-construction-site_259150-60525.jpg", imageAlt: "residential development home community construction completed new homes"
},
{
id: "3", name: "Historic Manor Restoration", price: "$850K", variant: "Renovation Project • 12,000 sq ft", imageSrc: "http://img.b2bpic.net/free-photo/workers-talking-phone-doing-paperwork_23-2147668775.jpg", imageAlt: "renovation project modern interior remodeled space home renovation"
}
]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="about" data-section="about">
<InlineImageSplitTextAbout
heading={[
@@ -139,57 +111,6 @@ export default function LandingPage() {
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardEleven
title="Our Track Record"
description="Proven results and measurable success across hundreds of completed projects nationwide."
metrics={[
{
id: "1", value: "850+", title: "Projects Completed", description: "Successfully delivered across residential and commercial sectors", imageSrc: "http://img.b2bpic.net/free-photo/inspectors-interacting_1098-14279.jpg?_wi=1", imageAlt: "construction team professional workers building team construction crew"
},
{
id: "2", value: "98%", title: "Client Satisfaction", description: "Consistent quality and reliability across all our projects", imageSrc: "http://img.b2bpic.net/free-photo/inspectors-interacting_1098-14279.jpg?_wi=2", imageAlt: "construction team professional workers building team construction crew"
}
]}
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSixteen
title="What Our Clients Say"
description="Hear directly from property owners and business leaders who have experienced our service excellence firsthand."
testimonials={[
{
id: "1", name: "Sarah Mitchell", role: "Homeowner", company: "Riverside Community", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/closeup-senior-businessman-with-arms-crossed_1262-1751.jpg", imageAlt: "professional portrait business person company executive business portrait"
},
{
id: "2", name: "James Rodriguez", role: "Business Owner", company: "Commerce Plaza Retail", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", imageAlt: "business portrait professional headshot company manager business professional"
},
{
id: "3", name: "Elizabeth Chen", role: "Property Manager", company: "Historic Properties Inc", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businessman-posing-outside_74855-1183.jpg", imageAlt: "professional photo business person executive portrait company representative"
},
{
id: "4", name: "Michael Torres", role: "Developer", company: "Urban Development Co", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2", imageAlt: "business headshot professional portrait company person executive photo"
}
]}
kpiItems={[
{ value: "25+", label: "Years in Business" },
{ value: "500+", label: "Happy Clients" },
{ value: "99%", label: "On-Time Delivery" }
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="faq" data-section="faq">
<FaqBase
title="Frequently Asked Questions"
@@ -243,4 +164,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}