diff --git a/src/app/layout.tsx b/src/app/layout.tsx index faec40a..181dd57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + + {children} +