5 Commits

Author SHA1 Message Date
5a038ccb8b Update src/app/page.tsx 2026-03-04 19:49:32 +00:00
ca07e66894 Update src/app/layout.tsx 2026-03-04 19:49:31 +00:00
8012cb5128 Merge version_1 into main
Merge version_1 into main
2026-03-04 19:48:28 +00:00
6128ac9d8a Merge version_1 into main
Merge version_1 into main
2026-03-04 19:47:03 +00:00
ce5d65007b Merge version_1 into main
Merge version_1 into main
2026-03-04 19:45:27 +00:00
2 changed files with 14 additions and 34 deletions

View File

@@ -1,46 +1,27 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Montserrat, Inter } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const montserrat = Montserrat({ const geist = Geist({
variable: "--font-montserrat", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
}); });
export const metadata: Metadata = { 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: "Create Next App", description: "Generated by create next app"};
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,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${geist.variable} ${geistMono.variable}`}>
<body {children}
className={`${montserrat.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
@@ -1409,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </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."}, 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?" 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={{ ctaButton={{
text: "Get in Touch", href: "mailto:hello@freshfarm.com"}} text: "Chat with Our Team", href: "mailto:hello@freshfarm.com"}}
ctaIcon={MessageCircle} ctaIcon={MessageCircle}
useInvertedBackground={false} useInvertedBackground={false}
animationType="slide-up" animationType="slide-up"