diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f058534..988b83d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Archivo } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], -}); +const dmSans = DM_Sans({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Faida Farm - Premium Fresh Chicken & Eggs", description: "Experience quality poultry farming. Fresh farm eggs, free-range chicken meat, and organic feed delivered to your door. 28+ years of sustainable farming excellence.", keywords: "chicken farm, fresh eggs, poultry, organic farming, free-range chicken, sustainable agriculture, farm fresh", metadataBase: new URL("https://faidafarm.com"), - alternates: { - canonical: "https://faidafarm.com"}, - openGraph: { - title: "Faida Farm - Premium Fresh Chicken & Eggs", description: "Quality poultry farming with 28+ years of excellence. Fresh eggs and sustainable farm products for your family.", url: "https://faidafarm.com", siteName: "Faida Farm", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/two-white-hens-barn_23-2147923881.jpg", alt: "Faida Farm chicken farm landscape"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Faida Farm - Premium Fresh Chicken & Eggs", description: "Quality poultry farming with sustainable practices. Fresh farm products delivered.", images: ["http://img.b2bpic.net/free-photo/two-white-hens-barn_23-2147923881.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Faida Farm - Premium Chicken Farming", description: "Experience fresh farm produce from Faida Farm. Premium chicken products with commitment to quality, sustainability, and community."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}