From 26038dfca5713f3b7c39ee535efcd85783e6f3c2 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 11:45:21 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1421 +------------------------------------------- 1 file changed, 7 insertions(+), 1414 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 15fdcc5..214ebf1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1426 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Mint Decor | Premium Paints & Decorating Supplies Ireland", description: "Transform your home with Mint Decor. Premium paints, expert colour advice, and professional decorating supplies in Ireland. Shop now for your next project.", keywords: "paint shop Ireland, decorating supplies, interior paint, exterior paint, colour consultation, home renovation, paint brushes, rollers", metadataBase: new URL("https://www.mintdecor.ie"), - alternates: { - canonical: "https://www.mintdecor.ie" - }, - openGraph: { - title: "Mint Decor | Transform Your Home with Colour", description: "Premium paints and decorating supplies with expert colour advice from Ireland's trusted local paint shop.", url: "https://www.mintdecor.ie", siteName: "Mint Decor", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/flowers-vase-with-blank-paper-sheet_23-2148096587.jpg", alt: "Bright modern living room with fresh painted walls" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Mint Decor | Premium Paints Ireland", description: "Transform your home with quality paints and expert colour advice from Mint Decor.", images: ["http://img.b2bpic.net/free-photo/flowers-vase-with-blank-paper-sheet_23-2148096587.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Mint Decor | Premium Paint & Decorating Supplies Ireland", description: "Transform your home with premium paints, expert colour advice, and professional decorating supplies from Mint Decor, Ireland's trusted local paint shop."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -