5 Commits

Author SHA1 Message Date
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 10 additions and 35 deletions

View File

@@ -1,44 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Nunito_Sans } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const nunitoSans = Nunito_Sans({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-nunito-sans", subsets: ["latin"],
});
export const metadata: Metadata = { 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 Vape & Tobacco Selection - Your trusted partner for quality products"};
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
}
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${nunitoSans.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1406,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -48,7 +48,7 @@ export default function LandingPage() {
tagAnimation="slide-up" tagAnimation="slide-up"
buttons={[ buttons={[
{ text: "Shop Now", href: "#products" }, { text: "Shop Now", href: "#products" },
{ text: "Learn More", href: "#about" } { text: "View Products", href: "#products" }
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
background={{ variant: "plain" }} background={{ variant: "plain" }}
@@ -268,4 +268,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }