Update src/app/layout.tsx

This commit is contained in:
2026-03-10 19:29:05 +00:00
parent b4b9486eb7
commit 4c96602ff2

View File

@@ -1,24 +1,63 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Nunito_Sans } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "MyStore Rwanda - Buy & Sell Online Securely",
description: "Rwanda's #1 marketplace for B2B and B2C commerce. Buy from verified sellers, sell with escrow protection, and access wholesale pricing. Fast delivery, secure payments in RWF.",
keywords: "Rwanda marketplace, buy sell online, e-commerce Rwanda, B2B marketplace, wholesale Rwanda, escrow protection",
metadataBase: new URL("https://mystore-rwanda.rw"),
alternates: {
canonical: "https://mystore-rwanda.rw",
},
openGraph: {
title: "MyStore Rwanda - Africa's Trusted Marketplace",
description: "Buy and sell anything from trusted sellers. Secure escrow protection, multiple payment methods, fast delivery across Rwanda.",
url: "https://mystore-rwanda.rw",
siteName: "MyStore Rwanda",
images: [
{
url: "http://img.b2bpic.net/free-photo/young-handsome-man-choosing-shoes-shop_1303-19724.jpg",
alt: "MyStore Rwanda Marketplace",
},
],
type: "website",
},
twitter: {
card: "summary_large_image",
title: "MyStore Rwanda - Buy & Sell Online",
description: "Join 50,000+ buyers and sellers on Rwanda's most trusted marketplace.",
images: [
"http://img.b2bpic.net/free-photo/young-handsome-man-choosing-shoes-shop_1303-19724.jpg",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +66,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunitoSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +80,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}