Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 19:49:36 +00:00
2 changed files with 14 additions and 34 deletions

View File

@@ -1,47 +1,28 @@
import type { Metadata } from "next";
import { Montserrat, Inter } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "FreshFarm - Organic Food Delivery from Local Farmers", description: "Get fresh, organic produce and wholesome food delivered to your door within 24-48 hours. Supporting local farmers while promoting your health and the environment.", keywords: "organic food delivery, fresh produce, local farmers, organic vegetables, farm-to-table, sustainable food", openGraph: {
title: "FreshFarm - Fresh Organic Food Delivered", description: "Experience farm-fresh organic produce delivered directly to your door from our network of trusted local farmers.", type: "website", siteName: "FreshFarm", images: [
{
url: "http://img.b2bpic.net/free-photo/female-client-vendor-drinking-cup-hot-coffee-farmers-market_482257-77552.jpg", alt: "Fresh organic produce"},
],
},
twitter: {
card: "summary_large_image", title: "FreshFarm - Fresh Organic Food Delivery", description: "100% organic, locally-sourced food delivered fresh to your door.", images: ["http://img.b2bpic.net/free-photo/female-client-vendor-drinking-cup-hot-coffee-farmers-market_482257-77552.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${montserrat.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable}`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1409,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -192,9 +192,9 @@ export default function LandingPage() {
id: "6", title: "How do you support local farmers?", content: "We pay fair prices directly to farmers, eliminating middlemen. This ensures farmers are fairly compensated while you get better pricing. We also feature farmer stories on our blog."},
]}
ctaTitle="Have Questions?"
ctaDescription="Get in touch with our friendly team. We're here to help answer any questions about our products and services."
ctaDescription="Get in touch with our friendly team. We typically respond within 2 hours and are here to help answer any questions about our products and services."
ctaButton={{
text: "Get in Touch", href: "mailto:hello@freshfarm.com"}}
text: "Chat with Our Team", href: "mailto:hello@freshfarm.com"}}
ctaIcon={MessageCircle}
useInvertedBackground={false}
animationType="slide-up"