14 Commits

Author SHA1 Message Date
e812d4de7e Update src/app/page.tsx 2026-03-04 16:10:01 +00:00
3d7cd1f921 Update src/app/page.tsx 2026-03-04 16:08:46 +00:00
b196d06b10 Update src/app/page.tsx 2026-03-04 16:07:27 +00:00
90f0cb170e Update src/app/page.tsx 2026-03-04 16:05:35 +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
4ccdfbb8f8 Update src/app/page.tsx 2026-03-04 15:51:16 +00:00
c22dbf502c Update src/app/layout.tsx 2026-03-04 15:51:15 +00:00
2cfb410553 Merge version_1 into main
Merge version_1 into main
2026-03-04 15:48:53 +00:00
d39e491c1c Merge version_1 into main
Merge version_1 into main
2026-03-04 15:48:02 +00:00
7dd59def74 Merge version_1 into main
Merge version_1 into main
2026-03-04 15:47:00 +00:00
2 changed files with 12 additions and 49 deletions

View File

@@ -1,58 +1,21 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Redeemed Coffee - Vintage Mobile Coffee, Weekly Schedule", description: "Experience vintage charm with Redeemed Coffee's rotating trailer across Indiana. Fresh roasted beans, house-made syrups, and local community. Follow us for weekly schedule updates.", keywords: "coffee trailer, mobile coffee, artisanal espresso, Kosciusko County, Noble County, Lagrange County, remote worker friendly, third place, local coffee, vintage camper", openGraph: {
title: "Redeemed Coffee - Vintage Mobile Coffee Experience", description: "Follow our vintage coffee trailer as it rotates through three Indiana counties weekly. Artisanal espresso and community connection.", siteName: "Redeemed Coffee", type: "website", images: [{
url: "http://img.b2bpic.net/free-photo/friends-skateboard-riders-relaxing-bench-after-riding-sunset_613910-16224.jpg", alt: "Redeemed Coffee Vintage Trailer"
}]
},
twitter: {
card: "summary_large_image", title: "Redeemed Coffee - Vintage Mobile Coffee", description: "Artisanal espresso and community. Follow our rotating schedule across Indiana.", images: ["http://img.b2bpic.net/free-photo/friends-skateboard-riders-relaxing-bench-after-riding-sunset_613910-16224.jpg"]
},
robots: {
index: true,
follow: true
}
title: "Redeemed Coffee", description: "Vintage Coffee, Weekly Surprises, Always Local"
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1383,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
@@ -39,7 +39,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}
@@ -54,7 +54,8 @@ export default function LandingPage() {
{ imageSrc: "http://img.b2bpic.net/free-photo/great-coffee-is-only-this-place_329181-2889.jpg?_wi=1", imageAlt: "Coffee community gathering" }
]}
buttons={[
{ text: "Follow Our Schedule", href: "schedule" }
{ text: "Find Us This Week", href: "schedule" },
{ text: "Learn Our Story", href: "about" }
]}
buttonAnimation="slide-up"
ariaLabel="Hero section featuring Redeemed Coffee's vintage trailer experience"
@@ -194,4 +195,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}