Compare commits
22 Commits
version_11
...
version_15
| Author | SHA1 | Date | |
|---|---|---|---|
| fc3e76c118 | |||
| 53b8c22e1f | |||
| aebe45ff30 | |||
| 0a4c0bc61b | |||
| 91a2e2a4eb | |||
| fefa8ca9a8 | |||
| b3d16cbe85 | |||
| 97f13a3549 | |||
| d51784a958 | |||
| 180d52b5d8 | |||
| 4b45e441fa | |||
| 6e8cf74671 | |||
| 221fc17a3c | |||
| 06fb254b5d | |||
| a6ddc31f77 | |||
| 2b6e5ec138 | |||
| 4eb55749d7 | |||
| 995e0c8f25 | |||
| 8a3661933c | |||
| 5d97e500fd | |||
| b78c7c7250 | |||
| 54bf7ee04e |
@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
|
||||
export default function MenuPage() {
|
||||
return (
|
||||
@@ -28,26 +28,25 @@ export default function MenuPage() {
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
]}
|
||||
button={{ text: "Order Online", href: "#" }}
|
||||
button={{ text: "Order Online", href: "tel:+14134197863" }}
|
||||
brandName="CRAVE CAFÉ"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="top-picks" data-section="top-picks">
|
||||
<ProductCardThree
|
||||
title="THIS MONTH'S TOP PICKS"
|
||||
<ProductCardFour
|
||||
title="This Months Top Picks"
|
||||
description="Discover our curated selection of customer favorites and chef specialties. Elegant, fresh, and served just for you."
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "p1", name: "Smoked Salmon Avocado Toast", price: "$13.95", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775669412046-4kmmj6cs.png", imageAlt: "Smoked Salmon Avocado Toast" },
|
||||
{ id: "p2", name: "Signature Sweet Crepe", price: "$6.95", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775501251342-0zntpynz.png", imageAlt: "Signature Sweet Crepe" },
|
||||
{ id: "p3", name: "Beet and Pickled Onion Toast ", price: "$13.75", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775446159736-6ddgpu4s.png", imageAlt: "Beet and Pickled Onion Toast " },
|
||||
{ id: "p4", name: "Red Caviar Crep es", price: "$12.95", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775445253627-8k9zsc19.jpg", imageAlt: "Red Caviar Crep es" }
|
||||
{ id: "p1", name: "Strawberry Bubble Waffle ", price: "$13.95", variant: "Breakfast", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775669412046-4kmmj6cs.png?_wi=1", imageAlt: "Strawberry Bubble Waffle " },
|
||||
{ id: "p2", name: "Bubble Tea ", price: "$6.95", variant: "Drinks ", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775501251342-0zntpynz.png?_wi=1", imageAlt: "Bubble Tea " },
|
||||
{ id: "p3", name: "Beet and Pickled Onion Toast ", price: "$10.95", variant: "Breakfast", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775446159736-6ddgpu4s.png?_wi=1", imageAlt: "Beet and Pickled Onion Toast " },
|
||||
{ id: "p4", name: "Dubai Cup ", price: "$12.95", variant: "Specialty", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775445253627-8k9zsc19.jpg?_wi=1", imageAlt: "Red Caviar Crep es" }
|
||||
]}
|
||||
cardClassName="text-lg font-medium opacity-80 mt-2 block"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -7,7 +7,6 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
|
||||
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import { Coffee, Palette, Utensils } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -30,6 +29,7 @@ export default function LandingPage() {
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" }
|
||||
]}
|
||||
button={{ text: "Order Online", href: "tel:+14134197863" }}
|
||||
brandName="CRAVE CAFÉ"
|
||||
/>
|
||||
</div>
|
||||
@@ -75,8 +75,8 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ title: "Craft Beverages", description: "From Classic favorites to unique blends, find your perfect sip.", phoneOne: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775501251342-0zntpynz.png" }, phoneTwo: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775445253627-8k9zsc19.jpg" } },
|
||||
{ title: "Curated Bites", description: "From fresh morning pastries to elegant afternoon lunches.", phoneOne: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775669412046-4kmmj6cs.png" }, phoneTwo: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775446159736-6ddgpu4s.png" } }
|
||||
{ title: "Craft Beverages", description: "From Classic favorites to unique blends, find your perfect sip.", phoneOne: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775501251342-0zntpynz.png?_wi=2" }, phoneTwo: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775445253627-8k9zsc19.jpg?_wi=2" } },
|
||||
{ title: "Curated Bites", description: "From fresh morning pastries to elegant afternoon lunches.", phoneOne: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775669412046-4kmmj6cs.png?_wi=2" }, phoneTwo: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775446159736-6ddgpu4s.png?_wi=2" } }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -116,4 +116,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user