1 Commits

Author SHA1 Message Date
6b85155bd3 Update src/app/page.tsx 2026-03-25 14:50:31 +00:00

View File

@@ -34,8 +34,7 @@ export default function ArchitectureStudioPage() {
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ button={{
text: "Inquire", text: "Inquire", href: "contact"
href: "contact"
}} }}
className="text-xs tracking-widest uppercase" className="text-xs tracking-widest uppercase"
navItemClassName="text-sm font-light tracking-wide" navItemClassName="text-sm font-light tracking-wide"
@@ -47,7 +46,7 @@ export default function ArchitectureStudioPage() {
<HeroSplit <HeroSplit
background={{ variant: "plain" }} background={{ variant: "plain" }}
title="Timeless Architecture" title="Timeless Architecture"
description="We craft spaces that transcend trend, marrying restraint with precision. Each project is a dialogue between site, material, and intention." description="Experience living in spaces designed for tranquility and lasting beauty, where intentional design transforms your vision into a timeless environment."
imagePosition="right" imagePosition="right"
imageSrc="https://img.b2bpic.net/free-photo/minimalist-architectural-building-details_23-2151870844.jpg" imageSrc="https://img.b2bpic.net/free-photo/minimalist-architectural-building-details_23-2151870844.jpg"
imageAlt="modern building architecture minimalist interior concrete" imageAlt="modern building architecture minimalist interior concrete"
@@ -82,27 +81,19 @@ export default function ArchitectureStudioPage() {
features={[ features={[
{ {
id: 1, id: 1,
title: "Riverside Residence", title: "Riverside Residence", description: "A private home responding to its landscape. Concrete, glass, and timber create a dialogue between structure and nature. Site-specific design honoring the waterfront context.", imageSrc: "https://img.b2bpic.net/free-photo/city-building-sky_23-2148107055.jpg"
description: "A private home responding to its landscape. Concrete, glass, and timber create a dialogue between structure and nature. Site-specific design honoring the waterfront context.",
imageSrc: "https://img.b2bpic.net/free-photo/city-building-sky_23-2148107055.jpg"
}, },
{ {
id: 2, id: 2,
title: "Corporate Headquarters", title: "Corporate Headquarters", description: "Minimal office complex emphasizing natural light and material authenticity. Steel structure with stone cladding defines a calm, focused work environment.", imageSrc: "https://img.b2bpic.net/free-photo/imposing-building-near-smaller-black-building_23-2148252731.jpg"
description: "Minimal office complex emphasizing natural light and material authenticity. Steel structure with stone cladding defines a calm, focused work environment.",
imageSrc: "https://img.b2bpic.net/free-photo/imposing-building-near-smaller-black-building_23-2148252731.jpg"
}, },
{ {
id: 3, id: 3,
title: "Urban Studio", title: "Urban Studio", description: "Adaptive reuse of an industrial warehouse into creative workspace. Careful preservation of existing structure with restrained new interventions.", imageSrc: "https://img.b2bpic.net/free-photo/concrete-structure-blue-sky_181624-5763.jpg"
description: "Adaptive reuse of an industrial warehouse into creative workspace. Careful preservation of existing structure with restrained new interventions.",
imageSrc: "https://img.b2bpic.net/free-photo/concrete-structure-blue-sky_181624-5763.jpg"
}, },
{ {
id: 4, id: 4,
title: "Botanical Pavilion", title: "Botanical Pavilion", description: "Public garden structure exploring sustainable materials and transparent design. Steel framework with living walls creates a permeable space for community gathering.", imageSrc: "https://img.b2bpic.net/free-photo/white-facade-modern-building_181624-6180.jpg"
description: "Public garden structure exploring sustainable materials and transparent design. Steel framework with living walls creates a permeable space for community gathering.",
imageSrc: "https://img.b2bpic.net/free-photo/white-facade-modern-building_181624-6180.jpg"
} }
]} ]}
className="py-32 md:py-48" className="py-32 md:py-48"
@@ -124,24 +115,16 @@ export default function ArchitectureStudioPage() {
animationType="slide-up" animationType="slide-up"
metrics={[ metrics={[
{ {
id: "1", id: "1", value: "18+", description: "Years of Practice"
value: "18+",
description: "Years of Practice"
}, },
{ {
id: "2", id: "2", value: "120+", description: "Completed Projects"
value: "120+",
description: "Completed Projects"
}, },
{ {
id: "3", id: "3", value: "4", description: "Principal Architects"
value: "4",
description: "Principal Architects"
}, },
{ {
id: "4", id: "4", value: "42", description: "Studio Team Members"
value: "42",
description: "Studio Team Members"
} }
]} ]}
className="py-24 md:py-32" className="py-24 md:py-32"
@@ -179,22 +162,19 @@ export default function ArchitectureStudioPage() {
<FooterBaseReveal <FooterBaseReveal
columns={[ columns={[
{ {
title: "Studio", title: "Studio", items: [
items: [
{ label: "About", href: "philosophy" }, { label: "About", href: "philosophy" },
{ label: "Work", href: "projects" } { label: "Work", href: "projects" }
] ]
}, },
{ {
title: "Connect", title: "Connect", items: [
items: [
{ label: "hello@studiox.com", href: "#" }, { label: "hello@studiox.com", href: "#" },
{ label: "Contact", href: "contact" } { label: "Contact", href: "contact" }
] ]
}, },
{ {
title: "Practice", title: "Practice", items: [
items: [
{ label: "Residential", href: "#" }, { label: "Residential", href: "#" },
{ label: "Commercial", href: "#" }, { label: "Commercial", href: "#" },
{ label: "Adaptive Reuse", href: "#" } { label: "Adaptive Reuse", href: "#" }
@@ -211,4 +191,4 @@ export default function ArchitectureStudioPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }