107 lines
5.0 KiB
TypeScript
107 lines
5.0 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import SplitAbout from '@/components/sections/about/SplitAbout';
|
|
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
|
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
|
|
|
export default function AboutPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="bounce-effect"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="rounded"
|
|
contentWidth="mediumLarge"
|
|
sizing="medium"
|
|
background="noise"
|
|
cardStyle="gradient-mesh"
|
|
primaryButtonStyle="radial-glow"
|
|
secondaryButtonStyle="solid"
|
|
headingFontWeight="light"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleApple
|
|
navItems={[
|
|
{ name: "Home", id: "/" },
|
|
{ name: "About Us", id: "/about" },
|
|
{ name: "Menu", id: "/menu" },
|
|
{ name: "Facilities & Bar", id: "/facilities" },
|
|
{ name: "Contact Us", id: "/contact" },
|
|
]}
|
|
brandName="Celebration Family Restaurant"
|
|
/>
|
|
</div>
|
|
|
|
<div id="about-full" data-section="about-full">
|
|
<SplitAbout
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
title="Our Story and Philosophy"
|
|
description="At Celebration Family Restaurant, we believe every meal is an occasion to connect and create cherished memories. Our commitment to authentic flavors, exceptional service, and a welcoming environment sets us apart as a beloved dining spot in Pune. We are dedicated to providing a family-friendly space where delicious food meets unforgettable moments."
|
|
bulletPoints={[
|
|
{ title: "Authentic Flavors", description: "Crafting dishes with traditional recipes and fresh, high-quality ingredients from local suppliers." },
|
|
{ title: "Exceptional Service", description: "Our friendly and attentive staff are committed to making your dining experience truly special." },
|
|
{ title: "Community Focus", description: "Proudly serving the Chinchwad community and striving to be a local favorite for all occasions." }
|
|
]}
|
|
imageSrc="http://img.b2bpic.net/free-photo/chef-chopping-vegetables-cutting-board-preparing-ingredients_482257-121189.jpg"
|
|
mediaAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="metrics" data-section="metrics">
|
|
<MetricCardSeven
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
metrics={[
|
|
{ id: "metric-1", value: "15+", title: "Years in Service", items: ["Serving the community"] },
|
|
{ id: "metric-2", value: "100K+", title: "Happy Customers", items: ["Loyal patrons"] },
|
|
{ id: "metric-3", value: "200+", title: "Dishes Served", items: ["Diverse menu options"] }
|
|
]}
|
|
title="Our Milestones"
|
|
description="Years of dedicated service, countless happy customers, and a growing family of food lovers reflect our passion."
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterMedia
|
|
imageSrc="http://img.b2bpic.net/free-photo/top-view-tea-mugand-pine-cones-with-pullover_23-2148791025.jpg"
|
|
imageAlt="Elegant restaurant interior background"
|
|
logoText="Celebration Family Restaurant"
|
|
columns={[
|
|
{
|
|
title: "Quick Links", items: [
|
|
{ label: "Home", href: "/" },
|
|
{ label: "About Us", href: "/about" },
|
|
{ label: "Menu", href: "/menu" },
|
|
{ label: "Facilities", href: "/facilities" }
|
|
]
|
|
},
|
|
{
|
|
title: "Our Menu", items: [
|
|
{ label: "North Indian", href: "/menu#north-indian" },
|
|
{ label: "South Indian", href: "/menu#south-indian" },
|
|
{ label: "Chinese", href: "/menu#chinese" },
|
|
{ label: "Biryani & Seafood", href: "/menu#biryani-seafood" }
|
|
]
|
|
},
|
|
{
|
|
title: "Contact Us", items: [
|
|
{ label: "Location", href: "https://www.google.com/maps/dir/?api=1&destination=JQ9J%2BXVJ%2C+Kalewadi+Rd%2C+near+Chittarao+Ganapati+Mandir%2C+Deo+Wada%2C+Keshav+Nagar%2C+Chinchwad%2C+Pimpri-Chinchwad%2C+Pune%2C+Maharashtra+411033" },
|
|
{ label: "Phone: +91 84216 44883", href: "tel:+918421644883" },
|
|
{ label: "Instagram", href: "#" },
|
|
{ label: "Facebook", href: "#" }
|
|
]
|
|
}
|
|
]}
|
|
copyrightText="© 2024 Celebration Family Restaurant. All rights reserved."
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|