From 74bb48c7c8101a3dcfb3b2c40dd6604f7987b9bf Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 00:55:58 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 41 ++++++----------------------------------- 1 file changed, 6 insertions(+), 35 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 46b3dee..7c66ce9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } 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 inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Pasha Hand Crafted Rugs - Authentic Handwoven Rugs in Chico, CA", description: "Discover hand-crafted rugs from master artisans. Premium handwoven rugs in traditional and modern styles. Visit our Chico showroom today.", keywords: "handwoven rugs, handcrafted carpets, traditional rugs, Persian rugs, Kilim, artisan rugs, Chico California", openGraph: { - title: "Pasha Hand Crafted Rugs", description: "Authentic handwoven rugs with timeless beauty and traditional craftsmanship", siteName: "Pasha Hand Crafted Rugs", type: "website", images: [{ - url: "http://img.b2bpic.net/free-photo/multiple-carpets-grand-bazaar-istanbul-turkey_1268-21686.jpg", alt: "Pasha Hand Crafted Rugs" - }] - }, - twitter: { - card: "summary_large_image", title: "Pasha Hand Crafted Rugs", description: "Authentic handwoven rugs with timeless beauty", images: ["http://img.b2bpic.net/free-photo/multiple-carpets-grand-bazaar-istanbul-turkey_1268-21686.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Pasha Hand Crafted Rugs", description: "Discover authentic, handwoven rugs from Pasha. Each piece is meticulously crafted by master artisans."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}