From 96164e55af1620a5bf0df64bf792e2e9e7f6e478 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 04:18:13 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 43 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4bfa448..e3e9513 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 { Nunito } 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 nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Ben & Jerry's | Premium Ice Cream with Purpose", description: "Handcrafted premium ice cream with a social mission. Explore our signature flavors, fair trade ingredients, and commitment to community impact since 1978.", keywords: "ice cream, premium dessert, fair trade, social responsibility, homemade ice cream", metadataBase: new URL("https://benjerrys.com"), - alternates: { - canonical: "https://benjerrys.com" - }, - openGraph: { - title: "Ben & Jerry's | Premium Ice Cream with Purpose", description: "Celebrate with handcrafted ice cream that supports social and environmental causes.", siteName: "Ben & Jerry's", type: "website", url: "https://benjerrys.com", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-yogurt-parfait-decorated-with-cooki-crumbs-chocolate-chips-glass_140725-10135.jpg", alt: "Ben & Jerry's Premium Ice Cream" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Ben & Jerry's | Premium Ice Cream", description: "Handcrafted ice cream with a social mission.", images: ["http://img.b2bpic.net/free-photo/close-up-yogurt-parfait-decorated-with-cooki-crumbs-chocolate-chips-glass_140725-10135.jpg"] - } -}; + title: "Ben & Jerry's - Premium Ice Cream", description: "Handcrafted, premium ice cream with a social mission. Every scoop supports sustainable sourcing and community impact."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}