Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-06 09:30:44 +00:00
2 changed files with 17 additions and 66 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1438,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -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() {
<ProductCardOne
title="Featured Products"
description="Browse our most popular grocery items and household essentials. All products available for in-store shopping, delivery, or WhatsApp ordering."
tag="Best Sellers"
tagIcon={Sparkles}
tag="Bestselling Essentials"
tagIcon={Package}
tagAnimation="slide-up"
products={[
{
@@ -233,4 +233,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}