Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3ab9e30566 | |||
| 2d78dfeed0 | |||
| 5e45e249e9 | |||
| ffe8c90bf5 | |||
| 88462e114c | |||
| cc465f25a5 | |||
| ae6678833f |
113
src/app/about/page.tsx
Normal file
113
src/app/about/page.tsx
Normal file
@@ -0,0 +1,113 @@
|
|||||||
|
"use client";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
|
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||||
|
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||||
|
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||||
|
|
||||||
|
export default function AboutPage() {
|
||||||
|
const navItems = [
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "About Us", id: "/about" },
|
||||||
|
{ name: "Menu", id: "/menu" },
|
||||||
|
{ name: "Reservations", id: "/reservations" },
|
||||||
|
{ name: "Gallery", id: "/gallery" },
|
||||||
|
{ name: "Events", id: "/events" },
|
||||||
|
{ name: "Contact", id: "/contact" }
|
||||||
|
];
|
||||||
|
|
||||||
|
const footerColumns = [
|
||||||
|
{
|
||||||
|
title: "Company", items: [
|
||||||
|
{ label: "Home", href: "/" },
|
||||||
|
{ label: "About Us", href: "/about" },
|
||||||
|
{ label: "Menu", href: "/menu" },
|
||||||
|
{ label: "Gallery", href: "/gallery" },
|
||||||
|
{ label: "Contact", href: "/contact" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Services", items: [
|
||||||
|
{ label: "Reservations", href: "/reservations" },
|
||||||
|
{ label: "Order Online", href: "#" },
|
||||||
|
{ label: "Catering", href: "/events" },
|
||||||
|
{ label: "Events", href: "/events" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Legal", items: [
|
||||||
|
{ label: "Privacy Policy", href: "#" },
|
||||||
|
{ label: "Terms of Service", href: "#" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Connect", items: [
|
||||||
|
{ label: "Facebook", href: "https://facebook.com/patiaalarestaurant" },
|
||||||
|
{ label: "Instagram", href: "https://instagram.com/patiaalarestaurant" },
|
||||||
|
{ label: "WhatsApp", href: "https://wa.me/+918875437543" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="text-stagger"
|
||||||
|
defaultTextAnimation="background-highlight"
|
||||||
|
borderRadius="rounded"
|
||||||
|
contentWidth="smallMedium"
|
||||||
|
sizing="medium"
|
||||||
|
background="none"
|
||||||
|
cardStyle="gradient-radial"
|
||||||
|
primaryButtonStyle="flat"
|
||||||
|
secondaryButtonStyle="radial-glow"
|
||||||
|
headingFontWeight="light"
|
||||||
|
>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarStyleFullscreen
|
||||||
|
brandName="Patiaala House"
|
||||||
|
navItems={navItems}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="about-us" data-section="about-us">
|
||||||
|
<InlineImageSplitTextAbout
|
||||||
|
heading={[
|
||||||
|
{ type: "text", content: "Our Story: Bringing Authentic Flavors to Your Table" },
|
||||||
|
{ type: "image", src: "http://img.b2bpic.net/free-photo/top-view-composition-with-delicious-pakistan-meal_23-2148821539.jpg?_wi=3", alt: "Delicious Indian dishes on a table" }
|
||||||
|
]}
|
||||||
|
buttons={[
|
||||||
|
{ text: "View Our Menu", href: "/menu" },
|
||||||
|
{ text: "Reserve a Table", href: "/reservations" }
|
||||||
|
]}
|
||||||
|
useInvertedBackground={true}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="contact-cta" data-section="contact-cta">
|
||||||
|
<ContactCTA
|
||||||
|
tag="Visit Us"
|
||||||
|
title="Experience Patiaala House"
|
||||||
|
description="We invite you to join us for an unforgettable dining experience."
|
||||||
|
buttons={[
|
||||||
|
{ text: "Find Our Location", href: "/contact" },
|
||||||
|
{ text: "Call Us", href: "tel:+918875437543" }
|
||||||
|
]}
|
||||||
|
background={{ variant: "plain" }}
|
||||||
|
tagAnimation="slide-up"
|
||||||
|
buttonAnimation="slide-up"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterMedia
|
||||||
|
imageSrc="http://img.b2bpic.net/free-vector/modern-coffee-shop-interior-with-flat-design_23-2147905684.jpg?_wi=3"
|
||||||
|
imageAlt="Restaurant exterior at night"
|
||||||
|
columns={footerColumns}
|
||||||
|
logoText="Patiaala House"
|
||||||
|
copyrightText="© 2024 Patiaala House. All rights reserved."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -10,11 +10,12 @@ import { PartyPopper, CalendarCheck, Utensils, ChefHat, Star } from 'lucide-reac
|
|||||||
export default function EventsPage() {
|
export default function EventsPage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "About Us", id: "/about" },
|
||||||
{ name: "Menu", id: "/menu" },
|
{ name: "Menu", id: "/menu" },
|
||||||
{ name: "Reservations", id: "/reservations" },
|
{ name: "Reservations", id: "/reservations" },
|
||||||
{ name: "Gallery", id: "/gallery" },
|
{ name: "Gallery", id: "/gallery" },
|
||||||
{ name: "Events", id: "/events" },
|
{ name: "Events", id: "/events" },
|
||||||
{ name: "Contact", id: "/contact" },
|
{ name: "Contact", id: "/contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
const footerColumns = [
|
const footerColumns = [
|
||||||
|
|||||||
@@ -13,11 +13,12 @@ import { Star, ForkKnife, Lamp, Users, Leaf, Sparkles, Heart } from 'lucide-reac
|
|||||||
export default function HomePage() {
|
export default function HomePage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "About Us", id: "/about" },
|
||||||
{ name: "Menu", id: "/menu" },
|
{ name: "Menu", id: "/menu" },
|
||||||
{ name: "Reservations", id: "/reservations" },
|
{ name: "Reservations", id: "/reservations" },
|
||||||
{ name: "Gallery", id: "/gallery" },
|
{ name: "Gallery", id: "/gallery" },
|
||||||
{ name: "Events", id: "/events" },
|
{ name: "Events", id: "/events" },
|
||||||
{ name: "Contact", id: "/contact" },
|
{ name: "Contact", id: "/contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
const footerColumns = [
|
const footerColumns = [
|
||||||
|
|||||||
Reference in New Issue
Block a user