10 Commits

Author SHA1 Message Date
ff77c004ba Update src/app/page.tsx 2026-03-03 17:43:16 +00:00
25529555c5 Update src/app/layout.tsx 2026-03-03 17:43:15 +00:00
0cbf2dcd3a Merge version_3 into main
Merge version_3 into main
2026-03-03 17:26:56 +00:00
2fd4372b29 Update src/app/page.tsx 2026-03-03 17:26:50 +00:00
86c1c45a92 Merge version_2 into main
Merge version_2 into main
2026-03-03 17:23:25 +00:00
81f33a3e1c Update src/app/page.tsx 2026-03-03 17:23:19 +00:00
7a34f81e52 Update src/app/layout.tsx 2026-03-03 17:23:16 +00:00
33401815a2 Merge version_1 into main
Merge version_1 into main
2026-03-03 17:20:41 +00:00
aae4074fb7 Merge version_1 into main
Merge version_1 into main
2026-03-03 17:09:01 +00:00
fcdee18a52 Merge version_1 into main
Merge version_1 into main
2026-03-03 16:59:23 +00:00
2 changed files with 11 additions and 36 deletions

View File

@@ -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 vaping products and tobacco selection"};
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>
);
}
}

View File

@@ -193,10 +193,10 @@ 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: "Do you verify age?", content: "Yes, we strictly comply with all legal age verification requirements for this regulated product category. We maintain comprehensive age verification protocols at checkout to ensure compliance with federal and state regulations. Our commitment to legal compliance protects both our customers and our business, giving you complete assurance that you're purchasing from a responsible, fully-compliant retailer. Every transaction is verified and documented to meet or exceed all regulatory requirements."
},
{
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."
id: "2", 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: "3", title: "What is your return policy?", content: "We offer a 30-day return policy on unopened products in original condition. Opened or used items may be subject to different terms."
@@ -268,4 +268,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}