Update src/app/layout.tsx

This commit is contained in:
2026-03-04 20:53:26 +00:00
parent f31c53e912
commit ade6127da3

View File

@@ -1,75 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Poppins } 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 poppins = Poppins({
variable: "--font-poppins",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "ELEVATE - Premium Cannabis Dispensary UK | Lab-Tested THC Products",
description: "Discover premium cannabis products including disposable vapes, edibles, oils, hash, wax, prerolls & cans. Licensed UK retailer with 100% lab-tested products. Age 18+ required.",
keywords: "cannabis dispensary UK, THC products, cannabis vapes, edibles, cannabis oils, prerolls, hash, wax, premium cannabis retail",
metadataBase: new URL("https://elevate-cannabis.uk"),
alternates: {
canonical: "https://elevate-cannabis.uk",
},
openGraph: {
title: "ELEVATE - Premium Cannabis Dispensary",
description: "Curated cannabis retail with lab-tested products from trusted brands. Discreet UK delivery.",
url: "https://elevate-cannabis.uk",
siteName: "ELEVATE",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/weed-leaves-oil-still-life_23-2151651043.jpg",
alt: "Premium cannabis products showcase",
},
],
},
twitter: {
card: "summary_large_image",
title: "ELEVATE Premium Cannabis Dispensary",
description: "Discover premium, lab-tested cannabis products. Licensed UK retailer.",
images: ["http://img.b2bpic.net/free-photo/weed-leaves-oil-still-life_23-2151651043.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "ELEVATE - Premium Cannabis Retail", description: "Premium UK cannabis dispensary offering curated selection of vapes, edibles, oils, and more from trusted brands."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1437,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}