diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 859f431..43a5b73 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 2bde100..01c982e 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -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() {