Update src/app/page.tsx

This commit is contained in:
2026-05-22 22:02:25 +00:00
parent 166d3312e1
commit afea95d5f4

View File

@@ -8,7 +8,7 @@ import TextAbout from "@/components/sections/about/TextAbout";
import FeatureCardSix from "@/components/sections/feature/FeatureCardSix";
import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
export default function ArchitectureStudioPage() {
return (
@@ -34,7 +34,7 @@ export default function ArchitectureStudioPage() {
{ name: "Start", id: "contact" }
]}
button={{
text: "Get Started", href: "#contact"
text: "Get Started", href: "#contact"
}}
className="text-xs tracking-widest uppercase"
navItemClassName="text-sm font-light tracking-wide"
@@ -80,16 +80,16 @@ export default function ArchitectureStudioPage() {
useInvertedBackground={true}
features={[
{
title: "Zenith Towers", description: "A vertical masterpiece focusing on high-density living without compromising spatial privacy. Features modular living pods.", imageSrc: "http://img.b2bpic.net/free-photo/modern-skyscrapers-business-district_23-2148836767.jpg"
title: "Zenith Towers", description: "A vertical masterpiece focusing on high-density living without compromising spatial privacy. Features modular living pods.", imageSrc: "http://img.b2bpic.net/free-photo/modern-skyscrapers-business-district_23-2148836767.jpg"
},
{
title: "Oceanic Library", description: "Designed as a public sanctuary, this structure utilizes translucent panels to dissolve walls into the surrounding nature.", imageSrc: "http://img.b2bpic.net/free-photo/hallway-building_23-2149397556.jpg"
title: "Oceanic Library", description: "Designed as a public sanctuary, this structure utilizes translucent panels to dissolve walls into the surrounding nature.", imageSrc: "http://img.b2bpic.net/free-photo/hallway-building_23-2149397556.jpg"
},
{
title: "Industrial Hub", description: "Repurposed factory district now housing a collective creative ecosystem for emerging tech startups and artists.", imageSrc: "http://img.b2bpic.net/free-photo/new-business-district-garibaldi_268835-740.jpg"
title: "Industrial Hub", description: "Repurposed factory district now housing a collective creative ecosystem for emerging tech startups and artists.", imageSrc: "http://img.b2bpic.net/free-photo/new-business-district-garibaldi_268835-740.jpg"
},
{
title: "Highline Bridge", description: "Connecting fractured urban segments through seamless, green-integrated pathways that prioritize pedestrian flow.", imageSrc: "http://img.b2bpic.net/free-photo/sunset-bridge-road_1321-1655.jpg"
title: "Highline Bridge", description: "Connecting fractured urban segments through seamless, green-integrated pathways that prioritize pedestrian flow.", imageSrc: "http://img.b2bpic.net/free-photo/sunset-bridge-road_1321-1655.jpg"
}
]}
className="py-32 md:py-48"
@@ -140,22 +140,18 @@ export default function ArchitectureStudioPage() {
</div>
<div id="footer" data-section="footer">
<FooterMedia
<FooterBaseReveal
logoText="Apex Studio"
imageSrc="http://img.b2bpic.net/free-photo/modern-glass-skyscraper-background-with-sky-clouds-reflection_231208-6848.jpg?_wi=2"
columns={[
{ title: "Navigation", items: [{ label: "Philosophy", href: "#philosophy" }, { label: "Portfolio", href: "#projects" }] },
{ title: "Direct", items: [{ label: "hello@apex-studio.io", href: "#" }, { label: "Inquire", href: "#contact" }] },
{ title: "Expertise", items: [{ label: "Design", href: "#" }, { label: "Consultancy", href: "#" }, { label: "Urbanism", href: "#" }] }
]}
copyrightText="© 2025 Apex Studio. All rights reserved."
className="py-12 bg-neutral-900 text-white"
columnTitleClassName="text-sm uppercase tracking-widest font-semibold mb-4"
columnItemClassName="text-sm font-light hover:underline"
copyrightTextClassName="text-xs font-light text-neutral-400"
className="py-12"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}