From bb33059112b823a02f0b954674698f9f43f2db0c Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 19:23:31 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2b40b4c..8a7ef54 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,8 +5,7 @@ import "./globals.css"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Redeemed Coffee", description: "Vintage Coffee, Weekly Surprises, Always Local" -}; + title: "Redeemed Coffee - Mobile Coffee Experience", description: "Vintage feel, pure ingredients, sourced locally. Follow Redeemed Coffee's vintage camper as it rotates through three counties each week."}; export default function RootLayout({ children, @@ -1385,4 +1384,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} -- 2.49.1 From 6dc09f29c7d2637681386a2aef9238ff4e023742 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 19:23:31 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 26989a4..80d43a9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,6 +12,15 @@ import FooterBase from '@/components/sections/footer/FooterBase'; import { Coffee, Leaf, Heart, Handshake, Users, MapPin } from 'lucide-react'; export default function LandingPage() { + const handleContactSubmit = (data: Record) => { + // Form submissions are handled here + // You can send the data to your backend API endpoint + // Example: + // fetch('/api/contact', { method: 'POST', body: JSON.stringify(data) }) + console.log('Form submission received:', data); + // The form data includes: name, email, phone (if provided), and message + }; + return ( @@ -195,4 +205,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1