5 Commits

Author SHA1 Message Date
60ae8f59bb Update src/app/page.tsx 2026-03-05 10:07:29 +00:00
218455565a Update src/app/layout.tsx 2026-03-05 10:07:28 +00:00
0b8880278b Merge version_1 into main
Merge version_1 into main
2026-03-05 10:04:36 +00:00
45e542f1a4 Merge version_1 into main
Merge version_1 into main
2026-03-05 10:03:51 +00:00
81dc6b8dbe Merge version_1 into main
Merge version_1 into main
2026-03-05 10:02:24 +00:00
2 changed files with 15 additions and 58 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1432,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -52,7 +52,7 @@ export default function HomePage() {
<HeroBillboardScroll
title="Premium Smart Home Solutions"
description="Discover intelligent gadgets that solve real problems. Free shipping on all orders."
tag="Free Shipping"
tag="Setup in Minutes, Control Everything"
tagIcon={Zap}
background={{ variant: "animated-grid" }}
buttons={[{ text: "Shop Now", href: "/shop" }]}
@@ -224,4 +224,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}