diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 17e2604..c5dc8ad 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,69 +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: "Farrell Foods | Premium Food Supply Toronto", - description: "Toronto's trusted premium food supplier serving restaurants, catering companies, and distributors with wholesale quality ingredients, reliable delivery, and competitive pricing.", - keywords: "Toronto food supplier, wholesale food Toronto, premium ingredients Toronto, food distributor Toronto, restaurant supply Toronto, catering food supply", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Farrell Foods - Premium Food Supply for Toronto Businesses", - description: "Partner with Toronto's most trusted premium food supplier. Quality ingredients, reliable delivery, competitive wholesale pricing.", - type: "website", - siteName: "Farrell Foods", - images: [ - { - url: "http://img.b2bpic.net/free-photo/woman-cutting-parmesan-cheese-from-cheese-plate_140725-10808.jpg", - alt: "Farrell Foods premium gourmet food supply", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Farrell Foods - Premium Food Supply Toronto", - description: "Trusted by Toronto's finest restaurants and catering companies. Premium ingredients, reliable delivery, wholesale pricing.", - images: ["http://img.b2bpic.net/free-photo/woman-cutting-parmesan-cheese-from-cheese-plate_140725-10808.jpg"], - }, -}; + title: "Farrell Foods | Premium Food Supply Toronto", description: "Premium food supply for Toronto businesses. Trusted by restaurants, catering companies, and food distributors."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}