Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f592d777a3 | |||
| 6925f17791 | |||
| bea1671afd | |||
| f3c4a044c6 | |||
| 168f99992d |
67
src/app/about/page.tsx
Normal file
67
src/app/about/page.tsx
Normal file
@@ -0,0 +1,67 @@
|
||||
"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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="floatingGradient"
|
||||
cardStyle="gradient-bordered"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Menu", id: "/#menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Catering", id: "/#catering" },
|
||||
{ name: "Events", id: "/#events" },
|
||||
{ name: "Visit", id: "/#visit" },
|
||||
]}
|
||||
brandName="Molisana Bakery"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-content" data-section="about-content">
|
||||
<TextAbout
|
||||
tag="Our Story"
|
||||
tagIcon={History}
|
||||
title="Old-School Italian Hospitality"
|
||||
className="py-20"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<div className="max-w-4xl mx-auto px-6 pb-20 space-y-8">
|
||||
<p className="text-lg">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.</p>
|
||||
<p className="text-lg">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.</p>
|
||||
<p className="text-lg">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.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "Bakery", items: [{ label: "Menu", href: "/#menu" }, { label: "Catering", href: "/#catering" }] },
|
||||
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Events", href: "/#events" }] },
|
||||
{ title: "Visit", items: [{ label: "Directions", href: "/#visit" }, { label: "Contact", href: "tel:+1000000000" }] },
|
||||
]}
|
||||
bottomLeftText="© 2024 Molisana Bakery. All rights reserved."
|
||||
bottomRightText="Authentic Italian Daily Rituals"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -30,6 +30,7 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Menu", id: "#menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Catering", id: "#catering" },
|
||||
{ name: "Events", id: "#events" },
|
||||
{ name: "Visit", id: "#visit" },
|
||||
@@ -134,7 +135,7 @@ export default function LandingPage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "Bakery", items: [{ label: "Menu", href: "#menu" }, { label: "Catering", href: "#catering" }] },
|
||||
{ title: "Company", items: [{ label: "About Us", href: "#about" }, { label: "Events", href: "#events" }] },
|
||||
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Events", href: "#events" }] },
|
||||
{ title: "Visit", items: [{ label: "Directions", href: "#visit" }, { label: "Contact", href: "tel:+1000000000" }] },
|
||||
]}
|
||||
bottomLeftText="© 2024 Molisana Bakery. All rights reserved."
|
||||
@@ -144,4 +145,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user