9 Commits

Author SHA1 Message Date
0d698b0501 Merge version_3 into main
Merge version_3 into main
2026-03-04 19:55:01 +00:00
2d80365e57 Update src/app/page.tsx 2026-03-04 19:54:57 +00:00
e8134cb042 Update src/app/layout.tsx 2026-03-04 19:54:56 +00:00
42e4092649 Merge version_2 into main
Merge version_2 into main
2026-03-04 19:49:36 +00:00
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 22 additions and 38 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

@@ -10,7 +10,7 @@ import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCar
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import ContactFaq from "@/components/sections/contact/ContactFaq";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import { Leaf, Truck, Users, Award, Handshake, Shield, DollarSign, Zap, Sprout, Globe, CheckCircle, MessageCircle } from "lucide-react";
import { Leaf, Truck, Users, Award, Handshake, Shield, DollarSign, Zap, Sprout, Globe, CheckCircle, MessageCircle, Zap as UrgencyIcon } from "lucide-react";
export default function LandingPage() {
return (
@@ -54,9 +54,13 @@ export default function LandingPage() {
]}
avatarText="Trusted by 5,000+ happy customers"
buttons={[
{ text: "Shop Now", href: "#products" },
{ text: "Get Fresh Produce Today", href: "#products" },
{ text: "Learn More", href: "#about" },
]}
marqueeItems={[
{ type: "text-icon", text: "Limited-time offer: Save 20% on your first order", icon: UrgencyIcon },
]}
showMarqueeCard={true}
/>
</div>
@@ -192,9 +196,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"
@@ -239,4 +243,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}