Update src/app/page.tsx

This commit is contained in:
2026-05-11 20:54:13 +00:00
parent ef5dbd57a6
commit 84e2f73f08

View File

@@ -7,7 +7,7 @@ import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
@@ -48,41 +48,15 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroOverlayTestimonial
<HeroBillboard
title="Building the Future of Uganda"
description="Pearl Construction provides world-class infrastructure, commercial, and residential building solutions across the Pearl of Africa."
testimonials={[
{
name: "John K.", handle: "CEO, Kampala Logistics", testimonial: "Exceptional precision and delivery on our warehouse project.", rating: 5,
imageSrc: "https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?q=80&w=400"},
{
name: "Mary A.", handle: "Urban Developer", testimonial: "Pearl Construction understands the local environment like no other.", rating: 5,
imageSrc: "https://images.unsplash.com/photo-1580489944761-15a19d654956?q=80&w=400"},
{
name: "Sam L.", handle: "Director, TechPark", testimonial: "Reliable partner for all our high-tech construction needs.", rating: 5,
imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?q=80&w=400"},
{
name: "Jane D.", handle: "Architect", testimonial: "Their attention to structural detail is truly unmatched.", rating: 5,
imageSrc: "https://images.unsplash.com/photo-1544723795-3fb6469f5b39?q=80&w=400"},
{
name: "Bob T.", handle: "Civil Engineer", testimonial: "A benchmark for quality standards in Uganda.", rating: 5,
imageSrc: "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?q=80&w=400"},
]}
buttons={[
{
text: "Our Projects", href: "#product"},
{
text: "Contact Us", href: "#contact"},
]}
background={{ variant: "sparkles-gradient" }}
imageSrc="https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=1200"
avatars={[
{ src: "https://images.unsplash.com/photo-1531123897727-8f129e1688ce?q=80&w=200", alt: "Team member 1" },
{ src: "https://images.unsplash.com/photo-1522075469751-3a6694fb2f61?q=80&w=200", alt: "Team member 2" },
{ src: "https://images.unsplash.com/photo-1599566150163-29194dcaad36?q=80&w=200", alt: "Team member 3" },
{ src: "https://images.unsplash.com/photo-1580489944761-15a19d654956?q=80&w=200", alt: "Team member 4" },
{ src: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?q=80&w=200", alt: "Team member 5" },
buttons={[
{ text: "Our Projects", href: "#product" },
{ text: "Contact Us", href: "#contact" }
]}
avatarText="Trusted by 500+ professionals"
/>
</div>
@@ -211,4 +185,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}