Merge version_4 into main #3
46
src/app/menu/page.tsx
Normal file
46
src/app/menu/page.tsx
Normal file
@@ -0,0 +1,46 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
|
||||
export default function MenuPage() {
|
||||
const menu = [
|
||||
{ id: "t1", name: "Genmai Cha", price: "$7", imageSrc: "" },
|
||||
{ id: "t2", name: "Jasmin Green Tea", price: "$7", imageSrc: "" },
|
||||
{ id: "e1", name: "S.O.E Single", price: "$5", imageSrc: "" },
|
||||
{ id: "e2", name: "S.O.E Double", price: "$6", imageSrc: "" },
|
||||
{ id: "c1", name: "Single Espresso", price: "$4", imageSrc: "" },
|
||||
{ id: "c2", name: "Flat White", price: "$6", imageSrc: "" },
|
||||
{ id: "o1", name: "Colombia Narino", price: "$8", imageSrc: "" },
|
||||
{ id: "o2", name: "Panama Boquete", price: "$10", imageSrc: "" },
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Experience", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Philosophy", id: "/" },
|
||||
{ name: "Reviews", id: "/" },
|
||||
{ name: "Visit", id: "/" },
|
||||
]}
|
||||
brandName="Simply Coffie"
|
||||
/>
|
||||
<div className="pt-32">
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
title="Our Menu"
|
||||
description="Carefully selected teas, espresso drinks, and single origin beans."
|
||||
products={menu}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
224
src/app/page.tsx
224
src/app/page.tsx
@@ -3,7 +3,6 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel';
|
||||
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
|
||||
@@ -12,6 +11,7 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
|
||||
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
||||
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -31,16 +31,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Experience", id: "experience"},
|
||||
{
|
||||
name: "Menu", id: "menu"},
|
||||
{
|
||||
name: "Philosophy", id: "philosophy"},
|
||||
{
|
||||
name: "Reviews", id: "reviews"},
|
||||
{
|
||||
name: "Visit", id: "visit"},
|
||||
{ name: "Experience", id: "experience" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Philosophy", id: "philosophy" },
|
||||
{ name: "Reviews", id: "reviews" },
|
||||
{ name: "Visit", id: "visit" },
|
||||
]}
|
||||
brandName="Simply Coffie"
|
||||
/>
|
||||
@@ -48,63 +43,18 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDoubleCarousel
|
||||
background={{
|
||||
variant: "gradient-bars"}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Simply Perfect."
|
||||
description="Crafted, not rushed. Experience the intersection of precision and calm."
|
||||
leftCarouselItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/interior-cafe-with-brick-walls_53876-153337.jpg", imageAlt: "Coffee Craft"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/clear-glass-cup-brown-wooden-table_209848-81.jpg", imageAlt: "Coffee Shop"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-person-pouring-tea-milk-glass-table-with-cookies_181624-34980.jpg", imageAlt: "Coffee Craft"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-sitting-cafe-drinking-coffee-working-computer_1303-14731.jpg", imageAlt: "Coffee Shop"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-coffee-machine-cups-with-coffee-beans_23-2148522959.jpg", imageAlt: "Coffee Craft"},
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/interior-cafe-with-brick-walls_53876-153337.jpg", imageAlt: "Coffee Craft" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/clear-glass-cup-brown-wooden-table_209848-81.jpg", imageAlt: "Coffee Shop" },
|
||||
]}
|
||||
rightCarouselItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hot-cup-coffee-with-cream-macaroon_140725-7521.jpg", imageAlt: "Coffee Shop"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/easter-coffee-decorations-still-life_23-2150244122.jpg", imageAlt: "Coffee Craft"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-cup-tasty-cappuccino-enjoy-time-restaurant-fancy-atmosphere-coffee-lover_291049-418.jpg", imageAlt: "Coffee Shop"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cloth-twig-near-cups-lamp_23-2147811208.jpg", imageAlt: "Coffee Craft"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coffee-cup-restaurant-s-table_74190-10275.jpg", imageAlt: "Coffee Shop"},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "View Our Seasonal Menu", href: "/menu"},
|
||||
]}
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/twig-near-ceramic-cups_23-2147811204.jpg", alt: "Patron one"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/digital-art-style-light-lamp-design_23-2151153904.jpg", alt: "Patron two"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/isolated-man-shoes_1304-3784.jpg", alt: "Patron three"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-person-suffering-from-cybersickness-from-using-tech-device-too-long_23-2151393706.jpg", alt: "Patron four"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-adult-with-transgender-scar_23-2149488850.jpg", alt: "Patron five"},
|
||||
]}
|
||||
avatarText="Join our community of coffee connoisseurs."
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text", text: "Crafted"},
|
||||
{
|
||||
type: "text", text: "Minimalist"},
|
||||
{
|
||||
type: "text", text: "Precision"},
|
||||
{
|
||||
type: "text", text: "Artisan"},
|
||||
{
|
||||
type: "text", text: "Refined"},
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/hot-cup-coffee-with-cream-macaroon_140725-7521.jpg", imageAlt: "Coffee Shop" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/easter-coffee-decorations-still-life_23-2150244122.jpg", imageAlt: "Coffee Craft" },
|
||||
]}
|
||||
buttons={[{ text: "View Our Full Menu", href: "/menu" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -114,17 +64,12 @@ export default function LandingPage() {
|
||||
title="Crafted Standards"
|
||||
description="A curated rotation of global beans, each brewed to highlight its natural complexity and refined character."
|
||||
metrics={[
|
||||
{
|
||||
value: "100%", title: "Intentional"},
|
||||
{
|
||||
value: "Small", title: "Batch"},
|
||||
{
|
||||
value: "Elite", title: "Baristas"},
|
||||
{ value: "100%", title: "Intentional" },
|
||||
{ value: "Small", title: "Batch" },
|
||||
{ value: "Elite", title: "Baristas" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/barista-work-coffee-shop_158595-2329.jpg"
|
||||
imageAlt="Barista Craft"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -133,156 +78,29 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
negativeCard={{
|
||||
items: [
|
||||
"No Artificial Additives", "No Rushed Service", "No Shortcuts", "No Compromise", "No Pre-ground"],
|
||||
}}
|
||||
positiveCard={{
|
||||
items: [
|
||||
"Natural Complexity", "Expert Precision", "Minimalist Atmosphere", "Sustainable Sourcing", "Peak Freshness"],
|
||||
}}
|
||||
negativeCard={{ items: ["No Artificial Additives", "No Rushed Service", "No Shortcuts"] }}
|
||||
positiveCard={{ items: ["Natural Complexity", "Expert Precision", "Minimalist Atmosphere"] }}
|
||||
title="No Sweeteners. No Shortcuts."
|
||||
description="Built for those who appreciate coffee at its highest level. Every cup is crafted with patience."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "Espresso", price: "$6", imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-holding-spoon_23-2149214714.jpg"},
|
||||
{
|
||||
id: "2", name: "Cappuccino", price: "$7", imageSrc: "http://img.b2bpic.net/free-photo/close-up-delicious-coffee-with-cream-sugar_23-2148463980.jpg"},
|
||||
{
|
||||
id: "3", name: "Pour Over", price: "$9", imageSrc: "http://img.b2bpic.net/free-photo/close-up-croissants-jam-coffee_23-2148243527.jpg"},
|
||||
{
|
||||
id: "4", name: "Affogato", price: "$11", imageSrc: "http://img.b2bpic.net/free-photo/geyser-coffee-maker-sackcloth_23-2148180228.jpg"},
|
||||
{
|
||||
id: "5", name: "Iced Mocha", price: "$8", imageSrc: "http://img.b2bpic.net/free-photo/coffee-topped-with-whipped-cream-coffee-seeds_140725-1121.jpg"},
|
||||
{
|
||||
id: "6", name: "Pastry", price: "$6", imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-making-soap_23-2148897606.jpg"},
|
||||
]}
|
||||
title="Seasonal Menu"
|
||||
description="High-clarity preparations tailored for the discerning palate."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "basic", name: "Daily Ritual", price: "$45/mo", features: [
|
||||
"1 Bag Monthly", "Free Brew Guide", "Support Artisan Growers"],
|
||||
buttons: [
|
||||
{
|
||||
text: "Select"},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "pro", name: "Connoisseur", price: "$85/mo", features: [
|
||||
"2 Bags Monthly", "Priority Roasts", "Member Events", "Annual Gifts"],
|
||||
buttons: [
|
||||
{
|
||||
text: "Select"},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "enterprise", name: "Collector", price: "$150/mo", features: [
|
||||
"4 Bags Monthly", "Limited Origins", "Private Tastings", "Direct Barista Chat"],
|
||||
buttons: [
|
||||
{
|
||||
text: "Select"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
title="Subscription Tiers"
|
||||
description="Bring the Simply Coffie experience to your daily routine."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="reviews" data-section="reviews">
|
||||
<TestimonialCardSixteen
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah J.", role: "Patron", company: "Houston", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-drinking-coffee-cafe_1303-25732.jpg"},
|
||||
{
|
||||
id: "2", name: "Michael C.", role: "Patron", company: "Houston", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bearded-elderly-businessman-man-restaurant-senior-black-suit_1157-46620.jpg"},
|
||||
{
|
||||
id: "3", name: "Emily R.", role: "Patron", company: "Houston", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dreamy-stylish-girl-with-blonde-hair-pink-lips-sitting-coffee-shop-with-wooden-chairs-table-she-holds-cup-cofee-touches-her-hair_197531-102.jpg"},
|
||||
{
|
||||
id: "4", name: "David K.", role: "Patron", company: "Houston", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/photo-young-redhead-bearded-man-white-shirt-reading-book-cafeteria_171337-10019.jpg"},
|
||||
{
|
||||
id: "5", name: "Lisa M.", role: "Patron", company: "Houston", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-pretty-woman-cafe_1328-2403.jpg"},
|
||||
]}
|
||||
kpiItems={[
|
||||
{
|
||||
value: "99%", label: "Retention"},
|
||||
{
|
||||
value: "15+", label: "Origins"},
|
||||
{
|
||||
value: "4.9", label: "Rating"},
|
||||
]}
|
||||
title="Customer Experience"
|
||||
description="Authentic perspectives from our community of coffee lovers."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "1", value: "5k+", description: "Cups Poured"},
|
||||
{
|
||||
id: "2", value: "24", description: "Origins Sourced"},
|
||||
{
|
||||
id: "3", value: "3", description: "Years Refining"},
|
||||
]}
|
||||
title="Our Impact"
|
||||
description="Numbers behind the craft."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain"}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Visit Us"
|
||||
title="Simply Coffie Houston"
|
||||
description="733 W 24th St, Houston, TX. Open 8AM. Closed Wednesdays."
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Directions", href: "#"},
|
||||
]}
|
||||
buttons={[{ text: "Get Directions", href: "#" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Simply Coffie"
|
||||
leftLink={{
|
||||
text: "Privacy Policy", href: "#"}}
|
||||
rightLink={{
|
||||
text: "© 2026 Crafted, Not Rushed", href: "#"}}
|
||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
||||
rightLink={{ text: "© 2026 Crafted, Not Rushed", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user