From 2214779b2d41a607370967a55a5b0ad3677f18a0 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 18:41:12 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1418 +------------------------------------------- 1 file changed, 6 insertions(+), 1412 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9a1cfb5..1d45955 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1425 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } 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 lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Rivers Studio - Handmade Crochet Bags, Tops & Accessories", description: "Discover handmade crochet fashion and accessories by Rivers Studio. Sustainable, original designs crafted in Liverpool. Limited-edition pieces and custom orders available.", keywords: "handmade crochet, crochet bags, crochet tops, artisan fashion, sustainable fashion, Liverpool maker, custom orders", metadataBase: new URL("https://rivershandmadestudio.com"), - alternates: { - canonical: "https://rivershandmadestudio.com"}, - openGraph: { - title: "Rivers Studio - Handmade Crochet Goods", description: "Handmade crochet bags, tops, and accessories crafted with love in Liverpool. Limited-edition pieces and custom commissions.", url: "https://rivershandmadestudio.com", siteName: "Rivers Studio", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-hand-holding-knitting-needle_23-2148859254.jpg", alt: "Handmade crochet artisan craftsmanship"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Rivers Studio - Handmade Crochet", description: "Handmade crochet bags, tops & accessories. Limited-edition pieces crafted in Liverpool.", images: ["http://img.b2bpic.net/free-photo/close-up-hand-holding-knitting-needle_23-2148859254.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Rivers Studio | Handmade Crochet Pieces", description: "Discover one-of-a-kind handmade crochet bags, tops, and accessories crafted with sustainable materials in Liverpool."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -