Merge version_1 into main #2
@@ -7,7 +7,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
|
||||
import TeamCardTen from '@/components/sections/team/TeamCardTen';
|
||||
import TextAbout from '@/components/sections/about/TextAbout';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
@@ -25,24 +25,13 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Menu", id: "/services" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Kinni Cafe"
|
||||
button={{ text: "Order Online", href: "/services" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -50,12 +39,7 @@ export default function LandingPage() {
|
||||
<TextAbout
|
||||
useInvertedBackground={false}
|
||||
title="Family-Style Comfort, Community-Focused."
|
||||
buttons={[
|
||||
{
|
||||
text: "Visit Us",
|
||||
href: "/contact",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Visit Us", href: "/contact" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -65,24 +49,12 @@ export default function LandingPage() {
|
||||
title="Meet Our Team"
|
||||
tag="Friendly Faces"
|
||||
membersAnimation="slide-up"
|
||||
members={[
|
||||
{
|
||||
id: "1",
|
||||
name: "John Doe",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-girl-with-curly-hair-drinking-coffee-writing-notes_7502-9175.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Jane Smith",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-enjoying-food-restaurant_23-2149269188.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Bob Brown",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-multi-generation-family-toasting-while-having-lunch-together-dining-table_637285-5510.jpg",
|
||||
},
|
||||
]}
|
||||
memberVariant="card"
|
||||
members={[
|
||||
{ id: "1", name: "John Doe", imageSrc: "http://img.b2bpic.net/free-photo/smiling-girl-with-curly-hair-drinking-coffee-writing-notes_7502-9175.jpg" },
|
||||
{ id: "2", name: "Jane Smith", imageSrc: "http://img.b2bpic.net/free-photo/couple-enjoying-food-restaurant_23-2149269188.jpg" },
|
||||
{ id: "3", name: "Bob Brown", imageSrc: "http://img.b2bpic.net/free-photo/happy-multi-generation-family-toasting-while-having-lunch-together-dining-table_637285-5510.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -90,40 +62,12 @@ export default function LandingPage() {
|
||||
<FooterBaseCard
|
||||
logoText="Kinni Cafe"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigation",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "Call Us",
|
||||
href: "tel:+17154259440",
|
||||
},
|
||||
{
|
||||
label: "Visit Us",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Menu", href: "/services" }] },
|
||||
{ title: "Contact", items: [{ label: "Call Us", href: "tel:+17154259440" }, { label: "Visit Us", href: "/contact" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -8,7 +8,7 @@ import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import { Award, Coffee, Star } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
@@ -26,33 +26,20 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Menu", id: "/services" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Kinni Cafe"
|
||||
button={{ text: "Order Online", href: "/services" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Visit Us"
|
||||
title="Come Say Hi!"
|
||||
description="We are open daily until 3 PM. Come in for coffee and good food."
|
||||
@@ -65,31 +52,13 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "10+ Years",
|
||||
title: "Serving River Falls",
|
||||
description: "Trusted community diner.",
|
||||
icon: Award,
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "4.5+",
|
||||
title: "Star Rating",
|
||||
description: "Loved by locals.",
|
||||
icon: Star,
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "Daily",
|
||||
title: "Fresh Service",
|
||||
description: "Open until 3 PM.",
|
||||
icon: Coffee,
|
||||
},
|
||||
]}
|
||||
title="Dining Stats"
|
||||
description="Quality and consistency every day."
|
||||
metrics={[
|
||||
{ id: "1", value: "10+ Years", title: "Serving River Falls", description: "Trusted community diner.", icon: Award },
|
||||
{ id: "2", value: "4.5+", title: "Star Rating", description: "Loved by locals.", icon: Star },
|
||||
{ id: "3", value: "Daily", title: "Fresh Service", description: "Open until 3 PM.", icon: Coffee },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -97,40 +66,12 @@ export default function LandingPage() {
|
||||
<FooterBaseCard
|
||||
logoText="Kinni Cafe"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigation",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "Call Us",
|
||||
href: "tel:+17154259440",
|
||||
},
|
||||
{
|
||||
label: "Visit Us",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Menu", href: "/services" }] },
|
||||
{ title: "Contact", items: [{ label: "Call Us", href: "tel:+17154259440" }, { label: "Visit Us", href: "/contact" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
299
src/app/page.tsx
299
src/app/page.tsx
@@ -29,133 +29,32 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Menu", id: "/services" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Kinni Cafe"
|
||||
button={{ text: "Order Online", href: "/services" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitTestimonial
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
title="Your Hometown Spot for Comfort Food & Smiles"
|
||||
description="Delicious breakfast and lunch served fresh daily with friendly, fast service."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Sarah J.",
|
||||
handle: "@riverfalls",
|
||||
testimonial: "Delicious food and friendly staff… feels like home.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/table-with-pie-thanksgiving-day_23-2148632532.jpg?_wi=1",
|
||||
imageAlt: "cozy family diner breakfast atmosphere",
|
||||
},
|
||||
{
|
||||
name: "Mark D.",
|
||||
handle: "@local",
|
||||
testimonial: "Huge portions and great value!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-female-with-broad-pleasant-smile-rests-sidewalk-cafe-alone-enjoys-good-rest-summer-vacation_273609-3491.jpg?_wi=1",
|
||||
imageAlt: "cozy family diner breakfast atmosphere",
|
||||
},
|
||||
{
|
||||
name: "Linda M.",
|
||||
handle: "@breakfast",
|
||||
testimonial: "Fast service even when busy.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-enjoying-conversation-with-her-boyfriend-breakfast-dining-table_637285-12581.jpg?_wi=1",
|
||||
imageAlt: "cozy family diner breakfast atmosphere",
|
||||
},
|
||||
{
|
||||
name: "James R.",
|
||||
handle: "@regular",
|
||||
testimonial: "Perfect breakfast spot in town.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-african-american-family-talking-thanksgiving-meal-dining-room_637285-12989.jpg?_wi=1",
|
||||
imageAlt: "cozy family diner breakfast atmosphere",
|
||||
},
|
||||
{
|
||||
name: "Emily P.",
|
||||
handle: "@visitor",
|
||||
testimonial: "The pancakes are life-changing!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-having-coffee-restaurant_23-2148172652.jpg?_wi=1",
|
||||
imageAlt: "cozy family diner breakfast atmosphere",
|
||||
},
|
||||
{ name: "Sarah J.", handle: "@riverfalls", testimonial: "Delicious food and friendly staff… feels like home.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/table-with-pie-thanksgiving-day_23-2148632532.jpg" },
|
||||
{ name: "Mark D.", handle: "@local", testimonial: "Huge portions and great value!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-female-with-broad-pleasant-smile-rests-sidewalk-cafe-alone-enjoys-good-rest-summer-vacation_273609-3491.jpg" },
|
||||
{ name: "Linda M.", handle: "@breakfast", testimonial: "Fast service even when busy.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-enjoying-conversation-with-her-boyfriend-breakfast-dining-table_637285-12581.jpg" },
|
||||
{ name: "James R.", handle: "@regular", testimonial: "Perfect breakfast spot in town.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-african-american-family-talking-thanksgiving-meal-dining-room_637285-12989.jpg" },
|
||||
{ name: "Emily P.", handle: "@visitor", testimonial: "The pancakes are life-changing!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/girl-having-coffee-restaurant_23-2148172652.jpg" },
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
text: "Visit Us Today",
|
||||
href: "/contact",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/table-with-pie-thanksgiving-day_23-2148632532.jpg?_wi=2"
|
||||
buttons={[{ text: "View Menu", href: "/services" }, { text: "Visit Us Today", href: "/contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/table-with-pie-thanksgiving-day_23-2148632532.jpg"
|
||||
mediaAnimation="blur-reveal"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-high-protein-meal-baked-chicken_23-2149098843.jpg",
|
||||
alt: "happy patron",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/cozy-winter-scenes-with-family_23-2149187657.jpg",
|
||||
alt: "happy family",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/thanksgiving-dinner-assortment-table_23-2149055458.jpg",
|
||||
alt: "satisfied customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-hand-holding-food-bowl_23-2149152880.jpg",
|
||||
alt: "regular diner",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-children-eating-cookies-together-christmas-day_23-2148738678.jpg",
|
||||
alt: "breakfast guest",
|
||||
},
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Home Cooked Classics",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Fresh Ingredients",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Family Atmosphere",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Daily Specials",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Locally Owned",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -165,21 +64,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
icon: Star,
|
||||
title: "4.5-Star Local Favorite",
|
||||
description: "Highly rated by neighbors and visitors alike.",
|
||||
},
|
||||
{
|
||||
icon: Coffee,
|
||||
title: "All-Day Breakfast",
|
||||
description: "Classics served fresh whenever you want.",
|
||||
},
|
||||
{
|
||||
icon: Users,
|
||||
title: "Family Friendly",
|
||||
description: "A welcoming atmosphere for all generations.",
|
||||
},
|
||||
{ icon: Star, title: "4.5-Star Local Favorite", description: "Highly rated by neighbors and visitors alike." },
|
||||
{ icon: Coffee, title: "All-Day Breakfast", description: "Classics served fresh whenever you want." },
|
||||
{ icon: Users, title: "Family Friendly", description: "A welcoming atmosphere for all generations." },
|
||||
]}
|
||||
title="Why Choose Kinni Cafe?"
|
||||
description="We are proud to be the heart of River Falls breakfast & lunch culture."
|
||||
@@ -193,42 +80,12 @@ export default function LandingPage() {
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Fluffy Pancakes",
|
||||
price: "$12",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/big-family-have-christmas-breakfast-together_132075-14054.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Country Skillet",
|
||||
price: "$15",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-meal-with-chicken_23-2149179620.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Chicken Dumpling Soup",
|
||||
price: "$10",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/thanksgiving-celebration-with-traditional-elements_23-2151885350.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Classic Burger",
|
||||
price: "$14",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/table-with-food-thanksgiving-day-celebration_23-2148632535.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "French Toast",
|
||||
price: "$12",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-sitting-table_23-2149706699.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Omelette Platter",
|
||||
price: "$13",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/decoration-bean-old-closeup-aroma_1203-5601.jpg",
|
||||
},
|
||||
{ id: "1", name: "Fluffy Pancakes", price: "$12", imageSrc: "http://img.b2bpic.net/free-photo/big-family-have-christmas-breakfast-together_132075-14054.jpg" },
|
||||
{ id: "2", name: "Country Skillet", price: "$15", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-meal-with-chicken_23-2149179620.jpg" },
|
||||
{ id: "3", name: "Chicken Dumpling Soup", price: "$10", imageSrc: "http://img.b2bpic.net/free-photo/thanksgiving-celebration-with-traditional-elements_23-2151885350.jpg" },
|
||||
{ id: "4", name: "Classic Burger", price: "$14", imageSrc: "http://img.b2bpic.net/free-photo/table-with-food-thanksgiving-day-celebration_23-2148632535.jpg" },
|
||||
{ id: "5", name: "French Toast", price: "$12", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-sitting-table_23-2149706699.jpg" },
|
||||
{ id: "6", name: "Omelette Platter", price: "$13", imageSrc: "http://img.b2bpic.net/free-photo/decoration-bean-old-closeup-aroma_1203-5601.jpg" },
|
||||
]}
|
||||
title="Local Favorites"
|
||||
description="Freshly made classics that bring our regulars back daily."
|
||||
@@ -239,42 +96,13 @@ export default function LandingPage() {
|
||||
<TestimonialCardSix
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
animationType="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah",
|
||||
handle: "@riverfalls",
|
||||
testimonial: "Feels like home.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-female-with-broad-pleasant-smile-rests-sidewalk-cafe-alone-enjoys-good-rest-summer-vacation_273609-3491.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Mark",
|
||||
handle: "@local",
|
||||
testimonial: "Great value!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-enjoying-conversation-with-her-boyfriend-breakfast-dining-table_637285-12581.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Linda",
|
||||
handle: "@breakfast",
|
||||
testimonial: "Fast and friendly.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-african-american-family-talking-thanksgiving-meal-dining-room_637285-12989.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "James",
|
||||
handle: "@regular",
|
||||
testimonial: "Always consistent.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-having-coffee-restaurant_23-2148172652.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Emily",
|
||||
handle: "@visitor",
|
||||
testimonial: "Worth the wait!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-happy-friends-having-fun-while-eating-cake-cafe_637285-7896.jpg",
|
||||
},
|
||||
{ id: "1", name: "Sarah", handle: "@riverfalls", testimonial: "Feels like home.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-female-with-broad-pleasant-smile-rests-sidewalk-cafe-alone-enjoys-good-rest-summer-vacation_273609-3491.jpg" },
|
||||
{ id: "2", name: "Mark", handle: "@local", testimonial: "Great value!", imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-enjoying-conversation-with-her-boyfriend-breakfast-dining-table_637285-12581.jpg" },
|
||||
{ id: "3", name: "Linda", handle: "@breakfast", testimonial: "Fast and friendly.", imageSrc: "http://img.b2bpic.net/free-photo/happy-african-american-family-talking-thanksgiving-meal-dining-room_637285-12989.jpg" },
|
||||
{ id: "4", name: "James", handle: "@regular", testimonial: "Always consistent.", imageSrc: "http://img.b2bpic.net/free-photo/girl-having-coffee-restaurant_23-2148172652.jpg" },
|
||||
{ id: "5", name: "Emily", handle: "@visitor", testimonial: "Worth the wait!", imageSrc: "http://img.b2bpic.net/free-photo/group-happy-friends-having-fun-while-eating-cake-cafe_637285-7896.jpg" },
|
||||
]}
|
||||
title="Loved By Our Community"
|
||||
description="What our guests say about Kinni Cafe."
|
||||
@@ -289,41 +117,8 @@ export default function LandingPage() {
|
||||
title="Our Daily Specials"
|
||||
description="Fresh and affordable choices for every appetite."
|
||||
plans={[
|
||||
{
|
||||
id: "p1",
|
||||
tag: "Early Bird",
|
||||
price: "$9",
|
||||
period: "Morning",
|
||||
description: "Start your day right with a classic breakfast combo.",
|
||||
button: {
|
||||
text: "Order Now",
|
||||
href: "/services",
|
||||
},
|
||||
featuresTitle: "Includes:",
|
||||
features: [
|
||||
"Two eggs any style",
|
||||
"Choice of bacon or sausage",
|
||||
"Toast or hashbrowns",
|
||||
"Bottomless coffee",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
tag: "Lunch Rush",
|
||||
price: "$12",
|
||||
period: "Midday",
|
||||
description: "Quick, delicious, and filling lunch options.",
|
||||
button: {
|
||||
text: "Order Now",
|
||||
href: "/services",
|
||||
},
|
||||
featuresTitle: "Includes:",
|
||||
features: [
|
||||
"Hand-pressed beef burger",
|
||||
"Choice of fresh side",
|
||||
"Soft drink included",
|
||||
],
|
||||
},
|
||||
{ id: "p1", tag: "Early Bird", price: "$9", period: "Morning", description: "Start your day right with a classic breakfast combo.", button: { text: "Order Now", href: "/services" }, featuresTitle: "Includes:", features: ["Two eggs any style", "Choice of bacon or sausage", "Toast or hashbrowns", "Bottomless coffee"] },
|
||||
{ id: "p2", tag: "Lunch Rush", price: "$12", period: "Midday", description: "Quick, delicious, and filling lunch options.", button: { text: "Order Now", href: "/services" }, featuresTitle: "Includes:", features: ["Hand-pressed beef burger", "Choice of fresh side", "Soft drink included"] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -332,40 +127,12 @@ export default function LandingPage() {
|
||||
<FooterBaseCard
|
||||
logoText="Kinni Cafe"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigation",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "Call Us",
|
||||
href: "tel:+17154259440",
|
||||
},
|
||||
{
|
||||
label: "Visit Us",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Menu", href: "/services" }] },
|
||||
{ title: "Contact", items: [{ label: "Call Us", href: "tel:+17154259440" }, { label: "Visit Us", href: "/contact" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -7,7 +7,7 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ServicesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
@@ -25,24 +25,13 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Menu", id: "/services" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Kinni Cafe"
|
||||
button={{ text: "Order Online", href: "/services" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -50,26 +39,14 @@ export default function LandingPage() {
|
||||
<FaqDouble
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "What do you serve?",
|
||||
content: "All-day breakfast and classic American lunch.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Do you offer delivery?",
|
||||
content: "We do not offer delivery, but takeaway is quick and easy!",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Is it family friendly?",
|
||||
content: "Yes, we welcome guests of all ages.",
|
||||
},
|
||||
{ id: "1", title: "What do you serve?", content: "All-day breakfast and classic American lunch." },
|
||||
{ id: "2", title: "Do you offer delivery?", content: "We do not offer delivery, but takeaway is quick and easy!" },
|
||||
{ id: "3", title: "Is it family friendly?", content: "Yes, we welcome guests of all ages." },
|
||||
]}
|
||||
title="Menu Highlights & Services"
|
||||
description="Everything you need to know about dining at Kinni Cafe."
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -78,42 +55,12 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
plans={[
|
||||
{
|
||||
id: "basic",
|
||||
price: "$10-$15",
|
||||
name: "Breakfast Specials",
|
||||
buttons: [
|
||||
{
|
||||
text: "See Full Menu",
|
||||
href: "/services",
|
||||
},
|
||||
],
|
||||
features: [
|
||||
"Pancakes",
|
||||
"Omelettes",
|
||||
"Coffee",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "pro",
|
||||
price: "$12-$20",
|
||||
name: "Lunch Classics",
|
||||
buttons: [
|
||||
{
|
||||
text: "See Full Menu",
|
||||
href: "/services",
|
||||
},
|
||||
],
|
||||
features: [
|
||||
"Burgers",
|
||||
"Homemade Soups",
|
||||
"Wraps",
|
||||
],
|
||||
},
|
||||
]}
|
||||
title="Budget-Friendly Dining"
|
||||
description="Great portions, great prices."
|
||||
plans={[
|
||||
{ id: "basic", price: "$10-$15", name: "Breakfast Specials", buttons: [{ text: "See Full Menu", href: "/services" }], features: ["Pancakes", "Omelettes", "Coffee"] },
|
||||
{ id: "pro", price: "$12-$20", name: "Lunch Classics", buttons: [{ text: "See Full Menu", href: "/services" }], features: ["Burgers", "Homemade Soups", "Wraps"] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -121,40 +68,12 @@ export default function LandingPage() {
|
||||
<FooterBaseCard
|
||||
logoText="Kinni Cafe"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigation",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "Call Us",
|
||||
href: "tel:+17154259440",
|
||||
},
|
||||
{
|
||||
label: "Visit Us",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Menu", href: "/services" }] },
|
||||
{ title: "Contact", items: [{ label: "Call Us", href: "tel:+17154259440" }, { label: "Visit Us", href: "/contact" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user