Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ff77c004ba | |||
| 25529555c5 | |||
| 0cbf2dcd3a | |||
| 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 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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user