Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -146,7 +146,7 @@ export default function AboutPage() {
|
||||
handle: "@sarahk_events",
|
||||
testimonial: "N&H BAKERY created the most stunning wedding cake for our special day. The attention to detail and taste were absolutely incredible. Highly recommended!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-girl-dressed-elegant-gray-dress-standing-with-crossed-arms-while-leaning-against-brick-wall_613910-17632.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-girl-dressed-elegant-gray-dress-standing-with-crossed-arms-while-leaning-against-brick-wall_613910-17632.jpg?_wi=2",
|
||||
imageAlt: "professional woman portrait headshot",
|
||||
},
|
||||
{
|
||||
@@ -155,7 +155,7 @@ export default function AboutPage() {
|
||||
handle: "@jamesmw",
|
||||
testimonial: "I order their croissants every weekend. Fresh, flaky, and absolutely delicious. The best bakery in Nairobi by far!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-bearded-man-white-shirt-jacket-posing-camera-with-broad-smile-isolated-gray_171337-629.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-bearded-man-white-shirt-jacket-posing-camera-with-broad-smile-isolated-gray_171337-629.jpg?_wi=2",
|
||||
imageAlt: "professional man portrait headshot",
|
||||
},
|
||||
{
|
||||
@@ -164,7 +164,7 @@ export default function AboutPage() {
|
||||
handle: "@graceo_lifestyle",
|
||||
testimonial: "For my daughter's birthday, N&H BAKERY delivered beyond expectations. The custom cake was a masterpiece and everyone loved it!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-businesswoman-smiling-looking-camera-successful-confident-grey-haired-manager-sitting-office-room-workplace-business-management-concept_74855-7343.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-businesswoman-smiling-looking-camera-successful-confident-grey-haired-manager-sitting-office-room-workplace-business-management-concept_74855-7343.jpg?_wi=2",
|
||||
imageAlt: "smiling woman professional headshot",
|
||||
},
|
||||
{
|
||||
@@ -173,7 +173,7 @@ export default function AboutPage() {
|
||||
handle: "@peter_designs",
|
||||
testimonial: "Their custom order service is fantastic. They brought my vision to life with professionalism and creativity. Worth every shilling!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-young-man-work_23-2149116570.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-young-man-work_23-2149116570.jpg?_wi=2",
|
||||
imageAlt: "professional man smiling portrait",
|
||||
},
|
||||
{
|
||||
@@ -182,7 +182,7 @@ export default function AboutPage() {
|
||||
handle: "@amarah_kitchen",
|
||||
testimonial: "As a food blogger, I'm impressed by the quality and consistency. N&H BAKERY maintains premium standards every single day.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg?_wi=2",
|
||||
imageAlt: "professional woman creative portrait",
|
||||
},
|
||||
{
|
||||
@@ -191,7 +191,7 @@ export default function AboutPage() {
|
||||
handle: "@davidoch",
|
||||
testimonial: "Catered my corporate event with their premium package. Professional, delicious, and exceeded all expectations. Will definitely use again!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-young-businessman-walking-near-business-center_171337-19784.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-young-businessman-walking-near-business-center_171337-19784.jpg?_wi=2",
|
||||
imageAlt: "professional man corporate portrait",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -96,7 +96,7 @@ export default function CustomOrdersPage() {
|
||||
animationType="slide-up"
|
||||
mediaAnimation="opacity"
|
||||
mediaPosition="right"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/concentrated-african-american-call-center-operator-working_74855-4048.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/concentrated-african-american-call-center-operator-working_74855-4048.jpg?_wi=2"
|
||||
imageAlt="Customer support representation"
|
||||
faqsAnimation="blur-reveal"
|
||||
faqs={[
|
||||
|
||||
@@ -1,24 +1,61 @@
|
||||
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 "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "N&H BAKERY - Premium Baked Goods & Custom Cakes | Nairobi",
|
||||
description: "Artisanal bakery in Nairobi offering premium cakes, pastries, bread & beverages. Custom wedding & birthday cakes. Fresh baked daily. Order online with free delivery.",
|
||||
keywords: "bakery, cakes, pastries, custom cakes, wedding cakes, birthday cakes, bread, Nairobi, Kenya",
|
||||
metadataBase: new URL("https://nhbakery.co.ke"),
|
||||
alternates: {
|
||||
canonical: "https://nhbakery.co.ke",
|
||||
},
|
||||
openGraph: {
|
||||
title: "N&H BAKERY - Premium Artisanal Baked Goods",
|
||||
description: "Freshly baked goodness. Custom cakes, pastries, and premium baked goods in Nairobi.",
|
||||
url: "https://nhbakery.co.ke",
|
||||
siteName: "N&H BAKERY",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://nhbakery.co.ke/og-image.jpg",
|
||||
alt: "N&H BAKERY Premium Baked Goods",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "N&H BAKERY - Freshly Baked Goodness",
|
||||
description: "Premium artisanal bakery in Nairobi. Custom cakes, pastries & more.",
|
||||
images: ["https://nhbakery.co.ke/twitter-image.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${dmSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -103,7 +103,7 @@ const MenuPage = () => {
|
||||
price: "KSh 5,500",
|
||||
rating: 5,
|
||||
reviewCount: "48 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wedding-cake_1157-538.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wedding-cake_1157-538.jpg?_wi=2",
|
||||
imageAlt: "elegant white wedding cake design",
|
||||
},
|
||||
{
|
||||
@@ -113,7 +113,7 @@ const MenuPage = () => {
|
||||
price: "KSh 350",
|
||||
rating: 4.8,
|
||||
reviewCount: "156 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/croissants-coffee-old-wood-table_1150-12248.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/croissants-coffee-old-wood-table_1150-12248.jpg?_wi=2",
|
||||
imageAlt: "golden butter chocolate croissant",
|
||||
},
|
||||
{
|
||||
@@ -123,7 +123,7 @@ const MenuPage = () => {
|
||||
price: "KSh 1,200",
|
||||
rating: 4.9,
|
||||
reviewCount: "203 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/box-with-yummy-muffins_23-2147787040.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/box-with-yummy-muffins_23-2147787040.jpg?_wi=2",
|
||||
imageAlt: "gourmet cupcake premium gift box",
|
||||
},
|
||||
{
|
||||
@@ -133,7 +133,7 @@ const MenuPage = () => {
|
||||
price: "KSh 450",
|
||||
rating: 4.7,
|
||||
reviewCount: "89 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/slices-fresh-breads-wooden-background_23-2147955213.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/slices-fresh-breads-wooden-background_23-2147955213.jpg?_wi=2",
|
||||
imageAlt: "artisan sourdough loaf crusty",
|
||||
},
|
||||
{
|
||||
@@ -143,7 +143,7 @@ const MenuPage = () => {
|
||||
price: "KSh 3,500",
|
||||
rating: 5,
|
||||
reviewCount: "127 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lovely-birthday-concept-with-chocolate-cake_23-2147997433.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lovely-birthday-concept-with-chocolate-cake_23-2147997433.jpg?_wi=2",
|
||||
imageAlt: "custom birthday cake personalized",
|
||||
},
|
||||
{
|
||||
@@ -153,7 +153,7 @@ const MenuPage = () => {
|
||||
price: "KSh 2,800",
|
||||
rating: 4.9,
|
||||
reviewCount: "95 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brightly-colored-cakes-refrigerator_1232-3406.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brightly-colored-cakes-refrigerator_1232-3406.jpg?_wi=2",
|
||||
imageAlt: "luxury gourmet dessert assortment",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -153,7 +153,7 @@ const HomePage = () => {
|
||||
price: "KSh 5,500",
|
||||
rating: 5,
|
||||
reviewCount: "48 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wedding-cake_1157-538.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wedding-cake_1157-538.jpg?_wi=1",
|
||||
imageAlt: "elegant white wedding cake design",
|
||||
},
|
||||
{
|
||||
@@ -163,7 +163,7 @@ const HomePage = () => {
|
||||
price: "KSh 350",
|
||||
rating: 4.8,
|
||||
reviewCount: "156 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/croissants-coffee-old-wood-table_1150-12248.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/croissants-coffee-old-wood-table_1150-12248.jpg?_wi=1",
|
||||
imageAlt: "golden butter chocolate croissant",
|
||||
},
|
||||
{
|
||||
@@ -173,7 +173,7 @@ const HomePage = () => {
|
||||
price: "KSh 1,200",
|
||||
rating: 4.9,
|
||||
reviewCount: "203 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/box-with-yummy-muffins_23-2147787040.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/box-with-yummy-muffins_23-2147787040.jpg?_wi=1",
|
||||
imageAlt: "gourmet cupcake premium gift box",
|
||||
},
|
||||
{
|
||||
@@ -183,7 +183,7 @@ const HomePage = () => {
|
||||
price: "KSh 450",
|
||||
rating: 4.7,
|
||||
reviewCount: "89 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/slices-fresh-breads-wooden-background_23-2147955213.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/slices-fresh-breads-wooden-background_23-2147955213.jpg?_wi=1",
|
||||
imageAlt: "artisan sourdough loaf crusty",
|
||||
},
|
||||
{
|
||||
@@ -193,7 +193,7 @@ const HomePage = () => {
|
||||
price: "KSh 3,500",
|
||||
rating: 5,
|
||||
reviewCount: "127 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lovely-birthday-concept-with-chocolate-cake_23-2147997433.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lovely-birthday-concept-with-chocolate-cake_23-2147997433.jpg?_wi=1",
|
||||
imageAlt: "custom birthday cake personalized",
|
||||
},
|
||||
{
|
||||
@@ -203,7 +203,7 @@ const HomePage = () => {
|
||||
price: "KSh 2,800",
|
||||
rating: 4.9,
|
||||
reviewCount: "95 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brightly-colored-cakes-refrigerator_1232-3406.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brightly-colored-cakes-refrigerator_1232-3406.jpg?_wi=1",
|
||||
imageAlt: "luxury gourmet dessert assortment",
|
||||
},
|
||||
]}
|
||||
@@ -338,7 +338,7 @@ const HomePage = () => {
|
||||
handle: "@sarahk_events",
|
||||
testimonial: "N&H BAKERY created the most stunning wedding cake for our special day. The attention to detail and taste were absolutely incredible. Highly recommended!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-girl-dressed-elegant-gray-dress-standing-with-crossed-arms-while-leaning-against-brick-wall_613910-17632.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-girl-dressed-elegant-gray-dress-standing-with-crossed-arms-while-leaning-against-brick-wall_613910-17632.jpg?_wi=1",
|
||||
imageAlt: "professional woman portrait headshot",
|
||||
},
|
||||
{
|
||||
@@ -347,7 +347,7 @@ const HomePage = () => {
|
||||
handle: "@jamesmw",
|
||||
testimonial: "I order their croissants every weekend. Fresh, flaky, and absolutely delicious. The best bakery in Nairobi by far!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-bearded-man-white-shirt-jacket-posing-camera-with-broad-smile-isolated-gray_171337-629.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-bearded-man-white-shirt-jacket-posing-camera-with-broad-smile-isolated-gray_171337-629.jpg?_wi=1",
|
||||
imageAlt: "professional man portrait headshot",
|
||||
},
|
||||
{
|
||||
@@ -356,7 +356,7 @@ const HomePage = () => {
|
||||
handle: "@graceo_lifestyle",
|
||||
testimonial: "For my daughter's birthday, N&H BAKERY delivered beyond expectations. The custom cake was a masterpiece and everyone loved it!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-businesswoman-smiling-looking-camera-successful-confident-grey-haired-manager-sitting-office-room-workplace-business-management-concept_74855-7343.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-businesswoman-smiling-looking-camera-successful-confident-grey-haired-manager-sitting-office-room-workplace-business-management-concept_74855-7343.jpg?_wi=1",
|
||||
imageAlt: "smiling woman professional headshot",
|
||||
},
|
||||
{
|
||||
@@ -365,7 +365,7 @@ const HomePage = () => {
|
||||
handle: "@peter_designs",
|
||||
testimonial: "Their custom order service is fantastic. They brought my vision to life with professionalism and creativity. Worth every shilling!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-young-man-work_23-2149116570.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-young-man-work_23-2149116570.jpg?_wi=1",
|
||||
imageAlt: "professional man smiling portrait",
|
||||
},
|
||||
{
|
||||
@@ -374,7 +374,7 @@ const HomePage = () => {
|
||||
handle: "@amarah_kitchen",
|
||||
testimonial: "As a food blogger, I'm impressed by the quality and consistency. N&H BAKERY maintains premium standards every single day.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg?_wi=1",
|
||||
imageAlt: "professional woman creative portrait",
|
||||
},
|
||||
{
|
||||
@@ -383,7 +383,7 @@ const HomePage = () => {
|
||||
handle: "@davidoch",
|
||||
testimonial: "Catered my corporate event with their premium package. Professional, delicious, and exceeded all expectations. Will definitely use again!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-young-businessman-walking-near-business-center_171337-19784.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-young-businessman-walking-near-business-center_171337-19784.jpg?_wi=1",
|
||||
imageAlt: "professional man corporate portrait",
|
||||
},
|
||||
]}
|
||||
@@ -446,7 +446,7 @@ const HomePage = () => {
|
||||
animationType="slide-up"
|
||||
mediaAnimation="opacity"
|
||||
mediaPosition="right"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/concentrated-african-american-call-center-operator-working_74855-4048.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/concentrated-african-american-call-center-operator-working_74855-4048.jpg?_wi=1"
|
||||
imageAlt="customer support help center service"
|
||||
faqsAnimation="blur-reveal"
|
||||
faqs={[
|
||||
|
||||
Reference in New Issue
Block a user