From 925e77e958748f57511204f3476c03e181e8b7be Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 04:15:02 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 45 ++++++++------------------------------------- 1 file changed, 8 insertions(+), 37 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e46d108..d4a1ab5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,25 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; +import "./styles/variables.css"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "ColorPaint - Premium Paint Shop | Order Online with WhatsApp", description: "Shop premium quality paints with 500+ colors. Easy online ordering via WhatsApp with real-time delivery updates. Same-day delivery available.", keywords: "paint shop, buy paint online, premium paint, interior paint, exterior paint, WhatsApp orders, paint delivery", metadataBase: new URL("https://colorpaint.com"), - alternates: { - canonical: "https://colorpaint.com" - }, - openGraph: { - title: "ColorPaint - Premium Paint Shop", description: "Transform your spaces with premium quality paints. Order online via WhatsApp.", url: "https://colorpaint.com", siteName: "ColorPaint", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/tools-art-repairing-paint-space-text_185193-108852.jpg", alt: "ColorPaint - Premium Paint Collection" - } - ] - }, - twitter: { - card: "summary_large_image", title: "ColorPaint - Premium Paint Shop", description: "Shop premium quality paints with 500+ colors and WhatsApp ordering.", images: ["http://img.b2bpic.net/free-photo/tools-art-repairing-paint-space-text_185193-108852.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "ColorPaint - Premium Quality Paints & Fast Delivery", description: "Transform your spaces with premium quality paints. Browse 500+ colors, get 24-hour delivery, and expert support via WhatsApp."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +