diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 1704f88..ba4ca8d 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,76 +1,28 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { DM_Sans } 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 dmSans = DM_Sans({
- variable: "--font-dm-sans",
- subsets: ["latin"],
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Fresh Local - Affordable Groceries & Household Products Kigali",
- description: "Quality grocery store in Kigali near Kigali City Market. Order rice, sugar, cooking oil, and more via WhatsApp. Fast delivery & wholesale available.",
- keywords: "grocery store Kigali, buy rice Kigali, sugar supplier Kigali, cooking oil Kigali, household supplies Rwanda, wholesale groceries, fresh products Kigali",
- metadataBase: new URL("https://freshlocal.rw"),
- alternates: {
- canonical: "https://freshlocal.rw",
- },
- openGraph: {
- title: "Fresh Local - Affordable Groceries in Kigali",
- description: "Quality groceries and household products. Order on WhatsApp. Located near Kigali City Market.",
- url: "https://freshlocal.rw",
- siteName: "Fresh Local",
- type: "website",
- images: [
- {
- url: "http://img.b2bpic.net/free-photo/woman-supermarket-beautiful-young-woman-shopping-supermarket-buying-fresh-organic-vegetables_169016-3365.jpg",
- alt: "Fresh Local grocery store",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "Fresh Local - Affordable Groceries Kigali",
- description: "Quality grocery store with fast WhatsApp ordering and local delivery",
- images: [
- "http://img.b2bpic.net/free-photo/woman-supermarket-beautiful-young-woman-shopping-supermarket-buying-fresh-organic-vegetables_169016-3365.jpg",
- ],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ 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."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+
+ {children}
+
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 479914e..6b0bf8e 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -10,7 +10,7 @@ import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo";
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterMedia from "@/components/sections/footer/FooterMedia";
-import { ShoppingCart, Sparkles, CheckCircle, TrendingUp, Star, MessageSquare, MapPin } from "lucide-react";
+import { ShoppingCart, Sparkles, CheckCircle, TrendingUp, Star, MessageSquare, MapPin, Package } from "lucide-react";
export default function HomePage() {
const navItems = [
@@ -95,8 +95,8 @@ export default function HomePage() {
);
-}
\ No newline at end of file
+}