Merge version_1 into main #2
@@ -7,7 +7,7 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
@@ -25,37 +25,21 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "/reviews",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="The Chicken Joint"
|
||||
button={{ text: "Order Now", href: "tel:82653938" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Contact"
|
||||
title="Contact Us"
|
||||
description="Phone: 8265 3938. Hours: 10:30 AM – 08:00 PM. Call us to place your order."
|
||||
@@ -71,39 +55,12 @@ export default function LandingPage() {
|
||||
description="Feed your crowd with ease."
|
||||
plans={[
|
||||
{
|
||||
id: "pl1",
|
||||
badge: "Party",
|
||||
price: "150",
|
||||
subtitle: "For 10-15 people",
|
||||
buttons: [
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
features: [
|
||||
"10 Whole Chickens",
|
||||
"Large Chips",
|
||||
"Salads",
|
||||
],
|
||||
id: "pl1", badge: "Party", price: "150", subtitle: "For 10-15 people", buttons: [{ text: "Contact Us", href: "/contact" }],
|
||||
features: ["10 Whole Chickens", "Large Chips", "Salads"],
|
||||
},
|
||||
{
|
||||
id: "pl2",
|
||||
badge: "Event",
|
||||
price: "300",
|
||||
subtitle: "For 20-30 people",
|
||||
buttons: [
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
features: [
|
||||
"20 Whole Chickens",
|
||||
"Extra Large Chips",
|
||||
"Salads",
|
||||
"Drinks",
|
||||
],
|
||||
id: "pl2", badge: "Event", price: "300", subtitle: "For 20-30 people", buttons: [{ text: "Contact Us", href: "/contact" }],
|
||||
features: ["20 Whole Chickens", "Extra Large Chips", "Salads", "Drinks"],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -113,37 +70,17 @@ export default function LandingPage() {
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Menu",
|
||||
items: [
|
||||
{
|
||||
label: "Hot Chicken",
|
||||
href: "/menu#chicken",
|
||||
},
|
||||
{
|
||||
label: "Hot Packs",
|
||||
href: "/menu#packs",
|
||||
},
|
||||
{
|
||||
label: "Grill",
|
||||
href: "/menu#grill",
|
||||
},
|
||||
title: "Menu", items: [
|
||||
{ label: "Hot Chicken", href: "/menu#chicken" },
|
||||
{ label: "Hot Packs", href: "/menu#packs" },
|
||||
{ label: "Grill", href: "/menu#grill" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Restaurant",
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "/reviews",
|
||||
},
|
||||
{
|
||||
label: "Gallery",
|
||||
href: "/gallery",
|
||||
},
|
||||
title: "Restaurant", items: [
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "Reviews", href: "/reviews" },
|
||||
{ label: "Gallery", href: "/gallery" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -7,7 +7,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import TeamCardSix from '@/components/sections/team/TeamCardSix';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function GalleryPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
@@ -25,28 +25,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "/reviews",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="The Chicken Joint"
|
||||
button={{ text: "Order Now", href: "tel:82653938" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -57,30 +43,10 @@ export default function LandingPage() {
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Delicious Meal",
|
||||
price: "Featured",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-nuggets-french-fries-with-sauces_23-2148646683.jpg?_wi=7",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Fresh Selection",
|
||||
price: "Featured",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-nuggets-french-fries-with-sauces_23-2148646683.jpg?_wi=8",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Popular Dish",
|
||||
price: "Featured",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-nuggets-french-fries-with-sauces_23-2148646683.jpg?_wi=9",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Catering Options",
|
||||
price: "Featured",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-nuggets-french-fries-with-sauces_23-2148646683.jpg?_wi=10",
|
||||
},
|
||||
{ id: "p1", name: "Delicious Meal", price: "Featured", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-nuggets-french-fries-with-sauces_23-2148646683.jpg" },
|
||||
{ id: "p2", name: "Fresh Selection", price: "Featured", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-nuggets-french-fries-with-sauces_23-2148646683.jpg" },
|
||||
{ id: "p3", name: "Popular Dish", price: "Featured", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-nuggets-french-fries-with-sauces_23-2148646683.jpg" },
|
||||
{ id: "p4", name: "Catering Options", price: "Featured", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-nuggets-french-fries-with-sauces_23-2148646683.jpg" },
|
||||
]}
|
||||
title="Photo Gallery"
|
||||
description="Take a look at our fresh meals."
|
||||
@@ -96,18 +62,8 @@ export default function LandingPage() {
|
||||
title="Meet the Team"
|
||||
description="The friendly faces behind your favourite meals."
|
||||
members={[
|
||||
{
|
||||
id: "m1",
|
||||
name: "John",
|
||||
role: "Head Chef",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-tasty-dishes_23-2147680639.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
name: "Maria",
|
||||
role: "Server",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-enjoying-taste-healthy-bruschetta-with-her-eyes-closed-kitchen_637285-3126.jpg?_wi=1",
|
||||
},
|
||||
{ id: "m1", name: "John", role: "Head Chef", imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-tasty-dishes_23-2147680639.jpg" },
|
||||
{ id: "m2", name: "Maria", role: "Server", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-enjoying-taste-healthy-bruschetta-with-her-eyes-closed-kitchen_637285-3126.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -116,37 +72,17 @@ export default function LandingPage() {
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Menu",
|
||||
items: [
|
||||
{
|
||||
label: "Hot Chicken",
|
||||
href: "/menu#chicken",
|
||||
},
|
||||
{
|
||||
label: "Hot Packs",
|
||||
href: "/menu#packs",
|
||||
},
|
||||
{
|
||||
label: "Grill",
|
||||
href: "/menu#grill",
|
||||
},
|
||||
title: "Menu", items: [
|
||||
{ label: "Hot Chicken", href: "/menu#chicken" },
|
||||
{ label: "Hot Packs", href: "/menu#packs" },
|
||||
{ label: "Grill", href: "/menu#grill" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Restaurant",
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "/reviews",
|
||||
},
|
||||
{
|
||||
label: "Gallery",
|
||||
href: "/gallery",
|
||||
},
|
||||
title: "Restaurant", items: [
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "Reviews", href: "/reviews" },
|
||||
{ label: "Gallery", href: "/gallery" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -6,7 +6,7 @@ import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function MenuPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
@@ -24,28 +24,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "/reviews",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="The Chicken Joint"
|
||||
button={{ text: "Order Now", href: "tel:82653938" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -56,32 +42,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "m1",
|
||||
label: "Chicken",
|
||||
title: "Hot Chicken",
|
||||
items: [
|
||||
"Whole - 12.90",
|
||||
"Half - 7.50",
|
||||
"Quarter - 4.50",
|
||||
],
|
||||
id: "m1", label: "Chicken", title: "Hot Chicken", items: ["Whole - 12.90", "Half - 7.50", "Quarter - 4.50"],
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
label: "Packs",
|
||||
title: "Hot Packs",
|
||||
items: [
|
||||
"Half Chicken & Chips - 15.50",
|
||||
"Quarter Chicken & Chips - 12.50",
|
||||
],
|
||||
id: "m2", label: "Packs", title: "Hot Packs", items: ["Half Chicken & Chips - 15.50", "Quarter Chicken & Chips - 12.50"],
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
label: "Grill",
|
||||
title: "Grill",
|
||||
items: [
|
||||
"Steak Sandwich Plain - 8.90",
|
||||
"Hamburger Plain - 8.90",
|
||||
],
|
||||
id: "m3", label: "Grill", title: "Grill", items: ["Steak Sandwich Plain - 8.90", "Hamburger Plain - 8.90"],
|
||||
},
|
||||
]}
|
||||
title="Our Menu"
|
||||
@@ -93,37 +60,17 @@ export default function LandingPage() {
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Menu",
|
||||
items: [
|
||||
{
|
||||
label: "Hot Chicken",
|
||||
href: "/menu#chicken",
|
||||
},
|
||||
{
|
||||
label: "Hot Packs",
|
||||
href: "/menu#packs",
|
||||
},
|
||||
{
|
||||
label: "Grill",
|
||||
href: "/menu#grill",
|
||||
},
|
||||
title: "Menu", items: [
|
||||
{ label: "Hot Chicken", href: "/menu#chicken" },
|
||||
{ label: "Hot Packs", href: "/menu#packs" },
|
||||
{ label: "Grill", href: "/menu#grill" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Restaurant",
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "/reviews",
|
||||
},
|
||||
{
|
||||
label: "Gallery",
|
||||
href: "/gallery",
|
||||
},
|
||||
title: "Restaurant", items: [
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "Reviews", href: "/reviews" },
|
||||
{ label: "Gallery", href: "/gallery" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
156
src/app/page.tsx
156
src/app/page.tsx
@@ -29,73 +29,30 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "/reviews",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="The Chicken Joint"
|
||||
button={{ text: "Order Now", href: "tel:82653938" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardGallery
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
title="The Chicken Joint"
|
||||
description="Takeaway and Catering. The Chicken Joint offers takeaway and catering with a wide range of hot chicken, seafood, snacks, and family meals."
|
||||
buttons={[
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
text: "Call 8265 3938",
|
||||
href: "tel:82653938",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "View Menu", href: "/menu" }, { text: "Call 8265 3938", href: "tel:82653938" }]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-nuggets-french-fries-with-sauces_23-2148646683.jpg?_wi=1",
|
||||
imageAlt: "Chicken Meal",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-nuggets-french-fries-with-sauces_23-2148646683.jpg?_wi=2",
|
||||
imageAlt: "Chicken Meal",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-nuggets-french-fries-with-sauces_23-2148646683.jpg?_wi=3",
|
||||
imageAlt: "Chicken Meal",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-nuggets-french-fries-with-sauces_23-2148646683.jpg?_wi=4",
|
||||
imageAlt: "Chicken Meal",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-nuggets-french-fries-with-sauces_23-2148646683.jpg?_wi=5",
|
||||
imageAlt: "Chicken Meal",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-nuggets-french-fries-with-sauces_23-2148646683.jpg?_wi=6",
|
||||
imageAlt: "Chicken Meal",
|
||||
},
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-nuggets-french-fries-with-sauces_23-2148646683.jpg", imageAlt: "Chicken Meal" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-nuggets-french-fries-with-sauces_23-2148646683.jpg", imageAlt: "Chicken Meal" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-nuggets-french-fries-with-sauces_23-2148646683.jpg", imageAlt: "Chicken Meal" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-nuggets-french-fries-with-sauces_23-2148646683.jpg", imageAlt: "Chicken Meal" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-nuggets-french-fries-with-sauces_23-2148646683.jpg", imageAlt: "Chicken Meal" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-nuggets-french-fries-with-sauces_23-2148646683.jpg", imageAlt: "Chicken Meal" },
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
@@ -106,21 +63,9 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Visit Us"
|
||||
metrics={[
|
||||
{
|
||||
icon: Clock,
|
||||
label: "Opening Hours",
|
||||
value: "10:30 AM – 08:00 PM",
|
||||
},
|
||||
{
|
||||
icon: Phone,
|
||||
label: "Call Us",
|
||||
value: "8265 3938",
|
||||
},
|
||||
{
|
||||
icon: MapPin,
|
||||
label: "Location",
|
||||
value: "Visit on Maps",
|
||||
},
|
||||
{ icon: Clock, label: "Opening Hours", value: "10:30 AM – 08:00 PM" },
|
||||
{ icon: Phone, label: "Call Us", value: "8265 3938" },
|
||||
{ icon: MapPin, label: "Location", value: "Visit on Maps" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -132,16 +77,8 @@ export default function LandingPage() {
|
||||
sideTitle="Common Questions"
|
||||
sideDescription="Everything you need to know about our takeaway menu and services."
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Do you offer delivery?",
|
||||
content: "Currently, we offer takeaway and in-store pick-up only.",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Can I pre-order for events?",
|
||||
content: "Absolutely! We specialize in catering for small and large gatherings.",
|
||||
},
|
||||
{ id: "f1", title: "Do you offer delivery?", content: "Currently, we offer takeaway and in-store pick-up only." },
|
||||
{ id: "f2", title: "Can I pre-order for events?", content: "Absolutely! We specialize in catering for small and large gatherings." },
|
||||
]}
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
@@ -153,29 +90,16 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Join Our Community"
|
||||
description="Thousands of local diners trust us for their daily meals."
|
||||
names={[
|
||||
"Local Foodie Blog",
|
||||
"City Eats",
|
||||
"Family Magazine",
|
||||
"Community News",
|
||||
"Dine In Guide",
|
||||
]}
|
||||
names={["Local Foodie Blog", "City Eats", "Family Magazine", "Community News", "Dine In Guide"]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
text="Ready to eat? Place your order now by giving us a call."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now",
|
||||
href: "tel:82653938",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Call Now", href: "tel:82653938" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -183,37 +107,17 @@ export default function LandingPage() {
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Menu",
|
||||
items: [
|
||||
{
|
||||
label: "Hot Chicken",
|
||||
href: "/menu#chicken",
|
||||
},
|
||||
{
|
||||
label: "Hot Packs",
|
||||
href: "/menu#packs",
|
||||
},
|
||||
{
|
||||
label: "Grill",
|
||||
href: "/menu#grill",
|
||||
},
|
||||
title: "Menu", items: [
|
||||
{ label: "Hot Chicken", href: "/menu#chicken" },
|
||||
{ label: "Hot Packs", href: "/menu#packs" },
|
||||
{ label: "Grill", href: "/menu#grill" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Restaurant",
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "/reviews",
|
||||
},
|
||||
{
|
||||
label: "Gallery",
|
||||
href: "/gallery",
|
||||
},
|
||||
title: "Restaurant", items: [
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "Reviews", href: "/reviews" },
|
||||
{ label: "Gallery", href: "/gallery" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -7,7 +7,7 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ReviewsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
@@ -25,28 +25,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "/reviews",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="The Chicken Joint"
|
||||
button={{ text: "Order Now", href: "tel:82653938" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -56,41 +42,11 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Sarah J.",
|
||||
handle: "@sarahj",
|
||||
testimonial: "Best chicken in town, very friendly!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-tasty-dishes_23-2147680639.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Mark R.",
|
||||
handle: "@markr",
|
||||
testimonial: "Great family packs, always hot.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-enjoying-taste-healthy-bruschetta-with-her-eyes-closed-kitchen_637285-3126.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Emily P.",
|
||||
handle: "@emilyp",
|
||||
testimonial: "Fast service and great prices.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-flat-autumn-patterns-collection_23-2149112930.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "David W.",
|
||||
handle: "@davidw",
|
||||
testimonial: "The salads are always fresh.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-women-toasting_23-2147680737.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Chloe B.",
|
||||
handle: "@chloeb",
|
||||
testimonial: "Everything is cooked to perfection.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-tasty-dishes_23-2147680639.jpg?_wi=3",
|
||||
},
|
||||
{ id: "t1", name: "Sarah J.", handle: "@sarahj", testimonial: "Best chicken in town, very friendly!", imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-tasty-dishes_23-2147680639.jpg" },
|
||||
{ id: "t2", name: "Mark R.", handle: "@markr", testimonial: "Great family packs, always hot.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-enjoying-taste-healthy-bruschetta-with-her-eyes-closed-kitchen_637285-3126.jpg" },
|
||||
{ id: "t3", name: "Emily P.", handle: "@emilyp", testimonial: "Fast service and great prices.", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-flat-autumn-patterns-collection_23-2149112930.jpg" },
|
||||
{ id: "t4", name: "David W.", handle: "@davidw", testimonial: "The salads are always fresh.", imageSrc: "http://img.b2bpic.net/free-photo/two-women-toasting_23-2147680737.jpg" },
|
||||
{ id: "t5", name: "Chloe B.", handle: "@chloeb", testimonial: "Everything is cooked to perfection.", imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-tasty-dishes_23-2147680639.jpg" },
|
||||
]}
|
||||
title="Customer Reviews"
|
||||
description="What our customers say about us."
|
||||
@@ -105,26 +61,8 @@ export default function LandingPage() {
|
||||
title="Latest News"
|
||||
description="Updates from our kitchen."
|
||||
blogs={[
|
||||
{
|
||||
id: "b1",
|
||||
category: "Updates",
|
||||
title: "New menu items added!",
|
||||
excerpt: "Check out our latest spicy chicken range.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-nuggets-french-fries-with-sauces_23-2148646683.jpg?_wi=11",
|
||||
authorName: "Admin",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/friends-eating-tasty-dishes_23-2147680639.jpg",
|
||||
date: "2024-10-01",
|
||||
},
|
||||
{
|
||||
id: "b2",
|
||||
category: "Community",
|
||||
title: "Summer catering is open",
|
||||
excerpt: "Book your slots for the upcoming season.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-nuggets-french-fries-with-sauces_23-2148646683.jpg?_wi=12",
|
||||
authorName: "Admin",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/friends-eating-tasty-dishes_23-2147680639.jpg",
|
||||
date: "2024-10-05",
|
||||
},
|
||||
{ id: "b1", category: "Updates", title: "New menu items added!", excerpt: "Check out our latest spicy chicken range.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-nuggets-french-fries-with-sauces_23-2148646683.jpg", authorName: "Admin", authorAvatar: "http://img.b2bpic.net/free-photo/friends-eating-tasty-dishes_23-2147680639.jpg", date: "2024-10-01" },
|
||||
{ id: "b2", category: "Community", title: "Summer catering is open", excerpt: "Book your slots for the upcoming season.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-nuggets-french-fries-with-sauces_23-2148646683.jpg", authorName: "Admin", authorAvatar: "http://img.b2bpic.net/free-photo/friends-eating-tasty-dishes_23-2147680639.jpg", date: "2024-10-05" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -133,37 +71,17 @@ export default function LandingPage() {
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Menu",
|
||||
items: [
|
||||
{
|
||||
label: "Hot Chicken",
|
||||
href: "/menu#chicken",
|
||||
},
|
||||
{
|
||||
label: "Hot Packs",
|
||||
href: "/menu#packs",
|
||||
},
|
||||
{
|
||||
label: "Grill",
|
||||
href: "/menu#grill",
|
||||
},
|
||||
title: "Menu", items: [
|
||||
{ label: "Hot Chicken", href: "/menu#chicken" },
|
||||
{ label: "Hot Packs", href: "/menu#packs" },
|
||||
{ label: "Grill", href: "/menu#grill" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Restaurant",
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "/reviews",
|
||||
},
|
||||
{
|
||||
label: "Gallery",
|
||||
href: "/gallery",
|
||||
},
|
||||
title: "Restaurant", items: [
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "Reviews", href: "/reviews" },
|
||||
{ label: "Gallery", href: "/gallery" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user