From da83c6024263fa7751a916a2161f723063df5b3a Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 11:35:13 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9ef7570..bdf62ab 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } 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 halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Premium Dates | Gourmet Quality Handpicked Dates Online", description: "Discover authentic, premium dates sourced from heritage date palms. Handpicked quality, 100% natural nutrition, sustainable farming. Order your premium collection today.", keywords: "premium dates, gourmet dates, medjool dates, deglet noor, organic dates, healthy snacks, natural food", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Premium Dates | Discover Gourmet Quality Handpicked Dates", description: "Experience nature's perfect candy. Premium, handpicked dates with 500+ years of heritage. Free shipping on first order.", url: "https://premiuindates.com", siteName: "Premium Dates", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/bowl-dry-plum-fruits-placed-white-background-high-quality-photo_114579-75789.jpg", alt: "Premium dates collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Premium Dates | Handpicked Gourmet Quality", description: "Discover premium dates sourced from heritage date palms. Natural nutrition, sustainable sourcing, authentic taste.", images: ["http://img.b2bpic.net/free-photo/bowl-dry-plum-fruits-placed-white-background-high-quality-photo_114579-75789.jpg"], - }, -}; + title: "Premium Dates", description: "Premium Dates - Discover the Sweet Heritage"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +