Update src/app/layout.tsx

This commit is contained in:
2026-03-06 09:32:30 +00:00
parent 47d0fda4cc
commit 056e6b0f2f

View File

@@ -6,12 +6,12 @@ const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const geistMono = Geist_Mono({
const geist_mono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Fresh Local - Quality Groceries in Kigali", description: "Affordable groceries and household products in Kigali. Quality rice, sugar, cooking oil, and everyday essentials. Fast local delivery and wholesale options."};
title: "Fresh Local - Quality Groceries in Kigali", description: "Affordable groceries and household products in Kigali. Fast local delivery, in-store pickup, and wholesale options available."};
export default function RootLayout({
children,
@@ -20,7 +20,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
<body className={`${geist.variable} ${geist_mono.variable} antialiased`}>
{children}
<script