diff --git a/src/app/page.tsx b/src/app/page.tsx index 7f2b698..14a67bb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,6 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; +import { Shield, Zap, Star, Award } from 'lucide-react'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FaqDouble from '@/components/sections/faq/FaqDouble'; import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; @@ -19,90 +20,49 @@ export default function LandingPage() { defaultButtonVariant="text-shift" defaultTextAnimation="background-highlight" borderRadius="soft" + contentWidth="medium" + sizing="medium" + background="circleGradient" + cardStyle="glass-elevated" + primaryButtonStyle="gradient" + secondaryButtonStyle="glass" + headingFontWeight="normal" >
@@ -111,12 +71,7 @@ export default function LandingPage() { @@ -125,34 +80,10 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} features={[ - { - title: "Ethically Sourced", - description: "We partner with local farmers for the best beans.", - buttonIcon: "Shield", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-buckwheats-food-shovels-alongside-them-horizontal_176474-2387.jpg", - imageAlt: "artisanal coffee roasting process", - }, - { - title: "Daily Freshness", - description: "Our pastries are baked fresh every morning.", - buttonIcon: "Zap", - imageSrc: "http://img.b2bpic.net/free-photo/black-bearded-coffee-seller-pouring-coffee-shop_613910-443.jpg?_wi=2", - imageAlt: "artisanal coffee roasting process", - }, - { - title: "Cozy Atmosphere", - description: "Your third space away from home.", - buttonIcon: "Star", - imageSrc: "http://img.b2bpic.net/free-photo/cup-coffee-with-chocolate-pralines_114579-20065.jpg", - imageAlt: "artisanal coffee roasting process", - }, - { - title: "Expert Roasting", - description: "Precision roasting for optimal flavor.", - buttonIcon: "Award", - imageSrc: "http://img.b2bpic.net/free-photo/sweet-pastry-assortment-with-copy-space_23-2148516595.jpg", - imageAlt: "artisanal coffee roasting process", - }, + { title: "Ethically Sourced", description: "We partner with local farmers for the best beans.", buttonIcon: Shield, imageSrc: "http://img.b2bpic.net/free-photo/top-view-buckwheats-food-shovels-alongside-them-horizontal_176474-2387.jpg", imageAlt: "artisanal coffee roasting process" }, + { title: "Daily Freshness", description: "Our pastries are baked fresh every morning.", buttonIcon: Zap, imageSrc: "http://img.b2bpic.net/free-photo/black-bearded-coffee-seller-pouring-coffee-shop_613910-443.jpg", imageAlt: "artisanal coffee roasting process" }, + { title: "Cozy Atmosphere", description: "Your third space away from home.", buttonIcon: Star, imageSrc: "http://img.b2bpic.net/free-photo/cup-coffee-with-chocolate-pralines_114579-20065.jpg", imageAlt: "artisanal coffee roasting process" }, + { title: "Expert Roasting", description: "Precision roasting for optimal flavor.", buttonIcon: Award, imageSrc: "http://img.b2bpic.net/free-photo/sweet-pastry-assortment-with-copy-space_23-2148516595.jpg", imageAlt: "artisanal coffee roasting process" }, ]} title="Why Choose Brew & Bean?" description="Experience the difference in every cup." @@ -166,42 +97,12 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={false} products={[ - { - id: "1", - name: "Signature Latte", - price: "$4.50", - imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-various-coffee_53876-146532.jpg", - }, - { - id: "2", - name: "Cold Brew", - price: "$4.25", - imageSrc: "http://img.b2bpic.net/free-photo/iced-coffee-glasses_1220-3572.jpg", - }, - { - id: "3", - name: "Blueberry Muffin", - price: "$3.75", - imageSrc: "http://img.b2bpic.net/free-photo/blueberry-muffin_74190-7072.jpg", - }, - { - id: "4", - name: "Espresso Shot", - price: "$2.50", - imageSrc: "http://img.b2bpic.net/free-photo/fresh-coffee-pouring-into-ceramic-cup_23-2147834512.jpg", - }, - { - id: "5", - name: "Herbal Tea", - price: "$3.50", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-empty-cup-dark_140725-78006.jpg", - }, - { - id: "6", - name: "Avocado Toast", - price: "$8.00", - imageSrc: "http://img.b2bpic.net/free-photo/fried-egg-with-vegetable-salad-cup-tea_114579-28959.jpg", - }, + { id: "1", name: "Signature Latte", price: "$4.50", imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-various-coffee_53876-146532.jpg" }, + { id: "2", name: "Cold Brew", price: "$4.25", imageSrc: "http://img.b2bpic.net/free-photo/iced-coffee-glasses_1220-3572.jpg" }, + { id: "3", name: "Blueberry Muffin", price: "$3.75", imageSrc: "http://img.b2bpic.net/free-photo/blueberry-muffin_74190-7072.jpg" }, + { id: "4", name: "Espresso Shot", price: "$2.50", imageSrc: "http://img.b2bpic.net/free-photo/fresh-coffee-pouring-into-ceramic-cup_23-2147834512.jpg" }, + { id: "5", name: "Herbal Tea", price: "$3.50", imageSrc: "http://img.b2bpic.net/free-photo/front-view-empty-cup-dark_140725-78006.jpg" }, + { id: "6", name: "Avocado Toast", price: "$8.00", imageSrc: "http://img.b2bpic.net/free-photo/fried-egg-with-vegetable-salad-cup-tea_114579-28959.jpg" }, ]} title="Our Menu" description="Hand-crafted coffee and treats." @@ -212,31 +113,11 @@ export default function LandingPage() {