Update src/app/layout.tsx

This commit is contained in:
2026-03-05 09:51:10 +00:00
parent e090c4beae
commit 1dc4a8a045

View File

@@ -7,41 +7,27 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
variable: "--font-inter", subsets: ["latin"],
});
const roboto = Roboto({
variable: "--font-roboto",
subsets: ["latin"],
variable: "--font-roboto", subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
export const metadata: Metadata = {
title: "Nexora - Premium Smart Home Gadgets for Modern Living",
description: "Discover smart home solutions that save time, enhance convenience, and improve your lifestyle. Premium gadgets with free shipping, 30-day guarantee, and 24/7 support.",
keywords: "smart home gadgets, home automation, smart devices, IoT solutions, premium smart home",
metadataBase: new URL("https://nexora.com"),
title: "Nexora - Premium Smart Home Gadgets for Modern Living", description: "Discover smart home solutions that save time, enhance convenience, and improve your lifestyle. Premium gadgets with free shipping, 30-day guarantee, and 24/7 support.", keywords: "smart home gadgets, home automation, smart devices, IoT solutions, premium smart home", metadataBase: new URL("https://nexora.com"),
alternates: {
canonical: "https://nexora.com",
},
canonical: "https://nexora.com"},
openGraph: {
title: "Nexora - Smart Solutions for Everyday Living",
description: "Transform your home with premium smart gadgets designed for convenience and efficiency.",
siteName: "Nexora",
type: "website",
},
title: "Nexora - Smart Solutions for Everyday Living", description: "Transform your home with premium smart gadgets designed for convenience and efficiency.", siteName: "Nexora", type: "website"},
twitter: {
card: "summary_large_image",
title: "Nexora - Smart Home Gadgets",
description: "Premium smart home solutions with free shipping and 30-day guarantee.",
},
card: "summary_large_image", title: "Nexora - Smart Home Gadgets", description: "Premium smart home solutions with free shipping and 30-day guarantee."},
robots: {
index: true,
follow: true,
@@ -1432,4 +1418,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}