Merge version_2 into main #3
@@ -1,57 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Figtree } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const figtree = Figtree({
|
||||
variable: "--font-figtree", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Pii Jii - Pure Bottled Water Kisumu | Fresh, Affordable & Trusted", description: "Pii Jii bottled water - Kiwasco-filtered, pure & affordable. Fast delivery throughout Kisumu. Order online or call +254 700 123 456. Family & business solutions.", keywords: "bottled water Kisumu, water delivery Kenya, pure water, affordable water, Kiwasco filtered, fresh water, water supplier", metadataBase: new URL("https://piijii.co.ke"),
|
||||
alternates: {
|
||||
canonical: "https://piijii.co.ke"},
|
||||
openGraph: {
|
||||
title: "Pii Jii - Pure Bottled Water Kisumu", description: "Experience pure, fresh bottled water with fast delivery throughout Kisumu. Kiwasco-filtered and trusted by thousands.", url: "https://piijii.co.ke", siteName: "Pii Jii", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/transparent-water-bottle-indoors_23-2151049072.jpg", alt: "Pii Jii Pure Bottled Water"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Pii Jii - Pure Bottled Water", description: "Fresh, affordable water delivery in Kisumu. Order now!", images: ["http://img.b2bpic.net/free-photo/transparent-water-bottle-indoors_23-2151049072.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Pii Jii - Pure Bottled Water in Kisumu", description: "Experience pure, fresh Kiwasco-filtered bottled water. Trusted by thousands of families and businesses in Kisumu. Order now!"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -77,15 +77,15 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
title: "Fast Home Delivery", description: "Quick and reliable delivery of bottled water directly to your doorstep. Available throughout Kisumu with same-day and next-day options.", imageSrc: "http://img.b2bpic.net/free-photo/delivery-man-posing-with-water-bottle-smartphone_23-2148382519.jpg"
|
||||
title: "Same-Day Delivery to Your Home", description: "Quick and reliable delivery of bottled water directly to your doorstep. Available throughout Kisumu with same-day and next-day options.", imageSrc: "http://img.b2bpic.net/free-photo/delivery-man-posing-with-water-bottle-smartphone_23-2148382519.jpg", imageAlt: "Same-day water bottle delivery to your home in Kisumu"
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Bulk Supply for Businesses", description: "Wholesale pricing for restaurants, offices, schools, and event venues. Flexible subscription plans to meet your volume requirements.", imageSrc: "http://img.b2bpic.net/free-photo/hardworking-professional-female-worker-manager-with-hardhat-reflective-jacket-leaned-cardboard-boxes-looking-aside-large-warehouse_342744-1449.jpg"
|
||||
title: "Wholesale Solutions for Your Business", description: "Wholesale pricing for restaurants, offices, schools, and event venues. Flexible subscription plans to meet your volume requirements.", imageSrc: "http://img.b2bpic.net/free-photo/hardworking-professional-female-worker-manager-with-hardhat-reflective-jacket-leaned-cardboard-boxes-looking-aside-large-warehouse_342744-1449.jpg", imageAlt: "Professional business bulk water supply warehouse management"
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Custom Branded Bottles", description: "Personalized water bottles for your events, promotions, or corporate needs. Perfect for weddings, conferences, and brand activations.", imageSrc: "http://img.b2bpic.net/free-photo/woman-drinks-water-after-hard-training-outdoors-holds-bottle-water-uses-smartwatch-dressed-windbreaker-feels-thirsty-after-sport-practice-poses-blurred_273609-54118.jpg"
|
||||
title: "Premium Branded Water Bottles for Events", description: "Personalized water bottles for your events, promotions, or corporate needs. Perfect for weddings, conferences, and brand activations.", imageSrc: "http://img.b2bpic.net/free-photo/woman-drinks-water-after-hard-training-outdoors-holds-bottle-water-uses-smartwatch-dressed-windbreaker-feels-thirsty-after-sport-practice-poses-blurred_273609-54118.jpg", imageAlt: "Custom branded water bottles for corporate events and promotions"
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
|
||||
Reference in New Issue
Block a user