diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index b4a85b8..53bc438 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,70 +1,28 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Poppins } from "next/font/google";
+import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const halant = Halant({
- variable: "--font-halant",
- subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
+const geist = Geist({
+ variable: "--font-geist-sans", subsets: ["latin"],
});
-const inter = Inter({
- variable: "--font-inter",
- subsets: ["latin"],
-});
-
-const poppins = Poppins({
- variable: "--font-poppins",
- subsets: ["latin"],
- weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Nexora - Premium Smart Home Gadgets & Automation",
- description: "Discover premium smart home gadgets that solve real problems. Free shipping, 30-day guarantee, 24/7 support. Shopify & AutoDS compatible.",
- keywords: "smart home, gadgets, automation, Shopify, AutoDS, dropshipping",
- robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Nexora - Premium Smart Home Gadgets",
- description: "Premium smart home solutions with free shipping and 30-day money-back guarantee.",
- type: "website",
- siteName: "Nexora",
- images: [
- {
- url: "http://img.b2bpic.net/free-photo/female-couch-holding-her-phone-mug-sitting-front-table-with-gadgets_181624-56360.jpg",
- alt: "Nexora Smart Home Gadgets",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "Nexora - Smart Home Made Simple",
- description: "Premium gadgets, free shipping, trusted support.",
- images: ["http://img.b2bpic.net/free-photo/female-couch-holding-her-phone-mug-sitting-front-table-with-gadgets_181624-56360.jpg"],
- },
-};
+ title: "Nexora | Premium Smart Home Solutions", description: "Discover intelligent gadgets that solve real problems. Free shipping on all orders."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+
+ {children}
+
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index ea3872c..cb2fb37 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -52,7 +52,7 @@ export default function HomePage() {
);
-}
\ No newline at end of file
+}