Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 756fa229fd | |||
| 5780a66fad | |||
| ade6127da3 | |||
| f31c53e912 | |||
| 73c086b152 | |||
| a7e0511ebf |
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,9 +24,9 @@ export default function HomePage() {
|
||||
{
|
||||
title: "Shop", items: [
|
||||
{ label: "All Products", href: "/products" },
|
||||
{ label: "Disposable Vapes", href: "/products" },
|
||||
{ label: "Vapes", href: "/products" },
|
||||
{ label: "Edibles", href: "/products" },
|
||||
{ label: "Cannabis Oils", href: "/products" },
|
||||
{ label: "Oils", href: "/products" },
|
||||
{ label: "Concentrates", href: "/products" },
|
||||
],
|
||||
},
|
||||
@@ -113,25 +113,25 @@ export default function HomePage() {
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
title: "Disposable Vapes", description: "Premium pre-filled vaporizers offering convenience, consistency, and rapid onset. Perfect for discreet, portable consumption.", imageSrc: "http://img.b2bpic.net/free-photo/woman-with-cup-coffee-outdoor-city-street-sunset-with-electronic-cigarette-catching-sun-rays-enjoying-smoking_343596-7138.jpg"},
|
||||
title: "Vapes", description: "Premium pre-filled disposable vaporizers offering convenience, consistency, and rapid onset. Perfect for discreet, portable consumption.", imageSrc: "http://img.b2bpic.net/free-photo/woman-with-cup-coffee-outdoor-city-street-sunset-with-electronic-cigarette-catching-sun-rays-enjoying-smoking_343596-7138.jpg"},
|
||||
{
|
||||
id: 2,
|
||||
title: "Edibles", description: "Precisely dosed gummies, chocolates, and infused treats. Ideal for extended relief with consistent dosing and longer-lasting effects.", imageSrc: "http://img.b2bpic.net/free-photo/cannabis-brownies-cannabis-leaves-put-white-floor_1150-28189.jpg"},
|
||||
{
|
||||
id: 3,
|
||||
title: "Cannabis Oils & Tinctures", description: "Versatile liquid extracts for sublingual, topical, or culinary use. Offers precise dosing and rapid absorption.", imageSrc: "http://img.b2bpic.net/free-photo/cannabis-oil-cbd-oil-cannabis-extract-medical-cannabis-concept_1150-13455.jpg"},
|
||||
title: "Oils", description: "Versatile liquid extracts for sublingual, topical, or culinary use. Offers precise dosing and rapid absorption.", imageSrc: "http://img.b2bpic.net/free-photo/cannabis-oil-cbd-oil-cannabis-extract-medical-cannabis-concept_1150-13455.jpg"},
|
||||
{
|
||||
id: 4,
|
||||
title: "Hash & Hashish", description: "Traditional pressed and handcrafted hash from premium cultivars. Rich flavor profiles and potent effects.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-drugs-white-surface-with-beautiful-patterns_181624-8337.jpg"},
|
||||
title: "Hash", description: "Traditional pressed and handcrafted hash from premium cultivars. Rich flavor profiles and potent effects.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-drugs-white-surface-with-beautiful-patterns_181624-8337.jpg"},
|
||||
{
|
||||
id: 5,
|
||||
title: "Wax & Concentrates", description: "High-potency concentrates in various textures (budder, crumble, badder). Professional-grade for experienced users.", imageSrc: "http://img.b2bpic.net/free-photo/dried-yellow-flowers-glass-mug_114579-70438.jpg"},
|
||||
title: "Concentrates", description: "High-potency concentrates in various textures (budder, crumble, badder). Professional-grade for experienced users.", imageSrc: "http://img.b2bpic.net/free-photo/dried-yellow-flowers-glass-mug_114579-70438.jpg"},
|
||||
{
|
||||
id: 6,
|
||||
title: "Prerolls", description: "Expertly rolled joints using premium flower. Ready-to-use convenience with superior quality control.", imageSrc: "http://img.b2bpic.net/free-photo/medical-marijuana_93675-129021.jpg"},
|
||||
{
|
||||
id: 7,
|
||||
title: "Cannabis in Cans", description: "Innovative sealed cans preserving freshness and potency. Modern packaging with precise strain information and terpene profiles.", imageSrc: "http://img.b2bpic.net/free-photo/cbd-treatment-arrangement-still-life_23-2151160278.jpg"},
|
||||
title: "Cans", description: "Innovative sealed cans preserving freshness and potency. Modern packaging with precise strain information and terpene profiles.", imageSrc: "http://img.b2bpic.net/free-photo/cbd-treatment-arrangement-still-life_23-2151160278.jpg"},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="blur-reveal"
|
||||
@@ -229,4 +229,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user