6 Commits

Author SHA1 Message Date
c0f644e8b4 Update src/app/menu/page.tsx 2026-05-13 18:53:47 +00:00
c03818f0bb Update src/app/page.tsx 2026-05-13 18:53:16 +00:00
52389a6afd Update src/app/menu/page.tsx 2026-05-13 18:53:15 +00:00
e040244009 Update src/app/contact/page.tsx 2026-05-13 18:53:14 +00:00
ce8984aa1e Merge version_1 into main
Merge version_1 into main
2026-05-13 18:44:33 +00:00
8a43bbb2a0 Merge version_1 into main
Merge version_1 into main
2026-05-13 18:44:03 +00:00
3 changed files with 91 additions and 156 deletions

View File

@@ -3,12 +3,11 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ContactSplit from '@/components/sections/contact/ContactSplit'; import ContactCenter from '@/components/sections/contact/ContactCenter';
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
import FooterSimple from '@/components/sections/footer/FooterSimple'; import FooterSimple from '@/components/sections/footer/FooterSimple';
import { Calendar } from "lucide-react"; import { Phone, MessageCircle, Instagram } from 'lucide-react';
export default function ContactPage() { export default function ContactOrderPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="icon-arrow" defaultButtonVariant="icon-arrow"
@@ -34,40 +33,38 @@ export default function ContactPage() {
/> />
</div> </div>
<div id="contact-us" data-section="contact-us"> <div id="contact" data-section="contact">
<ContactSplit <ContactCenter
tag="Get in touch"
title="Contact & Order"
description="Reach out to us via your favorite channel or fill out the form below to place your order."
background={{ variant: "gradient-bars" }}
useInvertedBackground={false} useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Contact Us"
title="Order Your Favorites"
description="Get in touch for catering orders or table reservations."
imageSrc="http://img.b2bpic.net/free-photo/happy-small-business-owner-standing-doorway-opening-bar-business_637285-3402.jpg"
mediaAnimation="blur-reveal"
buttonText="Send Inquiry"
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardTen
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Visit Us"
description="We look forward to serving you."
features={[
{
title: "Opening Hours", description: "Daily 8am to 8pm", media: { imageSrc: "http://img.b2bpic.net/free-photo/young-manager-girl-changing-sign-from-closed-open-sign-door-cafe-looking-outside-waiting-clients-after-lockdown_7861-3174.jpg" },
items: [{ text: "Monday-Friday", icon: Calendar }],
reverse: false
}
]}
/> />
<div className="max-w-4xl mx-auto px-6 py-12 grid grid-cols-1 md:grid-cols-3 gap-8">
<a href="https://instagram.com/karamelscafe" target="_blank" className="flex flex-col items-center p-6 bg-white rounded-xl border hover:shadow-lg transition">
<Instagram className="w-10 h-10 mb-4 text-pink-600" />
<h3 className="font-semibold">Instagram</h3>
<p className="text-sm text-gray-600">@karamelscafe</p>
</a>
<a href="https://wa.me/1234567890" target="_blank" className="flex flex-col items-center p-6 bg-white rounded-xl border hover:shadow-lg transition">
<MessageCircle className="w-10 h-10 mb-4 text-green-600" />
<h3 className="font-semibold">WhatsApp</h3>
<p className="text-sm text-gray-600">Chat to order</p>
</a>
<a href="tel:+1234567890" className="flex flex-col items-center p-6 bg-white rounded-xl border hover:shadow-lg transition">
<Phone className="w-10 h-10 mb-4 text-blue-600" />
<h3 className="font-semibold">Phone</h3>
<p className="text-sm text-gray-600">Call us now</p>
</a>
</div>
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterSimple <FooterSimple
columns={[ columns={[
{ title: "Quick Links", items: [{ label: "Menu", href: "/menu" }, { label: "Order", href: "/contact" }] } { title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, { label: "Order", href: "/contact" }] }
]} ]}
bottomLeftText="© 2024 Karamel's Cafe" bottomLeftText="© 2024 Karamel's Cafe"
bottomRightText="123 Cafe Street, Coffee Town" bottomRightText="123 Cafe Street, Coffee Town"
@@ -76,4 +73,4 @@ export default function ContactPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -2,137 +2,75 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import FooterSimple from '@/components/sections/footer/FooterSimple';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardThree from '@/components/sections/product/ProductCardThree'; import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function LandingPage() { export default function MenuPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="icon-arrow" defaultButtonVariant="icon-arrow"
defaultTextAnimation="entrance-slide" defaultTextAnimation="entrance-slide"
borderRadius="rounded" borderRadius="rounded"
contentWidth="mediumLarge" contentWidth="mediumLarge"
sizing="largeSmall" sizing="largeSmall"
background="aurora" background="aurora"
cardStyle="solid" cardStyle="solid"
primaryButtonStyle="radial-glow" primaryButtonStyle="radial-glow"
secondaryButtonStyle="glass" secondaryButtonStyle="glass"
headingFontWeight="medium" headingFontWeight="medium"
> >
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleApple <NavbarStyleApple
navItems={[ navItems={[
{ { name: "Home", id: "/" },
name: "Home", { name: "Menu", id: "/menu" },
id: "/", { name: "Contact & Order", id: "/contact" }
}, ]}
{ brandName="Karamel's Cafe"
name: "Menu", />
id: "/menu", </div>
},
{
name: "Contact & Order",
id: "/contact",
},
]}
brandName="Karamel's Cafe"
/>
</div>
<div id="menu-grid" data-section="menu-grid"> <div id="coffee" data-section="coffee">
<ProductCardThree <FeatureCardTwentyEight
animationType="opacity" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
gridVariant="three-columns-all-equal-width" title="Coffee & Drinks"
useInvertedBackground={false} description="Carefully crafted beverages."
products={[ useInvertedBackground={false}
{ features={[
id: "p1", { id: "c1", title: "Espresso", subtitle: "Rich and intense", category: "Hot", value: "$3.50" },
name: "Croissant", { id: "c2", title: "Latte", subtitle: "Creamy and smooth", category: "Hot", value: "$4.50" },
price: "$4.50", { id: "c3", title: "Iced Americano", subtitle: "Cool and refreshing", category: "Cold", value: "$4.00" }
imageSrc: "http://img.b2bpic.net/free-photo/watercolor-coffee-cup-coffee-beans-illustration_23-2151720146.jpg", ]}
}, />
{ </div>
id: "p2",
name: "Cake Slice",
price: "$6.00",
imageSrc: "http://img.b2bpic.net/free-photo/fruit-salad-blue-bowl-wooden-table_123827-32690.jpg",
},
{
id: "p3",
name: "Sourdough",
price: "$8.00",
imageSrc: "http://img.b2bpic.net/free-photo/healthy-ingredients-included-salad_23-2148173932.jpg",
},
{
id: "p4",
name: "Fruit Bowl",
price: "$7.00",
imageSrc: "http://img.b2bpic.net/free-photo/elevated-view-tasty-cheesecake-lemon-tea-cup-toast-salad-fried-egg-bacon-gray-plate-white-background_23-2148067173.jpg",
},
{
id: "p5",
name: "Sandwich",
price: "$9.50",
imageSrc: "http://img.b2bpic.net/free-photo/two-cups-aroma-coffee-with-pastries-gray-table_114579-22175.jpg",
},
{
id: "p6",
name: "Brownie",
price: "$5.00",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-chocolate-pudding-with-almonds_23-2149349267.jpg",
},
]}
title="Our Full Menu"
description="Explore our delicious range of food and drinks."
/>
</div>
<div id="metric" data-section="metric"> <div id="food" data-section="food">
<MetricCardSeven <FeatureCardTwentyEight
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} title="Signature Meals"
title="Menu Highlights" description="Fresh ingredients, handmade daily."
description="What our customers love most." useInvertedBackground={false}
metrics={[ features={[
{ { id: "f1", title: "Avocado Toast", subtitle: "Sourdough, radish, herbs", category: "Breakfast", value: "$12.00" },
id: "m1", { id: "f2", title: "Croissant Sandwich", subtitle: "Eggs, cheddar, greens", category: "Lunch", value: "$10.00" },
value: "20+", { id: "f3", title: "Berry Parfait", subtitle: "Yogurt, granola, honey", category: "Breakfast", value: "$8.00" }
title: "Daily Items", ]}
items: [ />
"Fresh Pastries", </div>
"Gourmet Coffee",
],
},
]}
/>
</div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterSimple <FooterSimple
columns={[ columns={[
{ { title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Order", href: "/contact" }] }
title: "Quick Links", ]}
items: [ bottomLeftText="© 2024 Karamel's Cafe"
{ bottomRightText="123 Cafe Street, Coffee Town"
label: "Menu", />
href: "/menu", </div>
},
{
label: "Order",
href: "/contact",
},
],
},
]}
bottomLeftText="© 2024 Karamel's Cafe"
bottomRightText="123 Cafe Street, Coffee Town"
/>
</div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );

View File

@@ -114,7 +114,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterSimple <FooterSimple
columns={[ columns={[
{ title: "Quick Links", items: [{ label: "Menu", href: "/menu" }, { label: "Order", href: "/contact" }] } { title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, { label: "Order", href: "/contact" }] }
]} ]}
bottomLeftText="© 2024 Karamel's Cafe" bottomLeftText="© 2024 Karamel's Cafe"
bottomRightText="123 Cafe Street, Coffee Town" bottomRightText="123 Cafe Street, Coffee Town"
@@ -123,4 +123,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }