3 Commits

Author SHA1 Message Date
070141f65f Update src/app/page.tsx 2026-03-07 17:42:39 +00:00
1ad548f96e Update src/app/layout.tsx 2026-03-07 17:42:38 +00:00
1ee3dd617c Merge version_1 into main
Merge version_1 into main
2026-03-07 17:40:26 +00:00
2 changed files with 13 additions and 43 deletions

View File

@@ -1,56 +1,27 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const geist = Geist({
variable: "--font-halant", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Freez - Best Dessert Café & Ice Cream in Riverside Nairobi | KSh 250-450", description: "Freez dessert café in Riverside Nairobi. Premium pistachio cake, crepes, mini pancakes, specialty coffee & ice cream. Delivery & takeaway available. 4.3★ rating.", keywords: "dessert cafe Nairobi, ice cream Riverside, crepes Nairobi, best desserts Westlands, dessert delivery Nairobi, cafe near me", metadataBase: new URL("https://freez-cafe.co.ke"), title: "Create Next App", description: "Generated by create next app"};
alternates: {
canonical: "https://freez-cafe.co.ke"},
openGraph: {
title: "Freez - Nairobi's Sweetest Dessert Spot", description: "Fresh pistachio cake, crepes, ice cream & specialty coffee. Delivery available around Westlands & Riverside.", url: "https://freez-cafe.co.ke", siteName: "Freez", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/side-close-up-view-cupcake-strawberries-cupcake-with-white-cream-colorful-sauces-candies-strawberries-bowls-cup-herbal-tea-dark-table_140725-117162.jpg", alt: "Freez dessert cafe"},
],
},
twitter: {
card: "summary_large_image", title: "Freez - Best Desserts in Nairobi", description: "Order fresh pistachio cake, crepes, and ice cream. Fast delivery in Riverside & Westlands.", images: ["http://img.b2bpic.net/free-photo/side-close-up-view-cupcake-strawberries-cupcake-with-white-cream-colorful-sauces-candies-strawberries-bowls-cup-herbal-tea-dark-table_140725-117162.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${geist.variable} ${geistMono.variable}`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
@@ -1419,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -170,7 +170,7 @@ export default function LandingPage() {
background={{ variant: "gradient-bars" }} background={{ variant: "gradient-bars" }}
useInvertedBackground={false} useInvertedBackground={false}
inputPlaceholder="Enter your email or phone" inputPlaceholder="Enter your email or phone"
buttonText="Send Order Request" buttonText="Order Now via WhatsApp"
termsText="By submitting, you agree to our Terms. We'll respond to your order within 30 minutes during business hours." termsText="By submitting, you agree to our Terms. We'll respond to your order within 30 minutes during business hours."
ariaLabel="Order submission section" ariaLabel="Order submission section"
/> />