Update src/app/layout.tsx

This commit is contained in:
2026-03-09 19:59:41 +00:00
parent d7bb20ce97
commit 39be8217e9

View File

@@ -5,7 +5,8 @@ import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "TechVault - Premium Tech E-Commerce Platform", description: "Next-generation e-commerce platform for cutting-edge technology with seamless checkout and real-time inventory tracking."};
title: "TechVault - Premium Tech E-Commerce Platform", description: "Next-generation e-commerce platform for cutting-edge technology with seamless checkout and real-time inventory tracking."
};
export default function RootLayout({
children,
@@ -13,7 +14,7 @@ export default function RootLayout({
children: React.ReactNode;
}) {
return (
<html lang="en">
<html lang="en" suppressHydrationWarning>
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{