9 Commits

Author SHA1 Message Date
9a14232fa1 Merge version_3 into main
Merge version_3 into main
2026-03-05 15:02:35 +00:00
7303e60df6 Update src/app/page.tsx 2026-03-05 15:02:31 +00:00
7f2d92e306 Update src/app/layout.tsx 2026-03-05 15:02:31 +00:00
eaedbd4ed1 Merge version_2 into main
Merge version_2 into main
2026-03-05 15:00:40 +00:00
ea8cbf52a7 Update src/app/page.tsx 2026-03-05 15:00:36 +00:00
e6c35b73e0 Update src/app/layout.tsx 2026-03-05 15:00:36 +00:00
098bcc846e Merge version_1 into main
Merge version_1 into main
2026-03-05 14:59:17 +00:00
f67ae02a35 Merge version_1 into main
Merge version_1 into main
2026-03-05 14:58:27 +00:00
0b76ce2f12 Merge version_1 into main
Merge version_1 into main
2026-03-05 14:57:14 +00:00
2 changed files with 11 additions and 46 deletions

View File

@@ -1,55 +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";
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: "Columbus Cafe Kakamega | Premium Halal Coffee & Dining", description: "Discover Columbus Cafe in Kakamega CBD. Enjoy premium halal coffee, continental cuisine, free Wi-Fi, and great ambience. Order online, call, or visit us today!", keywords: "cafe kakamega, coffee shop kakamega, halal restaurant kakamega, best cafe in kakamega, dining kakamega", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Columbus Cafe Kakamega | Premium Halal Coffee & Dining", description: "Experience the heart of coffee and dining culture at Columbus Cafe. Fresh cappuccino, halal cuisine, and welcoming ambience.", siteName: "Columbus Cafe", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/espresso-details-close-up-pouring-coffee-into-white-cup-from-coffee-pot-selective-focus-concept-making-coffee-bar-pub-restaurant-brewing-coffee-cezve_166373-2016.jpg", alt: "Columbus Cafe - Coffee & Dining"},
],
},
twitter: {
card: "summary_large_image", title: "Columbus Cafe Kakamega", description: "Premium halal coffee and continental cuisine in the heart of Kakamega.", images: [
"http://img.b2bpic.net/free-photo/espresso-details-close-up-pouring-coffee-into-white-cup-from-coffee-pot-selective-focus-concept-making-coffee-bar-pub-restaurant-brewing-coffee-cezve_166373-2016.jpg"],
},
};
title: "Columbus Cafe - Premium Coffee & Dining in Kakamega", description: "Experience the heart of coffee and dining in Kakamega. Halal cuisine, continental dishes, free Wi-Fi, and great ambience."};
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: `
@@ -1417,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -51,7 +51,7 @@ export default function LandingPage() {
imageAlt="Coffee being poured in Columbus Cafe"
mediaAnimation="slide-up"
buttons={[
{ text: "View Menu 🍽️", href: "#menu" },
{ text: "Order Now - Fresh & Ready", href: "#menu" },
{ text: "Order Online 🛵", href: "#order" }
]}
buttonAnimation="slide-up"
@@ -124,7 +124,8 @@ export default function LandingPage() {
useInvertedBackground={false}
buttonAnimation="slide-up"
buttons={[
{ text: "View Full Menu", href: "#contact" }
{ text: "View Full Menu", href: "#contact" },
{ text: "Call: 0792 888444", href: "tel:0792888444" }
]}
/>
</div>
@@ -243,4 +244,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}