Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fed8d3962b | |||
| b26c609725 | |||
| b2dc7fcd53 |
@@ -1,54 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Open_Sans } from "next/font/google";
|
import "@/styles/globals.css";
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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: {
|
title: "EZ Smoke Shop - Premium Selection", description: "Discover our premium selection of quality tobacco products, accessories, and more."};
|
||||||
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"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -50,11 +50,14 @@ export default function LandingPage() {
|
|||||||
background={{ variant: "animated-grid" }}
|
background={{ variant: "animated-grid" }}
|
||||||
mediaItems={[
|
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"
|
mediaAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
@@ -101,7 +104,7 @@ export default function LandingPage() {
|
|||||||
<ProductCardThree
|
<ProductCardThree
|
||||||
title="Featured Products"
|
title="Featured Products"
|
||||||
description="Explore our carefully curated selection of premium smoking products and accessories"
|
description="Explore our carefully curated selection of premium smoking products and accessories"
|
||||||
tag="Shop Collection"
|
tag="Limited Stock Available"
|
||||||
tagIcon={ShoppingCart}
|
tagIcon={ShoppingCart}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -136,13 +139,16 @@ export default function LandingPage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "1", title: "Authentic Quality Assurance", tags: ["Verified", "Certified"],
|
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"],
|
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"],
|
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"
|
animationType="slide-up"
|
||||||
buttons={[{ text: "Discover More", href: "#about" }]}
|
buttons={[{ text: "Discover More", href: "#about" }]}
|
||||||
@@ -160,7 +166,8 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
names={[
|
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" }]}
|
buttons={[{ text: "Learn About Partnerships", href: "#about" }]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
speed={40}
|
speed={40}
|
||||||
|
|||||||
Reference in New Issue
Block a user