8 Commits

Author SHA1 Message Date
35b45423c4 Update src/app/page.tsx 2026-03-06 09:32:30 +00:00
056e6b0f2f Update src/app/layout.tsx 2026-03-06 09:32:30 +00:00
47d0fda4cc Merge version_2 into main
Merge version_2 into main
2026-03-06 09:30:44 +00:00
c32fb042ff Update src/app/page.tsx 2026-03-06 09:30:40 +00:00
eb37638467 Update src/app/layout.tsx 2026-03-06 09:30:39 +00:00
2f936a8f2d Merge version_1 into main
Merge version_1 into main
2026-03-06 09:22:23 +00:00
008869d50e Merge version_1 into main
Merge version_1 into main
2026-03-06 09:21:37 +00:00
a3d70db263 Merge version_1 into main
Merge version_1 into main
2026-03-06 09:20:01 +00:00
2 changed files with 16 additions and 65 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 geist_mono = 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. Fast local delivery, in-store pickup, and wholesale options available."};
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} ${geist_mono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1438,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -82,9 +82,9 @@ export default function HomePage() {
imageSrc: "http://img.b2bpic.net/free-photo/sesame-seeds-bag-dark-background_1150-45317.jpg?_wi=1", imageAlt: "Quality rice products"},
]}
buttons={[
{
text: "Order on WhatsApp", href: "https://wa.me/250783847767?text=Hi%20Fresh%20Local%20store,%20I'd%20like%20to%20place%20an%20order"},
{ text: "Call Now", href: "tel:+250783847767" },
{
text: "Order Now on WhatsApp", href: "https://wa.me/250783847767?text=Hi%20Fresh%20Local%20store,%20I'd%20like%20to%20place%20an%20order"},
]}
buttonAnimation="slide-up"
mediaAnimation="opacity"
@@ -233,4 +233,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}