From a4a8a811c911235482b81c579f646e616ba03b2b Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 09:43:18 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 54 ++++++---------------------------------------- 1 file changed, 7 insertions(+), 47 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 79d3f71..2bc8d9b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Tiletopia – Tile & Fireplace Showroom Cape Town", description: "Cape Town's trusted tile and fireplace showroom. Wide selection of premium tiles, fireplaces, and accessories with expert consultation and same-day delivery. Visit Gants Plaza showroom today.", keywords: "tiles Cape Town, fireplace Cape Town, tile showroom, interior tiles, home renovation, ceramic tiles, porcelain tiles", metadataBase: new URL("https://tiletopia.co.za"), - alternates: { - canonical: "https://tiletopia.co.za" - }, - openGraph: { - title: "Tiletopia – Find Your Perfect Tile", description: "Premier tile and fireplace showroom in Cape Town with 4.7★ rating. Expert advice, premium selection, same-day delivery.", url: "https://tiletopia.co.za", siteName: "Tiletopia", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/center-cooktop-blue-modules-stone-backdrop_169016-69293.jpg", alt: "Tiletopia premium tiles" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Tiletopia – Find Your Perfect Tile", description: "Cape Town's trusted tile and fireplace showroom with premium selection and expert service.", images: ["http://img.b2bpic.net/free-photo/center-cooktop-blue-modules-stone-backdrop_169016-69293.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Tiletopia - Cape Town's Premium Tile & Fireplace Showroom", description: "Find the perfect tiles and fireplaces at Tiletopia. Premium selection, expert consultants, same-day delivery in Cape Town."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}