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 type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import { Poppins } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const geist = Geist({
variable: "--font-halant", variable: "--font-geist-sans", subsets: ["latin"],
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", variable: "--font-geist-mono", subsets: ["latin"],
subsets: ["latin"],
});
const poppins = Poppins({
variable: "--font-poppins",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Nexora - Premium Smart Home Gadgets & Automation", title: "Nexora | Premium Smart Home Solutions", description: "Discover intelligent gadgets that solve real problems. Free shipping on all orders."};
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"],
},
};
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={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1432,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

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