Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5714ac0ba1 | |||
| 6291dca877 | |||
| e6e21f54ab | |||
| 34d7c6c661 | |||
| a9afed6197 | |||
| e41dde8a6c |
@@ -1,13 +1,13 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from 'next';
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from 'next/font/google';
|
||||||
import "./globals.css";
|
import './globals.css';
|
||||||
|
|
||||||
const inter = Inter({
|
const inter = Inter({ subsets: ['latin'] });
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "KBC - North Indian Restaurant in Vijayapura", description: "Experience authentic North Indian cuisine at KBC. Premium butter chicken, paneer butter masala, tandoori specialties, and traditional biryani in Vijayapura."};
|
title: 'KBC - Authentic North Indian Cuisine',
|
||||||
|
description: 'Experience premium North Indian dining at KBC Restaurant in Vijayapura',
|
||||||
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -16,7 +16,7 @@ export default function RootLayout({
|
|||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<body className={`${inter.variable}`}>{children}
|
<body className={inter.className}>{children}
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
|
|||||||
@@ -247,13 +247,13 @@ export default function KBCRestaurantPage() {
|
|||||||
tag="Get in Touch"
|
tag="Get in Touch"
|
||||||
tagIcon={Mail}
|
tagIcon={Mail}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
title="Connect with KBC"
|
title="Reserve Your Table & Get Offers"
|
||||||
description="Stay updated with our special offers, new dishes, and exclusive dining events. Join our food community today!"
|
description="Book a table at KBC and unlock exclusive dining offers. Enjoy premium North Indian cuisine with warm hospitality. Submit your email to receive reservation confirmations, special discounts, and updates on our latest dishes and events."
|
||||||
background={{ variant: "radial-gradient" }}
|
background={{ variant: "radial-gradient" }}
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
inputPlaceholder="Enter your email"
|
inputPlaceholder="Enter your email"
|
||||||
buttonText="Subscribe"
|
buttonText="Reserve Now"
|
||||||
termsText="By subscribing, you agree to receive updates about our special offers and new dishes. We respect your privacy."
|
termsText="By reserving, you agree to receive confirmation and offers. We respect your privacy."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user