Merge version_2 into main #2
147
src/app/contact/page.tsx
Normal file
147
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,147 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="small"
|
||||
sizing="large"
|
||||
background="grid"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", href: "/"},
|
||||
{
|
||||
name: "Features", href: "/#features"},
|
||||
{
|
||||
name: "Menu", href: "/#menu"},
|
||||
{
|
||||
name: "Reviews", href: "/#reviews"},
|
||||
{
|
||||
name: "Contact", href: "/contact"},
|
||||
]}
|
||||
button={{
|
||||
text: "Order Now", href: "/#contact"}}
|
||||
brandName="Chatpat Bites"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-form" data-section="contact-form">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Get In Touch with Chatpat Bites"
|
||||
description="Have a question, a special request, or just want to say hello? Fill out the form below and we'll get back to you as soon as possible!"
|
||||
inputs={[
|
||||
{
|
||||
name: "name", type: "text", placeholder: "Your Name", required: true,
|
||||
},
|
||||
{
|
||||
name: "email", type: "email", placeholder: "Your Email", required: true,
|
||||
},
|
||||
{
|
||||
name: "phone", type: "tel", placeholder: "Phone Number (Optional)"},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message", placeholder: "Your Message", rows: 5,
|
||||
required: true,
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/penne-pasta-with-cream-cheese-sauteed-vegetables_114579-2330.jpg"
|
||||
imageAlt="Chatpat Bites contact form background"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
buttonText="Send Message"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="location-map" data-section="location-map" className="py-16 md:py-24 lg:py-32">
|
||||
<div className="container mx-auto px-4 md:px-6 lg:px-8 max-w-screen-xl">
|
||||
<h2 className="text-4xl md:text-5xl font-semibold text-center mb-8">Our Location</h2>
|
||||
<p className="text-lg text-center text-gray-600 dark:text-gray-300 mb-12">
|
||||
Come visit us and experience the luxury taste in person!
|
||||
</p>
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
|
||||
<div>
|
||||
<h3 className="text-3xl font-medium mb-4">Chatpat Bites Main Branch</h3>
|
||||
<p className="text-gray-700 dark:text-gray-200 mb-2">123 Food Street, Delicious City, Taste Land 75000</p>
|
||||
<p className="text-gray-700 dark:text-gray-200 mb-2">Phone: +1 234 567 890</p>
|
||||
<p className="text-gray-700 dark:text-gray-200 mb-4">Email: info@chatpatbites.com</p>
|
||||
<h4 className="text-2xl font-medium mb-4">Hours of Operation</h4>
|
||||
<p className="text-gray-700 dark:text-gray-200">Monday - Friday: 11:00 AM - 11:00 PM</p>
|
||||
<p className="text-gray-700 dark:text-gray-200">Saturday - Sunday: 12:00 PM - 12:00 AM</p>
|
||||
</div>
|
||||
<div className="w-full h-[400px] rounded-lg overflow-hidden shadow-lg">
|
||||
<iframe
|
||||
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3618.334187063462!2d67.04278141492063!3d24.9250004840003!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3eb33f92582d908d%3A0x6d9f6f6d0f6f6f6d!2sMillennium%20Mall!5e0!3m2!1sen!2sus!4v1700000000000!5m2!1sen!2sus"
|
||||
width="100%"
|
||||
height="100%"
|
||||
style={{ border: 0 }}
|
||||
allowFullScreen=""
|
||||
loading="lazy"
|
||||
referrerPolicy="no-referrer-when-downgrade"
|
||||
title="Chatpat Bites Restaurant Location"
|
||||
></iframe>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links", items: [
|
||||
{
|
||||
label: "Home", href: "/"},
|
||||
{
|
||||
label: "Features", href: "/#features"},
|
||||
{
|
||||
label: "Menu", href: "/#menu"},
|
||||
{
|
||||
label: "Reviews", href: "/#reviews"},
|
||||
{
|
||||
label: "Contact", href: "/contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Our Menu", items: [
|
||||
{
|
||||
label: "Popular Items", href: "/#menu"},
|
||||
{
|
||||
label: "Zinger Burgers", href: "#"},
|
||||
{
|
||||
label: "Pastas", href: "#"},
|
||||
{
|
||||
label: "Pizzas", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms of Service", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2223 Chatpat Bites. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
117
src/app/our-menu/page.tsx
Normal file
117
src/app/our-menu/page.tsx
Normal file
@@ -0,0 +1,117 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
|
||||
export default function OurMenuPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="small"
|
||||
sizing="large"
|
||||
background="grid"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", href: "/"},
|
||||
{
|
||||
name: "Features", href: "/#features"},
|
||||
{
|
||||
name: "Our Menu", href: "/our-menu"},
|
||||
{
|
||||
name: "Reviews", href: "/#reviews"},
|
||||
{
|
||||
name: "Contact", href: "/#contact"},
|
||||
]}
|
||||
button={{
|
||||
text: "Order Now", href: "/#contact"}}
|
||||
brandName="Chatpat Bites"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="menu-page-content" data-section="menu-page-content">
|
||||
<ProductCardThree
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
products={[
|
||||
{
|
||||
id: "item-1", name: "Classic Cheeseburger", price: "$8.50", imageSrc: "http://img.b2bpic.net/free-photo/view-tasty-burger-with-ingredients_23-2148419612.jpg", imageAlt: "Classic Cheeseburger"},
|
||||
{
|
||||
id: "item-2", name: "Spicy Zinger Burger", price: "$9.99", imageSrc: "http://img.b2bpic.net/free-photo/delicious-cheeseburger-with-bacon_23-2148446215.jpg", imageAlt: "Spicy Zinger Burger"},
|
||||
{
|
||||
id: "item-3", name: "Crispy Chicken Strips (3 pcs)", price: "$7.00", imageSrc: "http://img.b2bpic.net/free-photo/front-view-tasty-fried-chicken-with-french-fries-red-plate_140725-72810.jpg", imageAlt: "Crispy Chicken Strips"},
|
||||
{
|
||||
id: "item-4", name: "Vegetable Pizza (Medium)", price: "$14.00", imageSrc: "http://img.b2bpic.net/free-photo/delicious-pizza-isolated-white_185193-42407.jpg", imageAlt: "Vegetable Pizza"},
|
||||
{
|
||||
id: "item-5", name: "Pepperoni Pizza (Medium)", price: "$15.50", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-meat-pizza-with-copy-space_23-2148454884.jpg", imageAlt: "Pepperoni Pizza"},
|
||||
{
|
||||
id: "item-6", name: "Creamy Mushroom Pasta", price: "$11.00", imageSrc: "http://img.b2bpic.net/free-photo/delicious-pasta-plate_23-2148386187.jpg", imageAlt: "Creamy Mushroom Pasta"},
|
||||
{
|
||||
id: "item-7", name: "French Fries (Large)", price: "$4.00", imageSrc: "http://img.b2bpic.net/free-photo/delicious-chips-arrangement_23-2149591458.jpg", imageAlt: "French Fries"},
|
||||
{
|
||||
id: "item-8", name: "Onion Rings", price: "$5.00", imageSrc: "http://img.b2bpic.net/free-photo/crispy-onion-rings-with-dipping-sauce_23-2148419610.jpg", imageAlt: "Onion Rings"},
|
||||
]}
|
||||
title="Our Full Menu"
|
||||
description="Explore our delicious range of fast food favorites, crafted with quality ingredients and bursting with flavor."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links", items: [
|
||||
{
|
||||
label: "Home", href: "/"},
|
||||
{
|
||||
label: "Features", href: "/#features"},
|
||||
{
|
||||
label: "Our Menu", href: "/our-menu"},
|
||||
{
|
||||
label: "Reviews", href: "/#reviews"},
|
||||
{
|
||||
label: "Contact", href: "/#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Our Menu", items: [
|
||||
{
|
||||
label: "Popular Items", href: "/our-menu"},
|
||||
{
|
||||
label: "Zinger Burgers", href: "/our-menu"},
|
||||
{
|
||||
label: "Pastas", href: "/our-menu"},
|
||||
{
|
||||
label: "Pizzas", href: "/our-menu"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms of Service", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2223 Chatpat Bites. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
187
src/app/page.tsx
187
src/app/page.tsx
@@ -29,30 +29,18 @@ export default function LandingPage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "home",
|
||||
},
|
||||
name: "Home", href: "/"},
|
||||
{
|
||||
name: "Features",
|
||||
id: "features",
|
||||
},
|
||||
name: "Features", href: "/#features"},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "menu",
|
||||
},
|
||||
name: "Our Menu", href: "/our-menu"},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "reviews",
|
||||
},
|
||||
name: "Reviews", href: "/#reviews"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contact", href: "/#contact"},
|
||||
]}
|
||||
button={{
|
||||
text: "Order Now",
|
||||
href: "#contact",
|
||||
}}
|
||||
text: "Order Now", href: "/#contact"}}
|
||||
brandName="Chatpat Bites"
|
||||
/>
|
||||
</div>
|
||||
@@ -60,15 +48,12 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboardSplit
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
logoText="Chatpat Bites"
|
||||
description="Hot. Crunchy. Zabardast Taste. Delivered Fresh Every Time."
|
||||
buttons={[
|
||||
{
|
||||
text: "Order Now",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Order Now", href: "/#contact"},
|
||||
]}
|
||||
layoutOrder="default"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/high-angle-american-burgers-with-fries-sauce_23-2148290596.jpg"
|
||||
@@ -85,23 +70,11 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{
|
||||
id: "feature-1",
|
||||
title: "Hot & Fresh Delivery",
|
||||
description: "Our state-of-the-art delivery system ensures your food arrives piping hot and incredibly fresh, every single time.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-time-logo-collection_23-2148939928.jpg",
|
||||
},
|
||||
id: "feature-1", title: "Hot & Fresh Delivery", description: "Our state-of-the-art delivery system ensures your food arrives piping hot and incredibly fresh, every single time.", imageSrc: "http://img.b2bpic.net/free-vector/flat-time-logo-collection_23-2148939928.jpg"},
|
||||
{
|
||||
id: "feature-2",
|
||||
title: "Juicy Zingers & Burgers",
|
||||
description: "Indulge in our signature juicy zingers and gourmet burgers, crafted with premium ingredients for an unforgettable taste.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-delicious-american-hamburger_23-2149637341.jpg",
|
||||
},
|
||||
id: "feature-2", title: "Juicy Zingers & Burgers", description: "Indulge in our signature juicy zingers and gourmet burgers, crafted with premium ingredients for an unforgettable taste.", imageSrc: "http://img.b2bpic.net/free-photo/still-life-delicious-american-hamburger_23-2149637341.jpg"},
|
||||
{
|
||||
id: "feature-3",
|
||||
title: "Budget Friendly Deals",
|
||||
description: "Enjoy the luxury of Chatpat Bites without breaking the bank. Discover our exclusive deals and value-packed offers.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/colorful-seasonal-food-calendar_23-2148105294.jpg",
|
||||
},
|
||||
id: "feature-3", title: "Budget Friendly Deals", description: "Enjoy the luxury of Chatpat Bites without breaking the bank. Discover our exclusive deals and value-packed offers.", imageSrc: "http://img.b2bpic.net/free-vector/colorful-seasonal-food-calendar_23-2148105294.jpg"},
|
||||
]}
|
||||
title="Why Choose Chatpat Bites?"
|
||||
description="Experience the perfect blend of taste, quality, and convenience with every order. We bring the luxury dining experience right to your doorstep."
|
||||
@@ -116,26 +89,11 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
products={[
|
||||
{
|
||||
id: "product-1",
|
||||
name: "Mighty Zinger Burger",
|
||||
price: "$9.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-american-food-with-copy-space_23-2148454883.jpg",
|
||||
imageAlt: "Mighty Zinger Burger",
|
||||
},
|
||||
id: "product-1", name: "Mighty Zinger Burger", price: "$9.99", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-american-food-with-copy-space_23-2148454883.jpg", imageAlt: "Mighty Zinger Burger"},
|
||||
{
|
||||
id: "product-2",
|
||||
name: "Creamy Alfredo Pasta",
|
||||
price: "$12.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/spaghetti-tomato-sauce-grated-cheese_140725-2201.jpg",
|
||||
imageAlt: "Creamy Alfredo Pasta",
|
||||
},
|
||||
id: "product-2", name: "Creamy Alfredo Pasta", price: "$12.99", imageSrc: "http://img.b2bpic.net/free-photo/spaghetti-tomato-sauce-grated-cheese_140725-2201.jpg", imageAlt: "Creamy Alfredo Pasta"},
|
||||
{
|
||||
id: "product-3",
|
||||
name: "Chef's Special Pizza",
|
||||
price: "$15.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-holding-sauce-bottle_23-2148773532.jpg",
|
||||
imageAlt: "Chef's Special Pizza",
|
||||
},
|
||||
id: "product-3", name: "Chef's Special Pizza", price: "$15.99", imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-holding-sauce-bottle_23-2148773532.jpg", imageAlt: "Chef's Special Pizza"},
|
||||
]}
|
||||
title="Our Popular Delicacies"
|
||||
description="Discover the dishes our customers can't get enough of. Each bite is a journey of flavor!"
|
||||
@@ -150,45 +108,20 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Ahmed Khan",
|
||||
handle: "@ahmedfoodie",
|
||||
testimonial: "The Zinger was hot, crunchy & absolutely amazing. 10/10 would order again!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-beautiful-fashionable-woman-stylish-clothes-glasses-standing-against-skyscraper_613910-20972.jpg",
|
||||
},
|
||||
id: "1", name: "Ahmed Khan", handle: "@ahmedfoodie", testimonial: "The Zinger was hot, crunchy & absolutely amazing. 10/10 would order again!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-beautiful-fashionable-woman-stylish-clothes-glasses-standing-against-skyscraper_613910-20972.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Sara Ali",
|
||||
handle: "@saracooks",
|
||||
testimonial: "Best Alfredo Pasta I’ve ever tried! Creamy perfection delivered right to my door.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-attractive-caucasian-smiling-woman_93675-135824.jpg",
|
||||
},
|
||||
id: "2", name: "Sara Ali", handle: "@saracooks", testimonial: "Best Alfredo Pasta I’ve ever tried! Creamy perfection delivered right to my door.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-attractive-caucasian-smiling-woman_93675-135824.jpg"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Omar Hassan",
|
||||
handle: "@omardines",
|
||||
testimonial: "Delivery was on time and the food was incredibly fresh. Chatpat Bites never disappoints.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-glad-young-bearded-man-mustache-wears-denim-shirt-smiles-happily_273609-8698.jpg",
|
||||
},
|
||||
id: "3", name: "Omar Hassan", handle: "@omardines", testimonial: "Delivery was on time and the food was incredibly fresh. Chatpat Bites never disappoints.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-glad-young-bearded-man-mustache-wears-denim-shirt-smiles-happily_273609-8698.jpg"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Fatima Sohail",
|
||||
handle: "@fatima_eats",
|
||||
testimonial: "The budget deal was so worth it, great quantity and superb quality. Highly recommended!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-server-hub-tests-failover-scenarios-using-tablet_482257-117940.jpg",
|
||||
},
|
||||
id: "4", name: "Fatima Sohail", handle: "@fatima_eats", testimonial: "The budget deal was so worth it, great quantity and superb quality. Highly recommended!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-server-hub-tests-failover-scenarios-using-tablet_482257-117940.jpg"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Zain Malik",
|
||||
handle: "@zain_reviews",
|
||||
testimonial: "Highly recommended! Delicious and juicy burgers, truly a premium fast food experience.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/feedback-comment-survey-support-response-bar-word_53876-133787.jpg",
|
||||
},
|
||||
id: "5", name: "Zain Malik", handle: "@zain_reviews", testimonial: "Highly recommended! Delicious and juicy burgers, truly a premium fast food experience.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/feedback-comment-survey-support-response-bar-word_53876-133787.jpg"},
|
||||
]}
|
||||
showRating={true}
|
||||
title="What Our Customers Crave About Us"
|
||||
@@ -203,28 +136,17 @@ export default function LandingPage() {
|
||||
description="Place your order now or get in touch with us for special requests. We're here to serve you the best!"
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Name",
|
||||
required: true,
|
||||
name: "name", type: "text", placeholder: "Your Name", required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Your Email",
|
||||
required: true,
|
||||
name: "email", type: "email", placeholder: "Your Email", required: true,
|
||||
},
|
||||
{
|
||||
name: "phone",
|
||||
type: "tel",
|
||||
placeholder: "Phone Number",
|
||||
required: true,
|
||||
name: "phone", type: "tel", placeholder: "Phone Number", required: true,
|
||||
},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "Your Order / Message",
|
||||
rows: 4,
|
||||
name: "message", placeholder: "Your Order / Message", rows: 4,
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/penne-pasta-with-cream-cheese-sauteed-vegetables_114579-2330.jpg"
|
||||
imageAlt="Chatpat Bites contact image"
|
||||
@@ -238,62 +160,37 @@ export default function LandingPage() {
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
title: "Quick Links", items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "#home",
|
||||
},
|
||||
label: "Home", href: "/"},
|
||||
{
|
||||
label: "Features",
|
||||
href: "#features",
|
||||
},
|
||||
label: "Features", href: "/#features"},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
label: "Our Menu", href: "/our-menu"},
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "#reviews",
|
||||
},
|
||||
label: "Reviews", href: "/#reviews"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Contact", href: "/#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Our Menu",
|
||||
items: [
|
||||
title: "Our Menu", items: [
|
||||
{
|
||||
label: "Popular Items",
|
||||
href: "#menu",
|
||||
},
|
||||
label: "Popular Items", href: "/our-menu"},
|
||||
{
|
||||
label: "Zinger Burgers",
|
||||
href: "#",
|
||||
},
|
||||
label: "Zinger Burgers", href: "/our-menu"},
|
||||
{
|
||||
label: "Pastas",
|
||||
href: "#",
|
||||
},
|
||||
label: "Pastas", href: "/our-menu"},
|
||||
{
|
||||
label: "Pizzas",
|
||||
href: "#",
|
||||
},
|
||||
label: "Pizzas", href: "/our-menu"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
title: "Legal", items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
label: "Terms of Service", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user