17 Commits

Author SHA1 Message Date
5924f95558 Merge version_5 into main
Merge version_5 into main
2026-03-05 19:23:35 +00:00
6dc09f29c7 Update src/app/page.tsx 2026-03-05 19:23:31 +00:00
bb33059112 Update src/app/layout.tsx 2026-03-05 19:23:31 +00:00
456fc403ff Merge version_4 into main
Merge version_4 into main
2026-03-04 16:10:05 +00:00
e812d4de7e Update src/app/page.tsx 2026-03-04 16:10:01 +00:00
3eada74af3 Merge version_4 into main
Merge version_4 into main
2026-03-04 16:08:50 +00:00
3d7cd1f921 Update src/app/page.tsx 2026-03-04 16:08:46 +00:00
ca9b03ea75 Merge version_4 into main
Merge version_4 into main
2026-03-04 16:07:32 +00:00
b196d06b10 Update src/app/page.tsx 2026-03-04 16:07:27 +00:00
443c23e1f8 Merge version_4 into main
Merge version_4 into main
2026-03-04 16:05:41 +00:00
90f0cb170e Update src/app/page.tsx 2026-03-04 16:05:35 +00:00
a60ba97a17 Merge version_4 into main
Merge version_4 into main
2026-03-04 16:03:45 +00:00
f2ae184e83 Update src/app/page.tsx 2026-03-04 16:03:41 +00:00
0dfe202d8c Merge version_3 into main
Merge version_3 into main
2026-03-04 16:00:53 +00:00
1eb4fa762b Update src/app/page.tsx 2026-03-04 16:00:48 +00:00
b262c3b6ec Update src/app/layout.tsx 2026-03-04 16:00:47 +00:00
e189ef56bc Merge version_2 into main
Merge version_2 into main
2026-03-04 15:51:20 +00:00
2 changed files with 13 additions and 3 deletions

View File

@@ -5,7 +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,

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
@@ -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<string, string>) => {
// 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 (
<ThemeProvider
defaultButtonVariant="elastic-effect"
@@ -39,7 +48,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboardCarousel
title="Vintage Coffee, Weekly Surprises, Always Local"
title="Vintage Feel, Pure Ingredients, Sourced Locally Always"
description="Follow Redeemed Coffee's vintage camper as it rotates through three counties each week, bringing quality espresso and community wherever we park"
tag="Mobile Coffee Experience"
tagIcon={Coffee}
@@ -160,6 +169,7 @@ export default function LandingPage() {
mediaAnimation="slide-up"
mediaPosition="right"
buttonText="Send Message"
onSubmit={handleContactSubmit}
ariaLabel="Contact form section"
/>
</div>