From e1811acf5a3d1b94d4c78e90f8e2d253fed933cd Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 05:06:06 +0000 Subject: [PATCH] Add src/app/about/page.tsx --- src/app/about/page.tsx | 200 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 200 insertions(+) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..0c40515 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,200 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; +import FeatureCardEight from "@/components/sections/feature/FeatureCardEight"; +import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; +import { MapPin, Clock, Utensils, CreditCard, ParkingSquare, Accessibility } from "lucide-react"; + +export default function AboutPage() { + return ( + + + +
+ + +
+

+ Le Artisan Boulangerie is a quaint, light-filled sanctuary dedicated to the art of baking and the joy of lingering. We offer classic pastries and global eats in a laid-back atmosphere where every detail has been thoughtfully curated. Whether you're seeking a quiet moment alone, a gathering with friends, or a destination for your morning coffee ritual, LAB welcomes you. +

+

+ Our commitment is simple: handcrafted excellence, curated elegance, and a space that celebrates the beauty of slowing down. +

+
+
+ +
+ +
+ +
+
+

Quick Reference Guide

+ +
+
+
+
+ +
+
+

Accessibility

+

Wheelchair-accessible entrance for all guests

+
+
+
+ +
+
+
+ +
+
+

Service Options

+

Delivery • On-site Dining • Takeaway • Dine-in

+
+
+
+ +
+
+
+ +
+
+

Offerings & Timing

+

Premium Coffee • Artisan Pastries • Global Dishes • Breakfast Specialties

+
+
+
+ +
+
+
+ +
+
+

Payment Methods

+

Credit Cards • Debit Cards • NFC Mobile Payments

+
+
+
+ +
+
+
+ +
+
+

Parking

+

Free street parking available

+
+
+
+ +
+
+
+ +
+
+

Perfect For

+

Quick visits, leisurely morning coffee, intimate gatherings, or solo escapes

+
+
+
+
+
+
+ + +
+ ); +}