Merge version_1 into main #2
@@ -7,7 +7,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
|
||||
import TeamCardSix from '@/components/sections/team/TeamCardSix';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
@@ -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: "Order",
|
||||
id: "/order",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Order", id: "/order" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Java Cafe"
|
||||
button={{ text: "Order Now", href: "/order" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -55,9 +41,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Our Story"
|
||||
description={[
|
||||
"At Java Cafe, we are dedicated to bringing the finest beans from around the world to your cup.",
|
||||
"Our passion for coffee started small, and today we continue to grow alongside our wonderful community.",
|
||||
]}
|
||||
"At Java Cafe, we are dedicated to bringing the finest beans from around the world to your cup.", "Our passion for coffee started small, and today we continue to grow alongside our wonderful community."]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -70,12 +54,7 @@ export default function LandingPage() {
|
||||
title="Our Baristas"
|
||||
description="The heart of Java Cafe."
|
||||
members={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Anna",
|
||||
role: "Head Barista",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-with-guitar_23-2151169639.jpg?_wi=3",
|
||||
},
|
||||
{ id: "1", name: "Anna", role: "Head Barista", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-with-guitar_23-2151169639.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -83,30 +62,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Order",
|
||||
href: "/order",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "Menu", href: "/menu" }, { label: "About", href: "/about" }] },
|
||||
{ items: [{ label: "Order", href: "/order" }, { label: "Contact", href: "/contact" }] },
|
||||
]}
|
||||
logoText="Java Cafe"
|
||||
/>
|
||||
|
||||
@@ -7,7 +7,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
@@ -25,46 +25,25 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Order",
|
||||
id: "/order",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Order", id: "/order" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Java Cafe"
|
||||
button={{ text: "Order Now", href: "/order" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Visit Us"
|
||||
title="Contact Java Cafe"
|
||||
description="Location: 123 Coffee Lane, City. Phone: (555) 123-4567. Open 7am - 8pm."
|
||||
buttons={[
|
||||
{
|
||||
text: "View Map",
|
||||
href: "#",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "View Map", href: "#" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -75,40 +54,15 @@ export default function LandingPage() {
|
||||
title="Proudly Serving"
|
||||
description="Partnering with the best suppliers."
|
||||
names={[
|
||||
"Local Roasters",
|
||||
"Organic Dairy",
|
||||
"Fair Trade Coop",
|
||||
]}
|
||||
"Local Roasters", "Organic Dairy", "Fair Trade Coop"]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Order",
|
||||
href: "/order",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "Menu", href: "/menu" }, { label: "About", href: "/about" }] },
|
||||
{ items: [{ label: "Order", href: "/order" }, { label: "Contact", href: "/contact" }] },
|
||||
]}
|
||||
logoText="Java Cafe"
|
||||
/>
|
||||
|
||||
@@ -8,7 +8,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import ProductCatalogItem from '@/components/ecommerce/productCatalog/ProductCatalogItem';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function MenuPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
@@ -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: "Order",
|
||||
id: "/order",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Order", id: "/order" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Java Cafe"
|
||||
button={{ text: "Order Now", href: "/order" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -58,42 +44,12 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Espresso",
|
||||
price: "$3.50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-various-coffee_53876-31309.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Cappuccino",
|
||||
price: "$4.50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-various-coffee_53876-31309.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Latte",
|
||||
price: "$4.75",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-various-coffee_53876-31309.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Mocha",
|
||||
price: "$5.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-various-coffee_53876-31309.jpg?_wi=4",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Croissant",
|
||||
price: "$3.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-various-coffee_53876-31309.jpg?_wi=5",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Cheesecake",
|
||||
price: "$6.50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-various-coffee_53876-31309.jpg?_wi=6",
|
||||
},
|
||||
{ id: "1", name: "Espresso", price: "$3.50", imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-various-coffee_53876-31309.jpg" },
|
||||
{ id: "2", name: "Cappuccino", price: "$4.50", imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-various-coffee_53876-31309.jpg" },
|
||||
{ id: "3", name: "Latte", price: "$4.75", imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-various-coffee_53876-31309.jpg" },
|
||||
{ id: "4", name: "Mocha", price: "$5.00", imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-various-coffee_53876-31309.jpg" },
|
||||
{ id: "5", name: "Croissant", price: "$3.00", imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-various-coffee_53876-31309.jpg" },
|
||||
{ id: "6", name: "Cheesecake", price: "$6.50", imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-various-coffee_53876-31309.jpg" },
|
||||
]}
|
||||
title="Our Menu"
|
||||
description="Premium coffee, specialty drinks, and artisanal desserts."
|
||||
@@ -102,13 +58,7 @@ export default function LandingPage() {
|
||||
|
||||
<div id="ecommerce" data-section="ecommerce">
|
||||
<ProductCatalogItem
|
||||
product={{
|
||||
id: "1",
|
||||
name: "Signature Blend",
|
||||
price: "$12.00",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-various-coffee_53876-31309.jpg?_wi=7",
|
||||
}}
|
||||
product={{ id: "1", name: "Signature Blend", price: "$12.00", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-various-coffee_53876-31309.jpg" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -121,16 +71,8 @@ export default function LandingPage() {
|
||||
title="Menu Highlights"
|
||||
description="Our top picks."
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "50+",
|
||||
description: "Drinks",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "20+",
|
||||
description: "Pastries",
|
||||
},
|
||||
{ id: "1", value: "50+", description: "Drinks" },
|
||||
{ id: "2", value: "20+", description: "Pastries" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -138,30 +80,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Order",
|
||||
href: "/order",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "Menu", href: "/menu" }, { label: "About", href: "/about" }] },
|
||||
{ items: [{ label: "Order", href: "/order" }, { label: "Contact", href: "/contact" }] },
|
||||
]}
|
||||
logoText="Java Cafe"
|
||||
/>
|
||||
|
||||
@@ -7,7 +7,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function OrderPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
@@ -25,46 +25,25 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Order",
|
||||
id: "/order",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Order", id: "/order" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Java Cafe"
|
||||
button={{ text: "Order Now", href: "/order" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Ordering"
|
||||
title="Place Your Order"
|
||||
description="Fill out your details to have your coffee ready for pickup."
|
||||
buttons={[
|
||||
{
|
||||
text: "Submit Order",
|
||||
href: "#",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Submit Order", href: "#" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -77,15 +56,7 @@ export default function LandingPage() {
|
||||
title="Popular Orders"
|
||||
description="What our customers are grabbing today."
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
brand: "Java",
|
||||
name: "Cold Brew",
|
||||
price: "$4.00",
|
||||
rating: 4,
|
||||
reviewCount: "120",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-various-coffee_53876-31309.jpg?_wi=8",
|
||||
},
|
||||
{ id: "1", brand: "Java", name: "Cold Brew", price: "$4.00", rating: 4, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-various-coffee_53876-31309.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -93,30 +64,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Order",
|
||||
href: "/order",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "Menu", href: "/menu" }, { label: "About", href: "/about" }] },
|
||||
{ items: [{ label: "Order", href: "/order" }, { label: "Contact", href: "/contact" }] },
|
||||
]}
|
||||
logoText="Java Cafe"
|
||||
/>
|
||||
|
||||
173
src/app/page.tsx
173
src/app/page.tsx
@@ -28,75 +28,30 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Order",
|
||||
id: "/order",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Order", id: "/order" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Java Cafe"
|
||||
button={{ text: "Order Now", href: "/order" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
title="Java Cafe: Your Daily Brew"
|
||||
description="Experience artisanal coffee roasted to perfection in a warm, welcoming environment."
|
||||
buttons={[
|
||||
{
|
||||
text: "Order Now",
|
||||
href: "/order",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Order Now", href: "/order" }]}
|
||||
carouselItems={[
|
||||
{
|
||||
id: "1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/six-lovely-white-ceramic-cups-with-cappuccino-isolated-wooden-table-foam-top-flying-heart-shape_346278-1478.jpg?_wi=1",
|
||||
imageAlt: "Coffee shop interior",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/six-lovely-white-ceramic-cups-with-cappuccino-isolated-wooden-table-foam-top-flying-heart-shape_346278-1478.jpg?_wi=2",
|
||||
imageAlt: "Latte art",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/six-lovely-white-ceramic-cups-with-cappuccino-isolated-wooden-table-foam-top-flying-heart-shape_346278-1478.jpg?_wi=3",
|
||||
imageAlt: "Coffee beans",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/six-lovely-white-ceramic-cups-with-cappuccino-isolated-wooden-table-foam-top-flying-heart-shape_346278-1478.jpg?_wi=4",
|
||||
imageAlt: "Barista scene",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/six-lovely-white-ceramic-cups-with-cappuccino-isolated-wooden-table-foam-top-flying-heart-shape_346278-1478.jpg?_wi=5",
|
||||
imageAlt: "Cozy cafe corner",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/six-lovely-white-ceramic-cups-with-cappuccino-isolated-wooden-table-foam-top-flying-heart-shape_346278-1478.jpg?_wi=6",
|
||||
imageAlt: "Fresh coffee",
|
||||
},
|
||||
{ id: "1", imageSrc: "http://img.b2bpic.net/free-photo/six-lovely-white-ceramic-cups-with-cappuccino-isolated-wooden-table-foam-top-flying-heart-shape_346278-1478.jpg", imageAlt: "Coffee shop interior" },
|
||||
{ id: "2", imageSrc: "http://img.b2bpic.net/free-photo/six-lovely-white-ceramic-cups-with-cappuccino-isolated-wooden-table-foam-top-flying-heart-shape_346278-1478.jpg", imageAlt: "Latte art" },
|
||||
{ id: "3", imageSrc: "http://img.b2bpic.net/free-photo/six-lovely-white-ceramic-cups-with-cappuccino-isolated-wooden-table-foam-top-flying-heart-shape_346278-1478.jpg", imageAlt: "Coffee beans" },
|
||||
{ id: "4", imageSrc: "http://img.b2bpic.net/free-photo/six-lovely-white-ceramic-cups-with-cappuccino-isolated-wooden-table-foam-top-flying-heart-shape_346278-1478.jpg", imageAlt: "Barista scene" },
|
||||
{ id: "5", imageSrc: "http://img.b2bpic.net/free-photo/six-lovely-white-ceramic-cups-with-cappuccino-isolated-wooden-table-foam-top-flying-heart-shape_346278-1478.jpg", imageAlt: "Cozy cafe corner" },
|
||||
{ id: "6", imageSrc: "http://img.b2bpic.net/free-photo/six-lovely-white-ceramic-cups-with-cappuccino-isolated-wooden-table-foam-top-flying-heart-shape_346278-1478.jpg", imageAlt: "Fresh coffee" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -109,26 +64,8 @@ export default function LandingPage() {
|
||||
title="Coffee Insights"
|
||||
description="Learn about the art of roasting and brewing from our experts."
|
||||
blogs={[
|
||||
{
|
||||
id: "1",
|
||||
category: "Brewing",
|
||||
title: "Perfecting the Pour",
|
||||
excerpt: "Tips for your home brew.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/six-lovely-white-ceramic-cups-with-cappuccino-isolated-wooden-table-foam-top-flying-heart-shape_346278-1478.jpg?_wi=7",
|
||||
authorName: "Jane Doe",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/side-view-woman-with-guitar_23-2151169639.jpg",
|
||||
date: "2023-10-01",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
category: "Beans",
|
||||
title: "Choosing Your Roast",
|
||||
excerpt: "Finding your favorite flavor profile.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/six-lovely-white-ceramic-cups-with-cappuccino-isolated-wooden-table-foam-top-flying-heart-shape_346278-1478.jpg?_wi=8",
|
||||
authorName: "John Smith",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/side-view-woman-with-guitar_23-2151169639.jpg",
|
||||
date: "2023-10-05",
|
||||
},
|
||||
{ id: "1", category: "Brewing", title: "Perfecting the Pour", excerpt: "Tips for your home brew.", imageSrc: "http://img.b2bpic.net/free-photo/six-lovely-white-ceramic-cups-with-cappuccino-isolated-wooden-table-foam-top-flying-heart-shape_346278-1478.jpg", authorName: "Jane Doe", authorAvatar: "http://img.b2bpic.net/free-photo/side-view-woman-with-guitar_23-2151169639.jpg", date: "2023-10-01" },
|
||||
{ id: "2", category: "Beans", title: "Choosing Your Roast", excerpt: "Finding your favorite flavor profile.", imageSrc: "http://img.b2bpic.net/free-photo/six-lovely-white-ceramic-cups-with-cappuccino-isolated-wooden-table-foam-top-flying-heart-shape_346278-1478.jpg", authorName: "John Smith", authorAvatar: "http://img.b2bpic.net/free-photo/side-view-woman-with-guitar_23-2151169639.jpg", date: "2023-10-05" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -142,26 +79,10 @@ export default function LandingPage() {
|
||||
title="By The Numbers"
|
||||
description="Our cafe in summary."
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "500+",
|
||||
description: "Cups served daily",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "12",
|
||||
description: "Global bean origins",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "10",
|
||||
description: "Years of experience",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
value: "100%",
|
||||
description: "Ethically sourced",
|
||||
},
|
||||
{ id: "1", value: "500+", description: "Cups served daily" },
|
||||
{ id: "2", value: "12", description: "Global bean origins" },
|
||||
{ id: "3", value: "10", description: "Years of experience" },
|
||||
{ id: "4", value: "100%", description: "Ethically sourced" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -174,16 +95,8 @@ export default function LandingPage() {
|
||||
description="Got questions? We've got answers."
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Do you offer vegan milk?",
|
||||
content: "Yes, we offer almond, soy, and oat milk.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Can I reserve a table?",
|
||||
content: "Yes, please call us to book your spot.",
|
||||
},
|
||||
{ id: "1", title: "Do you offer vegan milk?", content: "Yes, we offer almond, soy, and oat milk." },
|
||||
{ id: "2", title: "Can I reserve a table?", content: "Yes, please call us to book your spot." },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -196,20 +109,8 @@ export default function LandingPage() {
|
||||
title="Community Love"
|
||||
description="Hear what our regulars have to say."
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Alice W.",
|
||||
handle: "@alice",
|
||||
testimonial: "Best latte in town!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-with-guitar_23-2151169639.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Bob B.",
|
||||
handle: "@bob",
|
||||
testimonial: "Great atmosphere for working.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-with-guitar_23-2151169639.jpg?_wi=2",
|
||||
},
|
||||
{ id: "1", name: "Alice W.", handle: "@alice", testimonial: "Best latte in town!", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-with-guitar_23-2151169639.jpg" },
|
||||
{ id: "2", name: "Bob B.", handle: "@bob", testimonial: "Great atmosphere for working.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-with-guitar_23-2151169639.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -217,30 +118,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Order",
|
||||
href: "/order",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "Menu", href: "/menu" }, { label: "About", href: "/about" }] },
|
||||
{ items: [{ label: "Order", href: "/order" }, { label: "Contact", href: "/contact" }] },
|
||||
]}
|
||||
logoText="Java Cafe"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user