From d493dbe0fcc76a94024634a92ccd30763150d36f Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 19:37:21 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e1a576c..c7c10d7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -4,7 +4,8 @@ import "./styles/base.css"; import "./globals.css"; export const metadata: Metadata = { - title: "Finca Don Manuel - Premium Specialty Coffee", description: "Experience the finest specialty coffee from our Central American farm. Direct-to-consumer ordering with sustainable farming practices."}; + title: "Finca Don Manuel - Premium Specialty Coffee", description: "Experience the finest specialty coffee from our Central American farm. Direct-to-consumer ordering with sustainable farming practices." +}; export default function RootLayout({ children, -- 2.49.1 From 5e82e71c5a54f7dd8060dcde5a22bf5fe0bfa711 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 19:37:21 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 5b93815..05b8494 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import FeatureBento from "@/components/sections/feature/FeatureBento"; import PricingCardThree from "@/components/sections/pricing/PricingCardThree"; import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen"; import FooterCard from "@/components/sections/footer/FooterCard"; -import { Sparkles, Award, Zap, Coffee, Leaf, Instagram, Facebook, Twitter, Mail, Shield, Users } from "lucide-react"; +import { Sparkles, Award, Zap, Coffee, Leaf, Instagram, Facebook, Twitter, Mail } from "lucide-react"; const navItems = [ { name: "Shop", id: "/products" }, @@ -52,9 +52,9 @@ export default function HomePage() { { text: "Learn More", href: "/about" }, ]} slides={[ - { imageSrc: "asset://coffee-hero-1", imageAlt: "Coffee farm landscape" }, - { imageSrc: "asset://coffee-hero-2", imageAlt: "Coffee beans close-up" }, - { imageSrc: "asset://coffee-hero-3", imageAlt: "Roasting process" }, + { imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Coffee farm landscape" }, + { imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Coffee beans close-up" }, + { imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Roasting process" }, ]} autoplayDelay={5000} showDimOverlay={true} @@ -67,7 +67,7 @@ export default function HomePage() { title="Crafted with Care" description="Every bean tells a story of sustainable farming, meticulous harvesting, and expert roasting. We're committed to excellence and environmental stewardship." tag="Our Story" - imageSrc="asset://coffee-about" + imageSrc="/placeholders/placeholder1.webp" imageAlt="Our coffee farm" buttons={[{ text: "Discover More", href: "#features" }]} useInvertedBackground={false} @@ -159,13 +159,13 @@ export default function HomePage() { testimonials={[ { id: "1", name: "Sarah Mitchell", role: "Coffee Enthusiast", company: "Portland, OR", rating: 5, - imageSrc: "asset://testimonial-1"}, + imageSrc: "/placeholders/placeholder1.webp"}, { id: "2", name: "James Chen", role: "Specialty Café Owner", company: "Seattle, WA", rating: 5, - imageSrc: "asset://testimonial-2"}, + imageSrc: "/placeholders/placeholder1.webp"}, { id: "3", name: "Maria Rodriguez", role: "Home Barista", company: "Austin, TX", rating: 5, - imageSrc: "asset://testimonial-3"}, + imageSrc: "/placeholders/placeholder1.webp"}, ]} kpiItems={[ { value: "10K+", label: "Happy Customers" }, -- 2.49.1