From 101c29b783fb8cee8a2494f24ef691bfdd7e5975 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 10:56:38 +0000 Subject: [PATCH] Add src/app/about-us/page.tsx --- src/app/about-us/page.tsx | 245 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 245 insertions(+) create mode 100644 src/app/about-us/page.tsx diff --git a/src/app/about-us/page.tsx b/src/app/about-us/page.tsx new file mode 100644 index 0000000..9bf50dd --- /dev/null +++ b/src/app/about-us/page.tsx @@ -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 ( + + + +
+ +
+ +
+ +
+ +
+ + ), + content: ( +
+

Founded

+

TimeLux was established with a vision to create watches that combine precision engineering with artistic design.

+
    +
  • First collection launched
  • +
  • Artisan workshop established
  • +
+
+ ), + }, + { + id: "2", reverse: true, + media: ( + 2005 - International Recognition + ), + content: ( +
+

International Recognition

+

Our commitment to quality earned us international awards and recognition in the luxury watch industry.

+
    +
  • Won 3 prestigious awards
  • +
  • Expanded to 15 countries
  • +
+
+ ), + }, + { + id: "3", reverse: false, + media: ( + 2015 - Boutique Expansion + ), + content: ( +
+

Boutique Expansion

+

We opened our flagship boutiques in major cities worldwide, bringing the TimeLux experience closer to our customers.

+
    +
  • 12 flagship boutiques
  • +
  • 50+ authorized retailers
  • +
+
+ ), + }, + { + id: "4", reverse: true, + media: ( + 2024 - Innovation & Sustainability + ), + content: ( +
+

Innovation & Sustainability

+

Today, we continue to innovate while maintaining our commitment to sustainable and ethical manufacturing practices.

+
    +
  • Carbon-neutral production
  • +
  • Sustainable materials initiative
  • +
+
+ ), + }, + ]} + /> +
+ +
+ +
+ +
+ +
+ + +
+ ); +}