Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0d698b0501 | |||
| 2d80365e57 | |||
| e8134cb042 | |||
| 42e4092649 | |||
| 5a038ccb8b | |||
| ca07e66894 | |||
| 8012cb5128 | |||
| 6128ac9d8a | |||
| ce5d65007b |
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user