3 Commits

Author SHA1 Message Date
fed8d3962b Update src/app/page.tsx 2026-03-06 16:52:22 +00:00
b26c609725 Update src/app/layout.tsx 2026-03-06 16:52:22 +00:00
b2dc7fcd53 Merge version_1 into main
Merge version_1 into main
2026-03-06 16:49:42 +00:00
2 changed files with 22 additions and 50 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "EZ Smoke Shop | Premium Tobacco & Accessories", description: "Premium smoke shop offering quality tobacco products, cigars, hookah, vape, and accessories. Visit EZ Smoke Shop for expert selection and service.", keywords: "smoke shop, tobacco, cigars, hookah, vape, smoking accessories, local shop", robots: {
index: true,
follow: true,
},
openGraph: {
title: "EZ Smoke Shop | Premium Selection", description: "Discover premium tobacco products and smoking accessories at EZ Smoke Shop.", type: "website", siteName: "EZ Smoke Shop", images: [
{
url: "http://img.b2bpic.net/free-photo/grey-painted-fancy-restaurant-with-empty-dinner-table_140725-8730.jpg", alt: "EZ Smoke Shop Premium Products"},
],
},
twitter: {
card: "summary_large_image", title: "EZ Smoke Shop | Premium Selection", description: "Quality tobacco products and smoking accessories", images: ["http://img.b2bpic.net/free-photo/grey-painted-fancy-restaurant-with-empty-dinner-table_140725-8730.jpg"],
},
};
title: "EZ Smoke Shop - Premium Selection", description: "Discover our premium selection of quality tobacco products, accessories, and more."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -50,11 +50,14 @@ export default function LandingPage() {
background={{ variant: "animated-grid" }}
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/grey-painted-fancy-restaurant-with-empty-dinner-table_140725-8730.jpg", imageAlt: "Premium tobacco products display"},
imageSrc: "http://img.b2bpic.net/free-photo/grey-painted-fancy-restaurant-with-empty-dinner-table_140725-8730.jpg", imageAlt: "Premium tobacco products display"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/man-smoke-electronic-cigarette-vape-shop-vape-bar_639032-325.jpg", imageAlt: "Luxury smoking accessories collection"},
imageSrc: "http://img.b2bpic.net/free-photo/man-smoke-electronic-cigarette-vape-shop-vape-bar_639032-325.jpg", imageAlt: "Luxury smoking accessories collection"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/stylish-man-flannel-suit-glasses-listening-music-room-with-loft-interior_613910-6756.jpg", imageAlt: "Curated smoke shop selection"},
imageSrc: "http://img.b2bpic.net/free-photo/stylish-man-flannel-suit-glasses-listening-music-room-with-loft-interior_613910-6756.jpg", imageAlt: "Curated smoke shop selection"
},
]}
mediaAnimation="slide-up"
buttons={[
@@ -101,7 +104,7 @@ export default function LandingPage() {
<ProductCardThree
title="Featured Products"
description="Explore our carefully curated selection of premium smoking products and accessories"
tag="Shop Collection"
tag="Limited Stock Available"
tagIcon={ShoppingCart}
tagAnimation="slide-up"
textboxLayout="default"
@@ -136,13 +139,16 @@ export default function LandingPage() {
features={[
{
id: "1", title: "Authentic Quality Assurance", tags: ["Verified", "Certified"],
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-free-trial-labels-stamps-design_23-2149354104.jpg", imageAlt: "Quality assurance certification"},
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-free-trial-labels-stamps-design_23-2149354104.jpg", imageAlt: "Quality assurance certification"
},
{
id: "2", title: "Curated Product Selection", tags: ["Premium", "Diverse"],
imageSrc: "http://img.b2bpic.net/free-vector/flat-price-list-collection_23-2148084420.jpg", imageAlt: "Wide product selection"},
imageSrc: "http://img.b2bpic.net/free-vector/flat-price-list-collection_23-2148084420.jpg", imageAlt: "Wide product selection"
},
{
id: "3", title: "Expert Customer Service", tags: ["Professional", "Friendly"],
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-luxury-restaurant_23-2150598417.jpg", imageAlt: "Excellent customer service"},
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-luxury-restaurant_23-2150598417.jpg", imageAlt: "Excellent customer service"
},
]}
animationType="slide-up"
buttons={[{ text: "Discover More", href: "#about" }]}
@@ -160,7 +166,8 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
names={[
"Premium Brands Co", "Local Business Alliance", "Retail Excellence Award", "Community Partners", "Industry Leaders", "Quality Assurance Certified", "Customer Choice Award"]}
"Premium Brands Co", "Local Business Alliance", "Retail Excellence Award", "Community Partners", "Industry Leaders", "Quality Assurance Certified", "Customer Choice Award"
]}
buttons={[{ text: "Learn About Partnerships", href: "#about" }]}
buttonAnimation="slide-up"
speed={40}