Add src/app/about-us/page.tsx
This commit is contained in:
245
src/app/about-us/page.tsx
Normal file
245
src/app/about-us/page.tsx
Normal file
@@ -0,0 +1,245 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit";
|
||||
import TimelineProcessFlow from "@/components/cardStack/layouts/timelines/TimelineProcessFlow";
|
||||
import TeamCardEleven from "@/components/sections/team/TeamCardEleven";
|
||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
||||
|
||||
export default function AboutUsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="largeSmallSizeMediumTitles"
|
||||
background="fluid"
|
||||
cardStyle="glass-depth"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Collections", id: "products" },
|
||||
{ name: "About", id: "/about-us" },
|
||||
{ name: "Craftsmanship", id: "features" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
button={{ text: "Shop Now", href: "/" }}
|
||||
brandName="TimeLux"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboardSplit
|
||||
logoText="Our Story"
|
||||
description="Founded in 1999, TimeLux has been dedicated to creating luxury timepieces that blend Swiss precision with timeless design. We believe every watch tells a story."
|
||||
buttons={[
|
||||
{ text: "Explore Collections", href: "/" },
|
||||
{ text: "Contact Us", href: "#contact" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
layoutOrder="default"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-jeweler-making-jewellery_23-2150931439.jpg"
|
||||
imageAlt="TimeLux founder's workshop"
|
||||
mediaAnimation="slide-up"
|
||||
frameStyle="card"
|
||||
background={{ variant: "plain" }}
|
||||
ariaLabel="About Us hero section"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<InlineImageSplitTextAbout
|
||||
heading={[
|
||||
{ type: "text", content: "Our mission is to create" },
|
||||
{ type: "image", src: "http://img.b2bpic.net/free-photo/closeup-mockup-smartwatch-isolated-whtie-background_53876-42330.jpg", alt: "Luxury watch design" },
|
||||
{ type: "text", content: "timepieces that transcend generations" },
|
||||
]}
|
||||
buttons={[{ text: "Discover Our Values", href: "#" }]}
|
||||
buttonAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="journey" data-section="journey">
|
||||
<TimelineProcessFlow
|
||||
title="Our Journey"
|
||||
description="From humble beginnings to a globally recognized luxury brand, TimeLux has maintained its commitment to excellence at every step."
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
items={[
|
||||
{
|
||||
id: "1", reverse: false,
|
||||
media: (
|
||||
<img
|
||||
src="http://img.b2bpic.net/free-photo/medium-shot-jeweler-making-jewellery_23-2150931439.jpg"
|
||||
alt="1999 - Founded"
|
||||
className="w-full h-full object-cover"
|
||||
/>
|
||||
),
|
||||
content: (
|
||||
<div>
|
||||
<h3 className="text-xl font-semibold mb-2">Founded</h3>
|
||||
<p>TimeLux was established with a vision to create watches that combine precision engineering with artistic design.</p>
|
||||
<ul className="list-disc pl-5 mt-2 space-y-1">
|
||||
<li>First collection launched</li>
|
||||
<li>Artisan workshop established</li>
|
||||
</ul>
|
||||
</div>
|
||||
),
|
||||
},
|
||||
{
|
||||
id: "2", reverse: true,
|
||||
media: (
|
||||
<img
|
||||
src="http://img.b2bpic.net/free-photo/closeup-mockup-smartwatch-isolated-whtie-background_53876-42330.jpg"
|
||||
alt="2005 - International Recognition"
|
||||
className="w-full h-full object-cover"
|
||||
/>
|
||||
),
|
||||
content: (
|
||||
<div>
|
||||
<h3 className="text-xl font-semibold mb-2">International Recognition</h3>
|
||||
<p>Our commitment to quality earned us international awards and recognition in the luxury watch industry.</p>
|
||||
<ul className="list-disc pl-5 mt-2 space-y-1">
|
||||
<li>Won 3 prestigious awards</li>
|
||||
<li>Expanded to 15 countries</li>
|
||||
</ul>
|
||||
</div>
|
||||
),
|
||||
},
|
||||
{
|
||||
id: "3", reverse: false,
|
||||
media: (
|
||||
<img
|
||||
src="http://img.b2bpic.net/free-photo/senior-man-posing-white-shirt-hat_23-2149487992.jpg"
|
||||
alt="2015 - Boutique Expansion"
|
||||
className="w-full h-full object-cover"
|
||||
/>
|
||||
),
|
||||
content: (
|
||||
<div>
|
||||
<h3 className="text-xl font-semibold mb-2">Boutique Expansion</h3>
|
||||
<p>We opened our flagship boutiques in major cities worldwide, bringing the TimeLux experience closer to our customers.</p>
|
||||
<ul className="list-disc pl-5 mt-2 space-y-1">
|
||||
<li>12 flagship boutiques</li>
|
||||
<li>50+ authorized retailers</li>
|
||||
</ul>
|
||||
</div>
|
||||
),
|
||||
},
|
||||
{
|
||||
id: "4", reverse: true,
|
||||
media: (
|
||||
<img
|
||||
src="http://img.b2bpic.net/free-photo/side-view-woman-checking-clock_23-2148662074.jpg"
|
||||
alt="2024 - Innovation & Sustainability"
|
||||
className="w-full h-full object-cover"
|
||||
/>
|
||||
),
|
||||
content: (
|
||||
<div>
|
||||
<h3 className="text-xl font-semibold mb-2">Innovation & Sustainability</h3>
|
||||
<p>Today, we continue to innovate while maintaining our commitment to sustainable and ethical manufacturing practices.</p>
|
||||
<ul className="list-disc pl-5 mt-2 space-y-1">
|
||||
<li>Carbon-neutral production</li>
|
||||
<li>Sustainable materials initiative</li>
|
||||
</ul>
|
||||
</div>
|
||||
),
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardEleven
|
||||
title="Meet Our Team"
|
||||
description="Talented craftspeople and innovators dedicated to creating timepieces of exceptional quality."
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
groups={[
|
||||
{
|
||||
id: "leadership", groupTitle: "Leadership", members: [
|
||||
{
|
||||
id: "1", title: "Alexander Richter", subtitle: "Founder & Chief Designer", detail: "alexander@timelux.com", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-bearded-man_171337-4226.jpg", imageAlt: "Alexander Richter"},
|
||||
{
|
||||
id: "2", title: "Catherine Moreau", subtitle: "Chief Executive Officer", detail: "catherine@timelux.com", imageSrc: "http://img.b2bpic.net/free-photo/elderly-businesswoman-sitting-outside-cafe_1303-19450.jpg", imageAlt: "Catherine Moreau"},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "craftsmanship", groupTitle: "Master Craftsmen", members: [
|
||||
{
|
||||
id: "3", title: "Hans Mueller", subtitle: "Master Horologist", detail: "hans@timelux.com", imageSrc: "http://img.b2bpic.net/free-photo/young-stylish-macho-boy-black-jacket-posed-outdoor-street-amazing-model-man_627829-6126.jpg", imageAlt: "Hans Mueller"},
|
||||
{
|
||||
id: "4", title: "Sofia Martinez", subtitle: "Lead Designer", detail: "sofia@timelux.com", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-posing-with-yellow-jacket-flowers_23-2149020786.jpg", imageAlt: "Sofia Martinez"},
|
||||
{
|
||||
id: "5", title: "Jean-Paul Dubois", subtitle: "Quality Assurance Director", detail: "jean-paul@timelux.com", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-bearded-man_171337-4226.jpg", imageAlt: "Jean-Paul Dubois"},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "innovation", groupTitle: "Innovation Team", members: [
|
||||
{
|
||||
id: "6", title: "Dr. Marcus Chen", subtitle: "Head of Innovation", detail: "marcus@timelux.com", imageSrc: "http://img.b2bpic.net/free-photo/young-stylish-macho-boy-black-jacket-posed-outdoor-street-amazing-model-man_627829-6126.jpg", imageAlt: "Dr. Marcus Chen"},
|
||||
{
|
||||
id: "7", title: "Elena Rossi", subtitle: "Materials Scientist", detail: "elena@timelux.com", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-posing-with-yellow-jacket-flowers_23-2149020786.jpg", imageAlt: "Elena Rossi"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
tag="Get in Touch"
|
||||
title="Have Questions?"
|
||||
description="Reach out to our team. We'd love to hear from you and discuss how we can help."
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Subscribe"
|
||||
termsText="We respect your privacy. Unsubscribe at any time."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Shop", items: [
|
||||
{ label: "Collections", href: "/" },
|
||||
{ label: "New Arrivals", href: "#" },
|
||||
{ label: "Sale", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about-us" },
|
||||
{ label: "Our Story", href: "#" },
|
||||
{ label: "Sustainability", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
{ label: "Contact", href: "#contact" },
|
||||
{ label: "Warranty", href: "#" },
|
||||
{ label: "Shipping Info", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2025 TimeLux Watches. All rights reserved."
|
||||
bottomRightText="Crafted with precision and passion"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user