Update src/app/page.tsx
This commit is contained in:
130
src/app/page.tsx
130
src/app/page.tsx
@@ -4,7 +4,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import HeroCentered from '@/components/sections/hero/HeroCentered';
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
@@ -28,75 +27,33 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Builders",
|
||||
id: "/pages/partners-builders",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Builders", id: "/pages/partners-builders" },
|
||||
]}
|
||||
brandName="Albert Living"
|
||||
button={{ text: "Contact", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Architectural Excellence in Kew"
|
||||
description="Combining development intelligence, construction precision, and design-led execution for limited, high-quality projects."
|
||||
avatars={[
|
||||
{
|
||||
src: "asset://avatar-1",
|
||||
alt: "Architect 1",
|
||||
},
|
||||
{
|
||||
src: "asset://avatar-2",
|
||||
alt: "Architect 2",
|
||||
},
|
||||
{
|
||||
src: "asset://avatar-3",
|
||||
alt: "Architect 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/modern-minimalist-architecture-with-swimming-pool_23-2151993728.jpg",
|
||||
alt: "Modern minimalist architecture with a swimming pool",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/architectural-reflection-modern-white-building-pool_23-2151993725.jpg",
|
||||
alt: "Architectural reflection: modern white building and pool",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "View Projects",
|
||||
href: "#about",
|
||||
},
|
||||
{ src: "asset://avatar-1", alt: "Architect 1" },
|
||||
{ src: "asset://avatar-2", alt: "Architect 2" },
|
||||
{ src: "asset://avatar-3", alt: "Architect 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/modern-minimalist-architecture-with-swimming-pool_23-2151993728.jpg", alt: "Modern minimalist architecture with a swimming pool" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/architectural-reflection-modern-white-building-pool_23-2151993725.jpg", alt: "Architectural reflection: modern white building and pool" },
|
||||
]}
|
||||
buttons={[{ text: "View Projects", href: "#about" }]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Sustainable Design",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Precision Engineering",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Luxury Residential",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Kew Specialists",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "BIM Integrated",
|
||||
},
|
||||
{ type: "text", text: "Sustainable Design" },
|
||||
{ type: "text", text: "Precision Engineering" },
|
||||
{ type: "text", text: "Luxury Residential" },
|
||||
{ type: "text", text: "Kew Specialists" },
|
||||
{ type: "text", text: "BIM Integrated" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -110,24 +67,9 @@ export default function LandingPage() {
|
||||
title="Meet the Team"
|
||||
description="The experts behind the planning, design, and site management."
|
||||
members={[
|
||||
{
|
||||
id: "m1",
|
||||
name: "James Albert",
|
||||
role: "Founder & Lead Architect",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pc-desk-empty-photovoltaics-factory-monitoring-system-performance-closeup_482257-118100.jpg",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
name: "Linda Chen",
|
||||
role: "BIM Manager",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-with-paraplegia-office-building-solar-powered-prototype_482257-130230.jpg",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
name: "Tom O'Connor",
|
||||
role: "Procurement Lead",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/interior-designer-preparing-visual-preview-clients-pc-close-up_482257-118882.jpg",
|
||||
},
|
||||
{ id: "m1", name: "James Albert", role: "Founder & Lead Architect", imageSrc: "http://img.b2bpic.net/free-photo/pc-desk-empty-photovoltaics-factory-monitoring-system-performance-closeup_482257-118100.jpg" },
|
||||
{ id: "m2", name: "Linda Chen", role: "BIM Manager", imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-with-paraplegia-office-building-solar-powered-prototype_482257-130230.jpg" },
|
||||
{ id: "m3", name: "Tom O'Connor", role: "Procurement Lead", imageSrc: "http://img.b2bpic.net/free-photo/interior-designer-preparing-visual-preview-clients-pc-close-up_482257-118882.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -138,13 +80,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Trusted Partners"
|
||||
description="Collaborating with industry-leading local talent."
|
||||
names={[
|
||||
"Melbourne Concrete Co.",
|
||||
"Interior Finishes PTY",
|
||||
"Kew Electrical Services",
|
||||
"Boroondara Joinery",
|
||||
"Advanced Glass Systems",
|
||||
]}
|
||||
names={["Melbourne Concrete Co.", "Interior Finishes PTY", "Kew Electrical Services", "Boroondara Joinery", "Advanced Glass Systems"]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -154,37 +90,29 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Featured Developments"
|
||||
description="A curated selection of our recent architectural projects in Kew."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="legal" data-section="legal">
|
||||
<LegalSection />
|
||||
<div style={{ padding: "40px", textAlign: "center" }}>
|
||||
<h3>Legal Disclaimers</h3>
|
||||
<p>All architectural designs and project management fees are subject to contract terms.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Projects",
|
||||
href: "#",
|
||||
},
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "#" },
|
||||
{ label: "Projects", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Builders",
|
||||
items: [
|
||||
{
|
||||
label: "Partner With Us",
|
||||
href: "/pages/partners-builders",
|
||||
},
|
||||
],
|
||||
title: "Builders", items: [{ label: "Partner With Us", href: "/pages/partners-builders" }],
|
||||
},
|
||||
]}
|
||||
logoText="Albert Living"
|
||||
|
||||
Reference in New Issue
Block a user