Update src/app/layout.tsx

This commit is contained in:
2026-03-04 03:04:41 +00:00
parent 9458af34e7
commit 7e4e36fba0

View File

@@ -1,64 +1,24 @@
import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "./styles/variables.css";
import "./styles/base.css";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Aqua Luxe - Premium Luxury Water Bottles", description: "Experience luxury hydration with Aqua Luxe's premium sustainable water bottles. Crafted for the discerning consumer. Shop our collection today.", keywords: "luxury water bottle, premium bottle, sustainable bottle, stainless steel bottle, eco-friendly", metadataBase: new URL("https://www.aqualuxe.com"),
alternates: {
canonical: "https://www.aqualuxe.com"
},
openGraph: {
title: "Aqua Luxe - Premium Luxury Water Bottles", description: "Elevate your hydration with our meticulously crafted luxury water bottles.", siteName: "Aqua Luxe", type: "website", images: [
{
url: "http://img.b2bpic.net/free-vector/gradient-art-deco-story-collection_23-2149162668.jpg", alt: "Premium luxury water bottle"
}
]
},
twitter: {
card: "summary_large_image", title: "Aqua Luxe - Premium Water Bottles", description: "Luxury meets sustainability. Discover our premium collection.", images: ["http://img.b2bpic.net/free-vector/gradient-art-deco-story-collection_23-2149162668.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Aqua Luxe - Premium Water Bottles", description: "Experience luxury hydration with Aqua Luxe premium water bottles. Sustainable, elegant, and engineered for perfection."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${manrope.variable} ${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1426,7 +1386,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}