From 4f91bafcf7bb5978dffdcac162d61b1cdc0ae1ab Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 17:50:28 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 70 +++++----------------------------------------- 1 file changed, 7 insertions(+), 63 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f2bb902..6d66d95 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,75 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Poppins } 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 poppins = Poppins({ - variable: "--font-poppins", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "ANVAYA ROOTS - Premium Handcrafted Yoga Mat Bags", - description: "Sustainable, custom-designed yoga mat bags handcrafted in India. Premium quality with traditional prints. Shop now or create your own design.", - keywords: "yoga mat bags, handmade yoga mat bags, custom yoga bags, eco-friendly yoga accessories, sustainable yoga products, handcrafted bags India", - metadataBase: new URL("https://www.anvayaroots.com"), - alternates: { - canonical: "https://www.anvayaroots.com", - }, - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "ANVAYA ROOTS - Premium Handcrafted Yoga Mat Bags", - description: "Sustainable, custom-designed yoga mat bags handcrafted in India. Premium quality with traditional prints.", - url: "https://www.anvayaroots.com", - siteName: "ANVAYA ROOTS", - type: "website", - images: [ - { - url: "https://www.anvayaroots.com/og-image.jpg", - alt: "ANVAYA ROOTS handcrafted yoga mat bag", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "ANVAYA ROOTS - Premium Yoga Mat Bags", - description: "Handcrafted sustainable yoga mat bags with custom design options.", - images: ["https://www.anvayaroots.com/twitter-image.jpg"], - }, -}; + title: "ANVAYA ROOTS - Handcrafted Yoga Mat Bags", description: "Custom-made, sustainable yoga mat bags blending craftsmanship with eco-conscious design."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}