Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5ec62d91a2 | |||
| f2e9767d69 | |||
| da1e3d993b | |||
| 5ed06e3e1f |
@@ -1,17 +1,11 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Geist, Geist_Mono } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
|
|
||||||
const geist = Geist({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-geist-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const geistMono = Geist_Mono({
|
|
||||||
variable: "--font-geist-mono", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Ananthagiri Ruchulu - Family Restaurant in Vikarabad", description: "Delicious Multicuisine Food for Families in Vikarabad. Great ambience, fresh food, and affordable prices. Order now online or visit us!"};
|
title: "Ananthagiri Ruchulu - Family Restaurant in Vikarabad", description: "Delicious Multicuisine Food for Families in Vikarabad. Order now on WhatsApp or call us. Open 11 AM - 11 PM daily."};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -20,9 +14,7 @@ export default function RootLayout({
|
|||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
<body className={inter.className}>{children}
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
|
|||||||
@@ -63,8 +63,8 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
testimonialRotationInterval={5000}
|
testimonialRotationInterval={5000}
|
||||||
buttons={[
|
buttons={[
|
||||||
|
{ text: "Order on WhatsApp", href: "https://wa.me/919876543210?text=Hello%20Ananthagiri%20Ruchulu%2C%20I%20would%20like%20to%20place%20an%20order" },
|
||||||
{ text: "📞 Call Now", href: "tel:+919876543210" },
|
{ text: "📞 Call Now", href: "tel:+919876543210" },
|
||||||
{ text: "💬 WhatsApp Order", href: "https://wa.me/919876543210?text=Hello%20Ananthagiri%20Ruchulu%2C%20I%20would%20like%20to%20place%20an%20order" },
|
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user