diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0c38d44..f0cc43b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { DM_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Fresh Vegetables Online | Organic Produce Delivery", description: "Order fresh, organic vegetables online with 24-hour delivery. Get tomatoes, carrots, spinach, and more at great prices from Fresh Veggies.", keywords: "vegetables, organic, fresh, delivery, tomatoes, carrots, spinach, cucumber, online shopping", metadataBase: new URL("https://freshveggies.com"), - alternates: { - canonical: "https://freshveggies.com" - }, - openGraph: { - title: "Fresh Vegetables Delivered Online", description: "Premium quality organic vegetables delivered to your door in 24 hours.", url: "https://freshveggies.com", siteName: "Fresh Veggies", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AU3HBr0ASUsLHhY2eo7hi8XLVl/uploaded-1772633293894-1zghgt5r.jpg", alt: "Fresh organic vegetables" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Fresh Vegetables Delivered Online", description: "Premium quality organic vegetables delivered to your door in 24 hours.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AU3HBr0ASUsLHhY2eo7hi8XLVl/uploaded-1772633293894-1zghgt5r.jpg"] - } -}; + title: "Fresh Veggies - Organic Vegetables Delivered", description: "Premium quality organic vegetables sourced directly from local farmers. Get the freshest produce with our smart ordering and delivery system."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}