Merge version_2 into main #4
@@ -6,9 +6,10 @@ import HeroSplit from '@/components/sections/hero/HeroSplit';
|
||||
import TextAbout from '@/components/sections/about/TextAbout';
|
||||
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
|
||||
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
|
||||
import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import { Sparkles, ArrowRight, CheckCircle, TrendingUp, Mail } from 'lucide-react';
|
||||
import { Sparkles, ArrowRight, CheckCircle, TrendingUp, Mail, Users } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -30,6 +31,7 @@ export default function LandingPage() {
|
||||
navItems={[
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Process", id: "features" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "Metrics", id: "metric" }
|
||||
]}
|
||||
button={{ text: "Get Started", href: "contact" }}
|
||||
@@ -126,6 +128,38 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardTwo
|
||||
title="Meet Our Team"
|
||||
description="The talented architects and designers behind our success"
|
||||
tag="Our Team"
|
||||
tagIcon={Users}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
members={[
|
||||
{
|
||||
id: "1", name: "Sarah Johnson", role: "Principal Architect", imageSrc: "http://img.b2bpic.net/free-photo/woman-doing-daily-activities-minimal-decorated-room_23-2150407592.jpg", imageAlt: "Sarah Johnson - Principal Architect"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Michael Chen", role: "Design Director", imageSrc: "http://img.b2bpic.net/free-photo/business-people-looking-plans-office_23-2148017114.jpg", imageAlt: "Michael Chen - Design Director"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Elena Rodriguez", role: "Sustainability Lead", imageSrc: "http://img.b2bpic.net/free-photo/social-media-team-having-discussion-luxury-workplace_23-2147847491.jpg?_wi=1", imageAlt: "Elena Rodriguez - Sustainability Lead"
|
||||
},
|
||||
{
|
||||
id: "4", name: "James Wilson", role: "Technical Architect", imageSrc: "http://img.b2bpic.net/free-photo/woman-doing-daily-activities-minimal-decorated-room_23-2150407592.jpg?_wi=3", imageAlt: "James Wilson - Technical Architect"
|
||||
}
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "View All Team Members", href: "#" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="Stay Connected"
|
||||
@@ -152,6 +186,7 @@ export default function LandingPage() {
|
||||
title: "Studio", items: [
|
||||
{ label: "About Us", href: "about" },
|
||||
{ label: "Our Process", href: "features" },
|
||||
{ label: "Our Team", href: "team" },
|
||||
{ label: "Achievements", href: "metric" }
|
||||
]
|
||||
},
|
||||
@@ -175,4 +210,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user