Merge version_1 into main #2
@@ -7,7 +7,7 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import TeamCardFive from '@/components/sections/team/TeamCardFive';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AboutPage() {
|
||||
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: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "/reviews",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Coffee Shed"
|
||||
button={{ text: "Order Online", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -58,18 +44,8 @@ export default function LandingPage() {
|
||||
title="Meet Our Team"
|
||||
description="The friendly faces behind your morning brew."
|
||||
team={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Sarah",
|
||||
role: "Head Barista",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-high-angle-shot-cappuccino-blue-wooden-surface_181624-41113.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Mike",
|
||||
role: "Roaster",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bar-still-life-with-cake_23-2147821284.jpg?_wi=3",
|
||||
},
|
||||
{ id: "t1", name: "Sarah", role: "Head Barista", imageSrc: "http://img.b2bpic.net/free-photo/vertical-high-angle-shot-cappuccino-blue-wooden-surface_181624-41113.jpg" },
|
||||
{ id: "t2", name: "Mike", role: "Roaster", imageSrc: "http://img.b2bpic.net/free-photo/bar-still-life-with-cake_23-2147821284.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -77,71 +53,17 @@ export default function LandingPage() {
|
||||
<div id="about" data-section="about">
|
||||
<InlineImageSplitTextAbout
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "Our History",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Learn More",
|
||||
href: "#",
|
||||
},
|
||||
]}
|
||||
heading={[{ type: "text", content: "Our History" }]}
|
||||
buttons={[{ text: "Learn More", href: "#" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Sitemap",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "/reviews",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Hours",
|
||||
items: [
|
||||
{
|
||||
label: "Daily: 7 AM - 5 PM",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Sitemap", items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, { label: "About", href: "/about" }, { label: "Reviews", href: "/reviews" }, { label: "Contact", href: "/contact" }] },
|
||||
{ title: "Hours", items: [{ label: "Daily: 7 AM - 5 PM", href: "#" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||
]}
|
||||
bottomLeftText="© 2024 Coffee Shed. All Rights Reserved."
|
||||
bottomRightText="Built with love for the neighborhood."
|
||||
|
||||
@@ -7,7 +7,7 @@ import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwe
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
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: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "/reviews",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Coffee Shed"
|
||||
button={{ text: "Order Online", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -56,25 +42,11 @@ export default function LandingPage() {
|
||||
title="Stop by or Call Ahead"
|
||||
description="Have a large order or just want to say hi? Contact us today."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Name",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "phone",
|
||||
type: "tel",
|
||||
placeholder: "Your Phone Number",
|
||||
required: true,
|
||||
},
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "phone", type: "tel", placeholder: "Your Phone Number", required: true },
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "Your message",
|
||||
required: true,
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/view-beautiful-woman-looking-away-with-coffee_197531-33702.jpg?_wi=2"
|
||||
textarea={{ name: "message", placeholder: "Your message", required: true }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/view-beautiful-woman-looking-away-with-coffee_197531-33702.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -86,22 +58,8 @@ export default function LandingPage() {
|
||||
title="Get in Touch"
|
||||
description="We are here for you."
|
||||
features={[
|
||||
{
|
||||
id: "c1",
|
||||
title: "Visit Us",
|
||||
descriptions: [
|
||||
"123 Coffee St, City",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-beautiful-woman-looking-away-with-coffee_197531-33702.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "c2",
|
||||
title: "Email Us",
|
||||
descriptions: [
|
||||
"hello@coffeeshed.com",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-high-angle-shot-cappuccino-blue-wooden-surface_181624-41113.jpg?_wi=5",
|
||||
},
|
||||
{ id: "c1", title: "Visit Us", descriptions: ["123 Coffee St, City"], imageSrc: "http://img.b2bpic.net/free-photo/view-beautiful-woman-looking-away-with-coffee_197531-33702.jpg" },
|
||||
{ id: "c2", title: "Email Us", descriptions: ["hello@coffeeshed.com"], imageSrc: "http://img.b2bpic.net/free-photo/vertical-high-angle-shot-cappuccino-blue-wooden-surface_181624-41113.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -109,53 +67,9 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Sitemap",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "/reviews",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Hours",
|
||||
items: [
|
||||
{
|
||||
label: "Daily: 7 AM - 5 PM",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Sitemap", items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, { label: "About", href: "/about" }, { label: "Reviews", href: "/reviews" }, { label: "Contact", href: "/contact" }] },
|
||||
{ title: "Hours", items: [{ label: "Daily: 7 AM - 5 PM", href: "#" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||
]}
|
||||
bottomLeftText="© 2024 Coffee Shed. All Rights Reserved."
|
||||
bottomRightText="Built with love for the neighborhood."
|
||||
|
||||
@@ -8,7 +8,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import { Cake, Coffee, Egg } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function MenuPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
@@ -26,28 +26,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "/reviews",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Coffee Shed"
|
||||
button={{ text: "Order Online", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -57,21 +43,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
icon: Coffee,
|
||||
title: "Coffee & Drinks",
|
||||
description: "Lattes, cold brew, signature seasonal drinks.",
|
||||
},
|
||||
{
|
||||
icon: Egg,
|
||||
title: "Breakfast",
|
||||
description: "Burritos, egg sandwiches, daily specials.",
|
||||
},
|
||||
{
|
||||
icon: Cake,
|
||||
title: "Bakery",
|
||||
description: "Homemade rolls, muffins, and sweet treats.",
|
||||
},
|
||||
{ icon: Coffee, title: "Coffee & Drinks", description: "Lattes, cold brew, signature seasonal drinks." },
|
||||
{ icon: Egg, title: "Breakfast", description: "Burritos, egg sandwiches, daily specials." },
|
||||
{ icon: Cake, title: "Bakery", description: "Homemade rolls, muffins, and sweet treats." },
|
||||
]}
|
||||
title="Our Menu"
|
||||
description="Fresh, locally sourced, and affordable."
|
||||
@@ -87,20 +61,8 @@ export default function LandingPage() {
|
||||
title="Full Menu"
|
||||
description="Explore our full range of beverages and food."
|
||||
products={[
|
||||
{
|
||||
id: "m1",
|
||||
name: "House Blend",
|
||||
price: "$3.00",
|
||||
variant: "Drink",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-high-angle-shot-cappuccino-blue-wooden-surface_181624-41113.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
name: "Breakfast Sandwich",
|
||||
price: "$6.00",
|
||||
variant: "Food",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/aroma-background-love-house-taste_1232-3951.jpg?_wi=5",
|
||||
},
|
||||
{ id: "m1", name: "House Blend", price: "$3.00", variant: "Drink", imageSrc: "http://img.b2bpic.net/free-photo/vertical-high-angle-shot-cappuccino-blue-wooden-surface_181624-41113.jpg" },
|
||||
{ id: "m2", name: "Breakfast Sandwich", price: "$6.00", variant: "Food", imageSrc: "http://img.b2bpic.net/free-photo/aroma-background-love-house-taste_1232-3951.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -108,53 +70,9 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Sitemap",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "/reviews",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Hours",
|
||||
items: [
|
||||
{
|
||||
label: "Daily: 7 AM - 5 PM",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Sitemap", items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, { label: "About", href: "/about" }, { label: "Reviews", href: "/reviews" }, { label: "Contact", href: "/contact" }] },
|
||||
{ title: "Hours", items: [{ label: "Daily: 7 AM - 5 PM", href: "#" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||
]}
|
||||
bottomLeftText="© 2024 Coffee Shed. All Rights Reserved."
|
||||
bottomRightText="Built with love for the neighborhood."
|
||||
|
||||
277
src/app/page.tsx
277
src/app/page.tsx
@@ -28,91 +28,39 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "/reviews",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Coffee Shed"
|
||||
button={{ text: "Order Online", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
title="Top-Rated Local Coffee Shop with Homemade Favorites"
|
||||
description="4.9★ rated • Affordable • Cozy atmosphere. Enjoy high-quality coffee and homemade treats in the heart of your local community."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/vertical-high-angle-shot-cappuccino-blue-wooden-surface_181624-41113.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/vertical-high-angle-shot-cappuccino-blue-wooden-surface_181624-41113.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/vertical-high-angle-shot-cappuccino-blue-wooden-surface_181624-41113.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/vertical-high-angle-shot-cappuccino-blue-wooden-surface_181624-41113.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/vertical-high-angle-shot-cappuccino-blue-wooden-surface_181624-41113.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/vertical-high-angle-shot-cappuccino-blue-wooden-surface_181624-41113.jpg", alt: "Customer" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/vertical-high-angle-shot-cappuccino-blue-wooden-surface_181624-41113.jpg", alt: "Customer" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/vertical-high-angle-shot-cappuccino-blue-wooden-surface_181624-41113.jpg", alt: "Customer" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/vertical-high-angle-shot-cappuccino-blue-wooden-surface_181624-41113.jpg", alt: "Customer" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/vertical-high-angle-shot-cappuccino-blue-wooden-surface_181624-41113.jpg", alt: "Customer" },
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now",
|
||||
href: "tel:5550123",
|
||||
},
|
||||
{
|
||||
text: "Get Directions",
|
||||
href: "#",
|
||||
},
|
||||
{ text: "Call Now", href: "tel:5550123" },
|
||||
{ text: "Get Directions", href: "#" },
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Locally Roasted",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Family Owned",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Fresh Pastries Daily",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Cozy Atmosphere",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Pet Friendly",
|
||||
},
|
||||
{ type: "text", text: "Locally Roasted" },
|
||||
{ type: "text", text: "Family Owned" },
|
||||
{ type: "text", text: "Fresh Pastries Daily" },
|
||||
{ type: "text", text: "Cozy Atmosphere" },
|
||||
{ type: "text", text: "Pet Friendly" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -121,15 +69,7 @@ export default function LandingPage() {
|
||||
<SocialProofOne
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"Google Maps",
|
||||
"Yelp",
|
||||
"TripAdvisor",
|
||||
"Local Guides",
|
||||
"Community Reviews",
|
||||
"Coffee Lovers",
|
||||
"Daily Visitors",
|
||||
]}
|
||||
names={["Google Maps", "Yelp", "TripAdvisor", "Local Guides", "Community Reviews", "Coffee Lovers", "Daily Visitors"]}
|
||||
title="Rated 4.9 by our locals"
|
||||
description="Over 131 glowing reviews confirming our spot as the most cozy, affordable coffee experience in town."
|
||||
/>
|
||||
@@ -142,60 +82,12 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
brand: "Bakery",
|
||||
name: "Cinnamon Roll",
|
||||
price: "$4.50",
|
||||
rating: 5,
|
||||
reviewCount: "89",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/traditional-irish-cream-coffee-liqueur-with-ice-wooden-table_123827-29685.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
brand: "Breakfast",
|
||||
name: "Bacon & Egg Burrito",
|
||||
price: "$7.00",
|
||||
rating: 4.8,
|
||||
reviewCount: "54",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/aroma-background-love-house-taste_1232-3951.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
brand: "Drinks",
|
||||
name: "Gingerbread Latte",
|
||||
price: "$5.50",
|
||||
rating: 4.9,
|
||||
reviewCount: "102",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/traditional-irish-cream-coffee-liqueur-with-ice-wooden-table_123827-29685.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
brand: "Drinks",
|
||||
name: "Iced Sugar Cookie",
|
||||
price: "$5.00",
|
||||
rating: 4.7,
|
||||
reviewCount: "41",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/aroma-background-love-house-taste_1232-3951.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
brand: "Bakery",
|
||||
name: "Blueberry Muffin",
|
||||
price: "$3.50",
|
||||
rating: 4.9,
|
||||
reviewCount: "67",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/traditional-irish-cream-coffee-liqueur-with-ice-wooden-table_123827-29685.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
brand: "Breakfast",
|
||||
name: "Avocado Toast",
|
||||
price: "$6.50",
|
||||
rating: 4.6,
|
||||
reviewCount: "33",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/aroma-background-love-house-taste_1232-3951.jpg?_wi=3",
|
||||
},
|
||||
{ id: "1", brand: "Bakery", name: "Cinnamon Roll", price: "$4.50", rating: 5, reviewCount: "89", imageSrc: "http://img.b2bpic.net/free-photo/traditional-irish-cream-coffee-liqueur-with-ice-wooden-table_123827-29685.jpg" },
|
||||
{ id: "2", brand: "Breakfast", name: "Bacon & Egg Burrito", price: "$7.00", rating: 4.8, reviewCount: "54", imageSrc: "http://img.b2bpic.net/free-photo/aroma-background-love-house-taste_1232-3951.jpg" },
|
||||
{ id: "3", brand: "Drinks", name: "Gingerbread Latte", price: "$5.50", rating: 4.9, reviewCount: "102", imageSrc: "http://img.b2bpic.net/free-photo/traditional-irish-cream-coffee-liqueur-with-ice-wooden-table_123827-29685.jpg" },
|
||||
{ id: "4", brand: "Drinks", name: "Iced Sugar Cookie", price: "$5.00", rating: 4.7, reviewCount: "41", imageSrc: "http://img.b2bpic.net/free-photo/aroma-background-love-house-taste_1232-3951.jpg" },
|
||||
{ id: "5", brand: "Bakery", name: "Blueberry Muffin", price: "$3.50", rating: 4.9, reviewCount: "67", imageSrc: "http://img.b2bpic.net/free-photo/traditional-irish-cream-coffee-liqueur-with-ice-wooden-table_123827-29685.jpg" },
|
||||
{ id: "6", brand: "Breakfast", name: "Avocado Toast", price: "$6.50", rating: 4.6, reviewCount: "33", imageSrc: "http://img.b2bpic.net/free-photo/aroma-background-love-house-taste_1232-3951.jpg" },
|
||||
]}
|
||||
title="Menu Highlights"
|
||||
description="Handcrafted coffee and homemade comfort food starting at just $1."
|
||||
@@ -208,20 +100,11 @@ export default function LandingPage() {
|
||||
title="A Cozy Local Experience"
|
||||
description="We aren't a corporate clone. Coffee Shed is built for the neighborhood, offering loft seating, family-friendly spaces, and service that treats you like family."
|
||||
metrics={[
|
||||
{
|
||||
value: "$1-10",
|
||||
title: "Affordable Pricing",
|
||||
},
|
||||
{
|
||||
value: "4.9★",
|
||||
title: "Customer Rating",
|
||||
},
|
||||
{
|
||||
value: "Fast",
|
||||
title: "Service Speed",
|
||||
},
|
||||
{ value: "$1-10", title: "Affordable Pricing" },
|
||||
{ value: "4.9★", title: "Customer Rating" },
|
||||
{ value: "Fast", title: "Service Speed" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/bar-still-life-with-cake_23-2147821284.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/bar-still-life-with-cake_23-2147821284.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -235,51 +118,11 @@ export default function LandingPage() {
|
||||
title="Why Choose Coffee Shed?"
|
||||
description="We put love into every cup and every conversation."
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Ethical Sourcing",
|
||||
descriptions: [
|
||||
"We work with small farms.",
|
||||
"Fair trade guarantee.",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-high-angle-shot-cappuccino-blue-wooden-surface_181624-41113.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Artisanal Roasts",
|
||||
descriptions: [
|
||||
"Roasted in small batches.",
|
||||
"Perfectly balanced profiles.",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/traditional-irish-cream-coffee-liqueur-with-ice-wooden-table_123827-29685.jpg?_wi=4",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Community Focus",
|
||||
descriptions: [
|
||||
"Host for local events.",
|
||||
"Supporting neighborhood artists.",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bar-still-life-with-cake_23-2147821284.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Comfortable Space",
|
||||
descriptions: [
|
||||
"High-speed Wi-Fi.",
|
||||
"Power outlets at every table.",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-beautiful-woman-looking-away-with-coffee_197531-33702.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "Fresh Daily",
|
||||
descriptions: [
|
||||
"Baked fresh every morning.",
|
||||
"No preservatives.",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/aroma-background-love-house-taste_1232-3951.jpg?_wi=4",
|
||||
},
|
||||
{ id: "1", title: "Ethical Sourcing", descriptions: ["We work with small farms.", "Fair trade guarantee."], imageSrc: "http://img.b2bpic.net/free-photo/vertical-high-angle-shot-cappuccino-blue-wooden-surface_181624-41113.jpg" },
|
||||
{ id: "2", title: "Artisanal Roasts", descriptions: ["Roasted in small batches.", "Perfectly balanced profiles."], imageSrc: "http://img.b2bpic.net/free-photo/traditional-irish-cream-coffee-liqueur-with-ice-wooden-table_123827-29685.jpg" },
|
||||
{ id: "3", title: "Community Focus", descriptions: ["Host for local events.", "Supporting neighborhood artists."], imageSrc: "http://img.b2bpic.net/free-photo/bar-still-life-with-cake_23-2147821284.jpg" },
|
||||
{ id: "4", title: "Comfortable Space", descriptions: ["High-speed Wi-Fi.", "Power outlets at every table."], imageSrc: "http://img.b2bpic.net/free-photo/view-beautiful-woman-looking-away-with-coffee_197531-33702.jpg" },
|
||||
{ id: "5", title: "Fresh Daily", descriptions: ["Baked fresh every morning.", "No preservatives."], imageSrc: "http://img.b2bpic.net/free-photo/aroma-background-love-house-taste_1232-3951.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -287,53 +130,9 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Sitemap",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "/reviews",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Hours",
|
||||
items: [
|
||||
{
|
||||
label: "Daily: 7 AM - 5 PM",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Sitemap", items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, { label: "About", href: "/about" }, { label: "Reviews", href: "/reviews" }, { label: "Contact", href: "/contact" }] },
|
||||
{ title: "Hours", items: [{ label: "Daily: 7 AM - 5 PM", href: "#" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||
]}
|
||||
bottomLeftText="© 2024 Coffee Shed. All Rights Reserved."
|
||||
bottomRightText="Built with love for the neighborhood."
|
||||
|
||||
@@ -7,7 +7,7 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
|
||||
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: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "/reviews",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Coffee Shed"
|
||||
button={{ text: "Order Online", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -58,22 +44,8 @@ export default function LandingPage() {
|
||||
title="What Locals Say"
|
||||
description="Don't just take our word for it."
|
||||
features={[
|
||||
{
|
||||
id: "r1",
|
||||
title: "Best in Town",
|
||||
descriptions: [
|
||||
"Absolutely loved the latte.",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-high-angle-shot-cappuccino-blue-wooden-surface_181624-41113.jpg?_wi=4",
|
||||
},
|
||||
{
|
||||
id: "r2",
|
||||
title: "Very Friendly",
|
||||
descriptions: [
|
||||
"Staff made me feel at home.",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bar-still-life-with-cake_23-2147821284.jpg?_wi=4",
|
||||
},
|
||||
{ id: "r1", title: "Best in Town", descriptions: ["Absolutely loved the latte."], imageSrc: "http://img.b2bpic.net/free-photo/vertical-high-angle-shot-cappuccino-blue-wooden-surface_181624-41113.jpg" },
|
||||
{ id: "r2", title: "Very Friendly", descriptions: ["Staff made me feel at home."], imageSrc: "http://img.b2bpic.net/free-photo/bar-still-life-with-cake_23-2147821284.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -87,20 +59,8 @@ export default function LandingPage() {
|
||||
title="Fan Favorites"
|
||||
description="The items people keep coming back for."
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Cinnamon Roll",
|
||||
price: "$4.50",
|
||||
variant: "Bakery",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/traditional-irish-cream-coffee-liqueur-with-ice-wooden-table_123827-29685.jpg?_wi=5",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Burrito",
|
||||
price: "$7.00",
|
||||
variant: "Breakfast",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/aroma-background-love-house-taste_1232-3951.jpg?_wi=6",
|
||||
},
|
||||
{ id: "p1", name: "Cinnamon Roll", price: "$4.50", variant: "Bakery", imageSrc: "http://img.b2bpic.net/free-photo/traditional-irish-cream-coffee-liqueur-with-ice-wooden-table_123827-29685.jpg" },
|
||||
{ id: "p2", name: "Burrito", price: "$7.00", variant: "Breakfast", imageSrc: "http://img.b2bpic.net/free-photo/aroma-background-love-house-taste_1232-3951.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -108,53 +68,9 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Sitemap",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "/reviews",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Hours",
|
||||
items: [
|
||||
{
|
||||
label: "Daily: 7 AM - 5 PM",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Sitemap", items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, { label: "About", href: "/about" }, { label: "Reviews", href: "/reviews" }, { label: "Contact", href: "/contact" }] },
|
||||
{ title: "Hours", items: [{ label: "Daily: 7 AM - 5 PM", href: "#" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||
]}
|
||||
bottomLeftText="© 2024 Coffee Shed. All Rights Reserved."
|
||||
bottomRightText="Built with love for the neighborhood."
|
||||
|
||||
Reference in New Issue
Block a user