From 5cc6a47ae97ce07112be2cbe1da8428cfd3dfcab Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 03:43:02 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1387 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1387 insertions(+) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e69de29..235a6ec 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -0,0 +1,1387 @@ +import type { Metadata } from "next"; +import { Inter } from "next/font/google"; +import "@/styles/globals.css"; + +const inter = Inter({ subsets: ["latin"] }); + +export const metadata: Metadata = { + title: "SMS Unique Solutions - Professional Powder Coating Services", description: "Premium powder coating services in Bengaluru. Professional metal coating solutions with 4.7★ customer satisfaction. Industrial-grade quality for manufacturing and customization needs."}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + {children} +