Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2fd4372b29 | |||
| 86c1c45a92 | |||
| 81f33a3e1c | |||
| 7a34f81e52 | |||
| 33401815a2 | |||
| aae4074fb7 | |||
| fcdee18a52 |
@@ -1,44 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Nunito_Sans } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const nunitoSans = Nunito_Sans({
|
||||
variable: "--font-nunito-sans", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Mableton Tobacco & Vape | Premium Products", description: "Discover premium vaping devices, e-liquids, and tobacco products at Mableton Tobacco & Vape. Quality selection with expert customer service.", keywords: "vape shop, tobacco store, vaping devices, e-liquids, premium vape, Mableton", openGraph: {
|
||||
title: "Mableton Tobacco & Vape", description: "Premium vaping and tobacco products with expert service", siteName: "Mableton Tobacco & Vape", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148370476.jpg", alt: "Mableton Tobacco & Vape Store"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Mableton Tobacco & Vape", description: "Premium vaping devices and tobacco products", images: ["http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148370476.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "Mableton Tobacco & Vape", description: "Premium Vape & Tobacco Selection - Your trusted partner for quality products"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${nunitoSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1406,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -41,14 +41,14 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardDashboard
|
||||
title="Premium Vape & Tobacco Selection"
|
||||
description="Discover our curated collection of high-quality vaping products and premium tobacco. Trusted by customers for exceptional quality and expert service."
|
||||
title="Premium Vape & Kratom Selection"
|
||||
description="Discover our curated collection of high-quality vaping products, premium kratom strains, and accessories. Trusted by customers for exceptional quality and expert service."
|
||||
tag="Quality First"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Shop Now", href: "#products" },
|
||||
{ text: "Learn More", href: "#about" }
|
||||
{ text: "View Products", href: "#about" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
@@ -77,7 +77,7 @@ export default function LandingPage() {
|
||||
],
|
||||
listTitle: "Recent Orders", listItems: [
|
||||
{ icon: "CheckCircle" as any, title: "Premium Vape Kit", status: "Delivered" },
|
||||
{ icon: "Truck" as any, title: "Tobacco Selection", status: "In Transit" },
|
||||
{ icon: "Truck" as any, title: "Kratom Selection", status: "In Transit" },
|
||||
{ icon: "Package" as any, title: "Accessories Pack", status: "Processing" }
|
||||
]
|
||||
}}
|
||||
@@ -87,7 +87,7 @@ export default function LandingPage() {
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardOne
|
||||
title="Featured Products"
|
||||
description="Browse our selection of premium vaping devices and tobacco products"
|
||||
description="Browse our selection of premium vaping devices, kratom strains, and accessories"
|
||||
tag="Best Sellers"
|
||||
tagIcon={CheckCircle}
|
||||
tagAnimation="slide-up"
|
||||
@@ -100,7 +100,7 @@ export default function LandingPage() {
|
||||
id: "1", name: "Pro Vape Device X1", price: "$89.99", imageSrc: "http://img.b2bpic.net/free-photo/stylish-young-couple-with-vape-city_1157-23847.jpg", imageAlt: "Pro Vape Device X1"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Premium Tobacco Blend", price: "$34.99", imageSrc: "http://img.b2bpic.net/free-photo/macro-shot-person-s-hand-shaving-chocolate-bar-with-peeler_23-2147898316.jpg", imageAlt: "Premium Tobacco Blend"
|
||||
id: "2", name: "Premium Kratom Blend", price: "$34.99", imageSrc: "http://img.b2bpic.net/free-photo/macro-shot-person-s-hand-shaving-chocolate-bar-with-peeler_23-2147898316.jpg", imageAlt: "Premium Kratom Blend"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Advanced Atomizer Kit", price: "$54.99", imageSrc: "http://img.b2bpic.net/free-vector/vaping-accessories-icons-set_1284-23345.jpg", imageAlt: "Advanced Atomizer Kit"
|
||||
@@ -114,7 +114,7 @@ export default function LandingPage() {
|
||||
tag="Our Story"
|
||||
tagIcon={Heart}
|
||||
tagAnimation="slide-up"
|
||||
title="Your Trusted Partner in Premium Vaping & Tobacco"
|
||||
title="Your Trusted Partner in Premium Vaping & Kratom"
|
||||
description="Mableton Tobacco & Vape"
|
||||
subdescription="Serving the community with integrity since 2015"
|
||||
icon={Award}
|
||||
@@ -168,7 +168,7 @@ export default function LandingPage() {
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SocialProofOne
|
||||
title="Trusted by Industry Leaders"
|
||||
description="Partnering with top brands in the vaping and tobacco industry"
|
||||
description="Partnering with top brands in the vaping and kratom industry"
|
||||
tag="Partners"
|
||||
tagIcon={Handshake}
|
||||
tagAnimation="slide-up"
|
||||
@@ -179,7 +179,7 @@ export default function LandingPage() {
|
||||
logos={[
|
||||
"http://img.b2bpic.net/free-vector/collection-retro-logos_23-2148448608.jpg", "http://img.b2bpic.net/free-vector/collection-retro-logos_23-2148448608.jpg", "http://img.b2bpic.net/free-vector/collection-retro-logos_23-2148448608.jpg", "http://img.b2bpic.net/free-vector/collection-retro-logos_23-2148448608.jpg", "http://img.b2bpic.net/free-vector/collection-retro-logos_23-2148448608.jpg", "http://img.b2bpic.net/free-vector/collection-retro-logos_23-2148448608.jpg", "http://img.b2bpic.net/free-vector/collection-retro-logos_23-2148448608.jpg"
|
||||
]}
|
||||
names={["VapeCo Premium", "Tobacco Masters", "Flavor Labs", "Premium Devices", "Quality Essentials", "Expert Traders", "Trusted Brands"]}
|
||||
names={["VapeCo Premium", "Kratom Masters", "Flavor Labs", "Premium Devices", "Quality Essentials", "Expert Traders", "Trusted Brands"]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -193,7 +193,7 @@ export default function LandingPage() {
|
||||
animationType="smooth"
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "What products do you carry?", content: "We offer a comprehensive selection of vaping devices, e-liquids, traditional tobacco products, and accessories from leading manufacturers."
|
||||
id: "1", title: "What products do you carry?", content: "We offer a comprehensive selection of vaping devices, e-liquids, premium kratom strains, and accessories from leading manufacturers."
|
||||
},
|
||||
{
|
||||
id: "2", title: "Do you verify age?", content: "Yes, we strictly comply with all age verification requirements. All customers must verify they are of legal age before purchasing age-restricted products."
|
||||
@@ -242,7 +242,7 @@ export default function LandingPage() {
|
||||
{
|
||||
title: "Products", items: [
|
||||
{ label: "Vaping Devices", href: "#products" },
|
||||
{ label: "Tobacco Selection", href: "#products" },
|
||||
{ label: "Kratom Selection", href: "#products" },
|
||||
{ label: "Accessories", href: "#products" },
|
||||
{ label: "New Arrivals", href: "#products" }
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user