Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1ff98d49bd | |||
| cf3e41353d | |||
| 8f7c71fe98 |
414
src/app/page.tsx
414
src/app/page.tsx
@@ -3,15 +3,15 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||||
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
|
import FeatureBento from '@/components/sections/feature/FeatureBento';
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||||
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||||
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||||
import { Award, CheckCircle, Sparkles } from "lucide-react";
|
import { Award, CheckCircle, Sparkles, Building, Briefcase } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -28,302 +28,122 @@ export default function LandingPage() {
|
|||||||
headingFontWeight="bold"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleFullscreen
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Home", id: "hero" },
|
||||||
name: "Home",
|
{ name: "About", id: "about" },
|
||||||
id: "hero",
|
{ name: "Projects", id: "projects" },
|
||||||
},
|
{ name: "Services", id: "services" },
|
||||||
{
|
{ name: "Contact", id: "contact" },
|
||||||
name: "About",
|
]}
|
||||||
id: "about",
|
brandName="ARCHITECT STUDIO"
|
||||||
},
|
/>
|
||||||
{
|
</div>
|
||||||
name: "Projects",
|
|
||||||
id: "projects",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Services",
|
|
||||||
id: "services",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Contact",
|
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
brandName="ARCHITECT STUDIO"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroLogoBillboard
|
<HeroBillboardScroll
|
||||||
background={{
|
title="Bespoke Architectural Design"
|
||||||
variant: "plain",
|
description="Timeless spatial solutions crafted with materiality and light at the forefront."
|
||||||
}}
|
background={{ variant: "animated-grid" }}
|
||||||
logoText="Bespoke Architectural Solutions"
|
buttons={[{ text: "Explore Portfolio", href: "#projects" }]}
|
||||||
description="Crafting timeless spaces that harmonize function, light, and materiality for the discerning client."
|
imageSrc="http://img.b2bpic.net/free-photo/modern-cliffside-home-with-ocean-view-sunset_23-2152016391.jpg?_wi=1"
|
||||||
buttons={[
|
/>
|
||||||
{
|
</div>
|
||||||
text: "View Portfolio",
|
|
||||||
href: "#projects",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
text: "Book Consultation",
|
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/modern-cliffside-home-with-ocean-view-sunset_23-2152016391.jpg?_wi=1"
|
|
||||||
mediaAnimation="blur-reveal"
|
|
||||||
frameStyle="card"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<MediaAbout
|
<TextSplitAbout
|
||||||
useInvertedBackground={false}
|
title="Architectural Philosophy"
|
||||||
title="Architectural Philosophy"
|
description={[
|
||||||
description="With over 15 years of experience in high-end residential and commercial design, my approach centers on subtle elegance, contextual integrity, and sustainable innovation."
|
"15 years of experience shaping residential and commercial environments.", "We prioritize context-sensitive design and sustainable material choices for lasting value."
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/minimalist-office-interior-design_23-2151826294.jpg?_wi=1"
|
]}
|
||||||
/>
|
useInvertedBackground={false}
|
||||||
</div>
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="projects" data-section="projects">
|
<div id="projects" data-section="projects">
|
||||||
<ProductCardTwo
|
<ProductCardFour
|
||||||
animationType="slide-up"
|
title="Curated Works"
|
||||||
textboxLayout="default"
|
description="An evolution of residential and commercial concepts."
|
||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="one-large-left-three-stacked-right"
|
||||||
useInvertedBackground={false}
|
animationType="slide-up"
|
||||||
products={[
|
textboxLayout="split"
|
||||||
{
|
useInvertedBackground={false}
|
||||||
id: "1",
|
products={[
|
||||||
brand: "Residential",
|
{ id: "1", name: "Pavilion Villa", price: "Custom Residential", variant: "Villa", imageSrc: "http://img.b2bpic.net/free-photo/abstract-building-textures-surface-exterior_74190-7914.jpg" },
|
||||||
name: "The Pavilion Villa",
|
{ id: "2", name: "Minimalist Loft", price: "Interior Design", variant: "Loft", imageSrc: "http://img.b2bpic.net/free-photo/modern-styled-small-entryway_23-2150712863.jpg" },
|
||||||
price: "Renovation",
|
{ id: "3", name: "Eco-Office Hub", price: "Commercial", variant: "Office", imageSrc: "http://img.b2bpic.net/free-photo/neo-brutalism-inspired-building_23-2151004693.jpg" }
|
||||||
rating: 5,
|
]}
|
||||||
reviewCount: "2023",
|
/>
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-building-textures-surface-exterior_74190-7914.jpg",
|
</div>
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2",
|
|
||||||
brand: "Interior",
|
|
||||||
name: "Minimalist Loft",
|
|
||||||
price: "Full Design",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "2022",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-styled-small-entryway_23-2150712863.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3",
|
|
||||||
brand: "Commercial",
|
|
||||||
name: "Eco-Office Hub",
|
|
||||||
price: "Consultation",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "2023",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/neo-brutalism-inspired-building_23-2151004693.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "4",
|
|
||||||
brand: "Residential",
|
|
||||||
name: "Garden Extension",
|
|
||||||
price: "Addition",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "2021",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/brown-black-wooden-bench-near-glass-window_417767-129.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "5",
|
|
||||||
brand: "Office",
|
|
||||||
name: "Creative Studio",
|
|
||||||
price: "Interiors",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "2022",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/conference-room-interior-modern-office-with-white-walls-monitor_181624-22217.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "6",
|
|
||||||
brand: "Residential",
|
|
||||||
name: "Stone Bath Concept",
|
|
||||||
price: "Detailing",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "2024",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-red-geometrical-structure-blue-sky_181624-6493.jpg",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
title="Project Portfolio"
|
|
||||||
description="A selection of completed residential and commercial works."
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="services" data-section="services">
|
<div id="services" data-section="services">
|
||||||
<FeatureCardNineteen
|
<FeatureBento
|
||||||
textboxLayout="split"
|
title="Design Services"
|
||||||
useInvertedBackground={false}
|
description="Providing specialized architectural consulting from conception to project delivery."
|
||||||
features={[
|
textboxLayout="default"
|
||||||
{
|
useInvertedBackground={false}
|
||||||
tag: "01",
|
animationType="slide-up"
|
||||||
title: "Concept Design",
|
features={[
|
||||||
subtitle: "Visualizing potential",
|
{ title: "Concepting", description: "Defining the narrative of space.", bentoComponent: "reveal-icon", icon: Building },
|
||||||
description: "Defining the core concept through mood boards and initial site analysis.",
|
{ title: "Execution", description: "Precision in construction oversight.", bentoComponent: "reveal-icon", icon: Briefcase },
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-modern-white-building-facade_181624-29733.jpg",
|
{ title: "Sustainability", description: "Forward-thinking design efficiency.", bentoComponent: "reveal-icon", icon: Sparkles }
|
||||||
imageAlt: "Vertical shot of a modern white building facade",
|
]}
|
||||||
},
|
/>
|
||||||
{
|
</div>
|
||||||
tag: "02",
|
|
||||||
title: "Planning & Permits",
|
|
||||||
subtitle: "Regulatory navigate",
|
|
||||||
description: "Managing complex regulatory processes to ensure seamless project approval.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-cliffside-home-with-ocean-view-sunset_23-2152016391.jpg?_wi=2",
|
|
||||||
imageAlt: "Vertical shot of a modern white building facade",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
tag: "03",
|
|
||||||
title: "Construction Mgmt",
|
|
||||||
subtitle: "Execution oversight",
|
|
||||||
description: "Ensuring the integrity of your design remains intact through project completion.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/minimalist-office-interior-design_23-2151826294.jpg?_wi=2",
|
|
||||||
imageAlt: "Vertical shot of a modern white building facade",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
title="Design Services"
|
|
||||||
description="Comprehensive architectural services tailored to your project goals."
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardSix
|
<TestimonialCardOne
|
||||||
animationType="slide-up"
|
title="Client Perspectives"
|
||||||
textboxLayout="default"
|
description="Valued feedback from those who trust our architectural vision."
|
||||||
useInvertedBackground={false}
|
animationType="slide-up"
|
||||||
testimonials={[
|
gridVariant="one-large-right-three-stacked-left"
|
||||||
{
|
textboxLayout="default"
|
||||||
id: "1",
|
useInvertedBackground={false}
|
||||||
name: "Eleanor Rigby",
|
testimonials={[
|
||||||
handle: "Villa Owner",
|
{ id: "1", name: "Eleanor R.", role: "Villa Owner", company: "Private", rating: 5 },
|
||||||
testimonial: "Exceptional eye for detail and a truly refreshing philosophy. Our home feels new yet timeless.",
|
{ id: "2", name: "Marcus A.", role: "CEO", company: "Corporate", rating: 5 }
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-father-posing-with-arms-crossed_23-2148414862.jpg",
|
]}
|
||||||
},
|
/>
|
||||||
{
|
</div>
|
||||||
id: "2",
|
|
||||||
name: "Marcus Aurelius",
|
|
||||||
handle: "CEO",
|
|
||||||
testimonial: "The Eco-Office Hub is a testament to professional expertise. Efficient and inspiring space.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-couple-holding-house-plans_23-2148895456.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3",
|
|
||||||
name: "Sarah Jenkins",
|
|
||||||
handle: "Interior Design Studio",
|
|
||||||
testimonial: "Collaborating on interior detailing was seamless. A master of spatial light and texture.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-making-plans-remodel-house_23-2148814633.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "4",
|
|
||||||
name: "Robert Klein",
|
|
||||||
handle: "Real Estate Developer",
|
|
||||||
testimonial: "Consistent, professional, and delivers on project vision every single time. Highly recommended.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/female-realtor-handshaking-couple-congratulate-them-their-new-house_23-2148895484.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "5",
|
|
||||||
name: "Elena Martinez",
|
|
||||||
handle: "Homeowner",
|
|
||||||
testimonial: "The renovation project far exceeded expectations. A dream design realized perfectly.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-young-carpenter-working-with-experienced-man_329181-15650.jpg",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
title="Client Perspectives"
|
|
||||||
description="What our clients say about our creative approach."
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="metrics" data-section="metrics">
|
<div id="metrics" data-section="metrics">
|
||||||
<MetricCardThree
|
<MetricCardOne
|
||||||
animationType="slide-up"
|
title="Milestones"
|
||||||
textboxLayout="default"
|
description="Impact delivered over 15 years of practice."
|
||||||
useInvertedBackground={false}
|
gridVariant="uniform-all-items-equal"
|
||||||
metrics={[
|
animationType="slide-up"
|
||||||
{
|
textboxLayout="split"
|
||||||
id: "m1",
|
useInvertedBackground={false}
|
||||||
icon: Award,
|
metrics={[
|
||||||
title: "Completed Projects",
|
{ id: "1", value: "150+", title: "Projects", description: "Residential and commercial", icon: Building },
|
||||||
value: "150+",
|
{ id: "2", value: "15", title: "Experience", description: "Years of excellence", icon: CheckCircle },
|
||||||
},
|
{ id: "3", value: "24", title: "Awards", description: "Design recognition", icon: Award }
|
||||||
{
|
]}
|
||||||
id: "m2",
|
/>
|
||||||
icon: CheckCircle,
|
</div>
|
||||||
title: "Years Experience",
|
|
||||||
value: "15",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "m3",
|
|
||||||
icon: Sparkles,
|
|
||||||
title: "Design Awards",
|
|
||||||
value: "24",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
title="Project Milestones"
|
|
||||||
description="Measurable design impact through years of dedicated service."
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplit
|
<ContactSplit
|
||||||
useInvertedBackground={false}
|
tag="Inquiries"
|
||||||
background={{
|
title="Start Your Vision"
|
||||||
variant: "plain",
|
description="Schedule a design consultation to explore your project potential."
|
||||||
}}
|
background={{ variant: "plain" }}
|
||||||
tag="Let's Connect"
|
useInvertedBackground={false}
|
||||||
title="Start Your Project"
|
imageSrc="http://img.b2bpic.net/free-photo/asian-manager-using-her-smartphone_482257-120356.jpg"
|
||||||
description="Ready to discuss your vision? Send an inquiry and let's explore the architectural possibilities together."
|
onSubmit={(email) => console.log(email)}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/asian-manager-using-her-smartphone_482257-120356.jpg"
|
/>
|
||||||
mediaAnimation="slide-up"
|
</div>
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterBaseCard
|
||||||
columns={[
|
logoText="ARCHITECT STUDIO"
|
||||||
{
|
columns={[
|
||||||
items: [
|
{ title: "Studio", items: [{ label: "Portfolio", href: "#projects" }, { label: "Process", href: "#services" }] },
|
||||||
{
|
{ title: "Connect", items: [{ label: "Contact", href: "#contact" }] }
|
||||||
label: "Portfolio",
|
]}
|
||||||
href: "#projects",
|
/>
|
||||||
},
|
</div>
|
||||||
{
|
|
||||||
label: "Philosophy",
|
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Services",
|
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Process",
|
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Contact",
|
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Terms",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
logoText="ARCHITECT STUDIO"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user