Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7303e60df6 | |||
| 7f2d92e306 | |||
| eaedbd4ed1 | |||
| ea8cbf52a7 | |||
| e6c35b73e0 | |||
| 098bcc846e | |||
| f67ae02a35 | |||
| 0b76ce2f12 |
@@ -1,55 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Figtree } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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: {
|
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."};
|
||||||
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"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1417,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -51,7 +51,7 @@ export default function LandingPage() {
|
|||||||
imageAlt="Coffee being poured in Columbus Cafe"
|
imageAlt="Coffee being poured in Columbus Cafe"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "View Menu 🍽️", href: "#menu" },
|
{ text: "Order Now - Fresh & Ready", href: "#menu" },
|
||||||
{ text: "Order Online 🛵", href: "#order" }
|
{ text: "Order Online 🛵", href: "#order" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
@@ -124,7 +124,8 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "View Full Menu", href: "#contact" }
|
{ text: "View Full Menu", href: "#contact" },
|
||||||
|
{ text: "Call: 0792 888444", href: "tel:0792888444" }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user