From fa653d263bcc889c442dea73a04c971737d08696 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 23:59:18 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 42 ++++++------------------------------------ 1 file changed, 6 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 70f631b..2cd8d56 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +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: "Daje | Premium Organic Fruit Juices | Italian Quality", description: "Discover Daje, the premium fruit juice brand combining natural ingredients with artisanal craftsmanship. Fresh, organic, and elegantly crafted juices.", keywords: "organic juice, fresh juice, premium beverages, fruit juice, natural juice, healthy drinks", openGraph: { - title: "Daje | Premium Organic Fruit Juices", description: "Pure juice, pure elegance. Discover our handcrafted collection of organic fruit juices.", siteName: "Daje Juice", type: "website"}, - twitter: { - card: "summary_large_image", title: "Daje | Premium Organic Fruit Juices", description: "Pure juice, pure elegance. Handcrafted organic fruit juices."}, - robots: { - index: true, - follow: true, - }, -}; + title: "Daje - Premium Juices", description: "Discover pure, fresh fruit juices crafted with elegance"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}