From ade6127da3073562bac6e7a2eef20ce5a7c73cc7 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 20:53:26 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 70 +++++----------------------------------------- 1 file changed, 7 insertions(+), 63 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f8062bf..a259c9e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}