Update src/app/page.tsx

This commit is contained in:
2026-02-18 20:04:40 +00:00
parent ddb5f8d4af
commit 05883133ae

View File

@@ -9,6 +9,7 @@ import TestimonialCardFifteen from '@/components/sections/testimonial/Testimonia
import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import TeamCardOne from '@/components/sections/team/TeamCardOne';
import { Headphones, Monitor, Palette, Rocket, Shield, Smartphone, Sparkles, Star, Tablet, TrendingUp, Users, Zap } from 'lucide-react'; import { Headphones, Monitor, Palette, Rocket, Shield, Smartphone, Sparkles, Star, Tablet, TrendingUp, Users, Zap } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
@@ -32,7 +33,8 @@ export default function LandingPage() {
{ name: "Services", id: "services" }, { name: "Services", id: "services" },
{ name: "Work", id: "work" }, { name: "Work", id: "work" },
{ name: "Testimonials", id: "testimonials" }, { name: "Testimonials", id: "testimonials" },
{ name: "Pricing", id: "pricing" } { name: "Pricing", id: "pricing" },
{ name: "Team", id: "team" }
]} ]}
button={{ text: "Start Project", href: "#contact" }} button={{ text: "Start Project", href: "#contact" }}
/> />
@@ -155,6 +157,25 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="team" data-section="team">
<TeamCardOne
title="Meet Our Team"
description="Get to know the talented people behind our success"
tag="Team"
tagIcon={Users}
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
gridVariant="four-items-2x2-equal-grid"
members={[
{ id: "1", name: "Sophie P.", role: "Digital Nomad", imageSrc: "https://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Portrait of Sophie P." },
{ id: "2", name: "Alex M.", role: "Creative Director", imageSrc: "https://img.b2bpic.net/free-photo/happy-young-professional-posing-office_1262-21170.jpg", imageAlt: "Portrait of Alex M." },
{ id: "3", name: "Jordan K.", role: "Lead Developer", imageSrc: "https://img.b2bpic.net/free-photo/portrait-smiley-business-man_23-2148514859.jpg", imageAlt: "Portrait of Jordan K." },
{ id: "4", name: "Casey R.", role: "UX Designer", imageSrc: "https://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg", imageAlt: "Portrait of Casey R." }
]}
/>
</div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactCenter <ContactCenter
tag="Let's Connect" tag="Let's Connect"
@@ -176,13 +197,14 @@ export default function LandingPage() {
title: "Product", items: [ title: "Product", items: [
{ label: "Services", href: "#services" }, { label: "Services", href: "#services" },
{ label: "Pricing", href: "#pricing" }, { label: "Pricing", href: "#pricing" },
{ label: "Work", href: "#work" } { label: "Work", href: "#work" },
{ label: "Team", href: "#team" }
] ]
}, },
{ {
title: "Company", items: [ title: "Company", items: [
{ label: "About", href: "#" }, { label: "About", href: "#" },
{ label: "Blog", href: "#" }, { label: "Blog", href: "/blog" },
{ label: "Careers", href: "#" } { label: "Careers", href: "#" }
] ]
}, },