From 9a10a66a0624a312a551b97908d4a582466294bc Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 20:38:06 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 +++++----------------------------------------- 1 file changed, 5 insertions(+), 46 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b3a823f..d125cc3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito_Sans } 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 nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Swissclean | Dry Cleaning & Tailoring in Zürich West", description: "Professional dry cleaning and tailoring service in Zürich. Expert garment care, alterations, and reliable service for professionals. Call 044 271 36 60.", keywords: "dry cleaning Zürich, textilreinigung Zürich, alterations Zürich, schneiderei Zürich, dry cleaner Zürich West, textile care, professional cleaning", metadataBase: new URL("https://swissclean.ch"), - alternates: { - canonical: "https://swissclean.ch"}, - openGraph: { - title: "Swissclean | Professional Textile Care in Zürich", description: "Reliable dry cleaning and tailoring service in Zürich West. Expert care for all fabrics.", url: "https://swissclean.ch", siteName: "Swissclean", images: [ - { - url: "http://img.b2bpic.net/free-photo/unrecognizable-man-ironing-shirts-laundry-home_1098-17141.jpg", alt: "Professional textile cleaning service"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Swissclean | Professional Dry Cleaning in Zürich", description: "Expert textile care and tailoring service in Zürich West.", images: ["http://img.b2bpic.net/free-photo/unrecognizable-man-ironing-shirts-laundry-home_1098-17141.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Swissclean | Professional Dry Cleaning & Tailoring in Zürich", description: "Professional dry cleaning and tailoring services in Zürich. Expert textile care, precise alterations, and reliable garment treatment."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}