From bea1671afdfd3883c9c9085f8b9d14ef5991dcdf Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 12 Apr 2026 01:58:21 +0000 Subject: [PATCH 1/2] Add src/app/about/page.tsx --- src/app/about/page.tsx | 66 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 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..cfc5674 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,66 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import TextAbout from '@/components/sections/about/TextAbout'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { History } from "lucide-react"; + +export default function AboutPage() { + return ( + + + + +
+ +
+

Molisana Bakery was born from a desire to bring the authentic, old-school Italian bakery experience to our local community. We pride ourselves on preserving traditions passed down through generations.

+

Our daily hot table is the heart of our kitchen, featuring scratch-made classics that change with the seasons. We believe food is a language of love, and we serve every dish with the warmth of a family gathering.

+

Whether you stop in for your morning espresso ritual to start the day or join us for a slow lunch, our commitment to hospitality remains the same: treat every customer like a long-time friend at our family table.

+
+
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1 From 6925f17791c7a4fbdc74706544452d92a79040df Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 12 Apr 2026 01:58:22 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3e82ef7..9e12c55 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,6 +30,7 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1