Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b9ea943b29 | |||
| e4a9cfdc7f | |||
| fa62ab338c |
222
src/app/page.tsx
222
src/app/page.tsx
@@ -10,6 +10,7 @@ import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
|||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
||||||
import TextAbout from '@/components/sections/about/TextAbout';
|
import TextAbout from '@/components/sections/about/TextAbout';
|
||||||
|
import { Accessibility } from 'lucide-react';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -29,22 +30,10 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Home", id: "hero" },
|
||||||
name: "Home",
|
{ name: "About", id: "about" },
|
||||||
id: "hero",
|
{ name: "Features", id: "features" },
|
||||||
},
|
{ name: "Contact", id: "contact" },
|
||||||
{
|
|
||||||
name: "About",
|
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Features",
|
|
||||||
id: "features",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Contact",
|
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="The Centre Business Park"
|
brandName="The Centre Business Park"
|
||||||
/>
|
/>
|
||||||
@@ -53,41 +42,20 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroOverlay
|
<HeroOverlay
|
||||||
title="Welcome to The Centre Business Park"
|
title="Welcome to The Centre Business Park"
|
||||||
description="Premium office space tailored for growth and innovation. Discover a workspace where your business can thrive."
|
description="Premium office space tailored for growth and innovation. We prioritize accessibility for all, featuring wheelchair-accessible entrances and a dedicated accessible parking lot."
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/road-with-trees-into-two-symmetrical-buildings_1127-2286.jpg?_wi=1"
|
imageSrc="http://img.b2bpic.net/free-photo/road-with-trees-into-two-symmetrical-buildings_1127-2286.jpg?_wi=1"
|
||||||
imageAlt="Aerial view of The Centre Business Park"
|
imageAlt="Aerial view of The Centre Business Park"
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{ src: "http://img.b2bpic.net/free-photo/man-blue-suit-posing-white-artistic-wall-from-bricks_613910-10634.jpg", alt: "Tenant portrait" },
|
||||||
src: "http://img.b2bpic.net/free-photo/man-blue-suit-posing-white-artistic-wall-from-bricks_613910-10634.jpg",
|
{ src: "http://img.b2bpic.net/free-photo/portrait-smiling-blonde-businesswoman-formal-dressed-isolated-dark-textured-background_613910-5399.jpg", alt: "Tenant portrait" },
|
||||||
alt: "Tenant portrait",
|
{ src: "http://img.b2bpic.net/free-photo/portrait-happy-businessman-with-crossed-arms_23-2147955274.jpg", alt: "Tenant portrait" },
|
||||||
},
|
{ src: "http://img.b2bpic.net/free-photo/indoor-shot-attractive-caucasian-teenage-woman-with-long-dark-hair-sitting-desk-with-lots-textbooks_273609-1136.jpg", alt: "Tenant portrait" },
|
||||||
{
|
{ src: "http://img.b2bpic.net/free-photo/positive-confident-business-coach-posing-training-room_74855-3026.jpg", alt: "Tenant portrait" },
|
||||||
src: "http://img.b2bpic.net/free-photo/portrait-smiling-blonde-businesswoman-formal-dressed-isolated-dark-textured-background_613910-5399.jpg",
|
|
||||||
alt: "Tenant portrait",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/portrait-happy-businessman-with-crossed-arms_23-2147955274.jpg",
|
|
||||||
alt: "Tenant portrait",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/indoor-shot-attractive-caucasian-teenage-woman-with-long-dark-hair-sitting-desk-with-lots-textbooks_273609-1136.jpg",
|
|
||||||
alt: "Tenant portrait",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/positive-confident-business-coach-posing-training-room_74855-3026.jpg",
|
|
||||||
alt: "Tenant portrait",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
avatarText="Join 50+ industry leaders"
|
avatarText="Join 50+ industry leaders"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{ text: "Schedule a Tour", href: "#contact" },
|
||||||
text: "Schedule a Tour",
|
{ text: "View Spaces", href: "#features" },
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
text: "View Spaces",
|
|
||||||
href: "#features",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -96,12 +64,10 @@ export default function LandingPage() {
|
|||||||
<TextAbout
|
<TextAbout
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
tag="About Us"
|
tag="About Us"
|
||||||
title="A Premier Destination for Modern Business"
|
tagIcon={Accessibility}
|
||||||
|
title="Inclusive & Accessible Design"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{ text: "Learn More", href: "#" },
|
||||||
text: "Learn More",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -113,28 +79,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "f1",
|
id: "onsite", title: "On-Site Services", description: "Comprehensive support including concierge services, on-site dining options, and shared meeting rooms for all tenants.", tag: "Services", imageSrc: "http://img.b2bpic.net/free-photo/happy-people-talking-cafe_1139-445.jpg" },
|
||||||
title: "High-Speed Fiber Optics",
|
{ id: "f1", title: "High-Speed Fiber Optics", description: "Blazing fast internet connectivity for seamless digital operations.", tag: "Connectivity", imageSrc: "http://img.b2bpic.net/free-photo/5g-spelled-out-plain-background_23-2148291116.jpg" },
|
||||||
description: "Blazing fast internet connectivity for seamless digital operations.",
|
{ id: "f2", title: "Secure Private Parking", description: "Ample, gated parking facilities for staff and clients alike, including dedicated accessible bays.", tag: "Infrastructure", imageSrc: "http://img.b2bpic.net/free-vector/illustration-blank-sign-vector_53876-3832.jpg" },
|
||||||
tag: "Connectivity",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/5g-spelled-out-plain-background_23-2148291116.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "f2",
|
|
||||||
title: "Secure Private Parking",
|
|
||||||
description: "Ample, gated parking facilities for staff and clients alike.",
|
|
||||||
tag: "Infrastructure",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-vector/illustration-blank-sign-vector_53876-3832.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "f3",
|
|
||||||
title: "24/7 Security & Monitoring",
|
|
||||||
description: "Round-the-clock professional security for your complete peace of mind.",
|
|
||||||
tag: "Safety",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-vector/smart-home-tech-infographic-vector_53876-62362.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="World-Class Amenities"
|
title="World-Class Amenities & Services"
|
||||||
description="Our facilities provide everything your company needs to operate at peak efficiency."
|
description="Our facilities provide everything your company needs to operate at peak efficiency."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -145,60 +94,16 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{ id: "1", name: "James Smith", role: "CEO", company: "TechStream", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/man-blue-suit-posing-white-artistic-wall-from-bricks_613910-10634.jpg" },
|
||||||
id: "1",
|
{ id: "2", name: "Linda Wu", role: "COO", company: "Global Logistics", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-blonde-businesswoman-formal-dressed-isolated-dark-textured-background_613910-5399.jpg" },
|
||||||
name: "James Smith",
|
{ id: "3", name: "Robert Miller", role: "Founder", company: "Creative Hub", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-businessman-with-crossed-arms_23-2147955274.jpg" },
|
||||||
role: "CEO",
|
{ id: "4", name: "Sarah Jenkins", role: "Manager", company: "Innovate Solutions", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-attractive-caucasian-teenage-woman-with-long-dark-hair-sitting-desk-with-lots-textbooks_273609-1136.jpg" },
|
||||||
company: "TechStream",
|
{ id: "5", name: "David Clark", role: "Director", company: "DataCorp", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-business-coach-posing-training-room_74855-3026.jpg" },
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/man-blue-suit-posing-white-artistic-wall-from-bricks_613910-10634.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2",
|
|
||||||
name: "Linda Wu",
|
|
||||||
role: "COO",
|
|
||||||
company: "Global Logistics",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-blonde-businesswoman-formal-dressed-isolated-dark-textured-background_613910-5399.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3",
|
|
||||||
name: "Robert Miller",
|
|
||||||
role: "Founder",
|
|
||||||
company: "Creative Hub",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-businessman-with-crossed-arms_23-2147955274.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "4",
|
|
||||||
name: "Sarah Jenkins",
|
|
||||||
role: "Manager",
|
|
||||||
company: "Innovate Solutions",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-attractive-caucasian-teenage-woman-with-long-dark-hair-sitting-desk-with-lots-textbooks_273609-1136.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "5",
|
|
||||||
name: "David Clark",
|
|
||||||
role: "Director",
|
|
||||||
company: "DataCorp",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-business-coach-posing-training-room_74855-3026.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
kpiItems={[
|
kpiItems={[
|
||||||
{
|
{ value: "95%", label: "Client Retention" },
|
||||||
value: "95%",
|
{ value: "50+", label: "Companies" },
|
||||||
label: "Client Retention",
|
{ value: "15yr", label: "Experience" },
|
||||||
},
|
|
||||||
{
|
|
||||||
value: "50+",
|
|
||||||
label: "Companies",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
value: "15yr",
|
|
||||||
label: "Experience",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Trusted by Leaders"
|
title="Trusted by Leaders"
|
||||||
description="Hear from the companies that call The Centre home."
|
description="Hear from the companies that call The Centre home."
|
||||||
@@ -210,21 +115,9 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{ id: "q1", title: "Is the campus accessible?", content: "Yes, we are fully accessible with level ground entrances and dedicated accessible parking spaces." },
|
||||||
id: "q1",
|
{ id: "q2", title: "Are leases flexible?", content: "We offer a range of lease terms to suit growing businesses." },
|
||||||
title: "Is there visitor parking?",
|
{ id: "q3", title: "Is the park accessible by transit?", content: "Absolutely, multiple bus and train lines serve the area directly." },
|
||||||
content: "Yes, we offer dedicated visitor bays near every main entrance.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "q2",
|
|
||||||
title: "Are leases flexible?",
|
|
||||||
content: "We offer a range of lease terms to suit growing businesses.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "q3",
|
|
||||||
title: "Is the park accessible by transit?",
|
|
||||||
content: "Absolutely, multiple bus and train lines serve the area directly.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Frequently Asked Questions"
|
title="Frequently Asked Questions"
|
||||||
description="Find answers to common questions about our leasing and facilities."
|
description="Find answers to common questions about our leasing and facilities."
|
||||||
@@ -235,17 +128,12 @@ export default function LandingPage() {
|
|||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCTA
|
<ContactCTA
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{ variant: "plain" }}
|
||||||
variant: "plain",
|
|
||||||
}}
|
|
||||||
tag="Contact Us"
|
tag="Contact Us"
|
||||||
title="Ready to move in?"
|
title="Ready to move in?"
|
||||||
description="Get in touch with our leasing team to schedule a tour of our available spaces."
|
description="Get in touch with our leasing team to schedule a tour of our available spaces. We look forward to hosting your business."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{ text: "Schedule a Tour", href: "#" },
|
||||||
text: "Schedule a Tour",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -255,45 +143,9 @@ export default function LandingPage() {
|
|||||||
imageSrc="http://img.b2bpic.net/free-photo/road-with-trees-into-two-symmetrical-buildings_1127-2286.jpg?_wi=2"
|
imageSrc="http://img.b2bpic.net/free-photo/road-with-trees-into-two-symmetrical-buildings_1127-2286.jpg?_wi=2"
|
||||||
logoText="The Centre"
|
logoText="The Centre"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Careers", href: "#" }] },
|
||||||
title: "Company",
|
{ title: "Support", items: [{ label: "Help Center", href: "#" }, { label: "Contact", href: "#" }] },
|
||||||
items: [
|
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||||
{
|
|
||||||
label: "About Us",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Careers",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Support",
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Help Center",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Contact",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Legal",
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Privacy",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Terms",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user