Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5ec62d91a2 | |||
| f2e9767d69 | |||
| da1e3d993b | |||
| f9a9f0ab10 | |||
| 5ed06e3e1f | |||
| 0280b17d5b | |||
| 55116c1b5f | |||
| 024789677d | |||
| 06cabe9a39 | |||
| d00e7cf7cc |
@@ -1,51 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Mulish } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Ananthagiri Ruchulu - Family Restaurant in Vikarabad | Biryani & Multicuisine", description: "Best family restaurant in Vikarabad with delicious biryani, chicken majestic & multicuisine options. Fresh food, hygienic kitchen, dine-in & delivery. ⭐ 4.2 Rating", keywords: "restaurant Vikarabad, biryani, family restaurant, multicuisine, food delivery, Ananthagiri", metadataBase: new URL("https://ananthagiri-ruchulu.com"),
|
||||
alternates: {
|
||||
canonical: "https://ananthagiri-ruchulu.com"},
|
||||
openGraph: {
|
||||
title: "Ananthagiri Ruchulu - Family Restaurant in Vikarabad", description: "Delicious multicuisine food for families. Biryani, chicken majestic & more. Call or WhatsApp to order!", url: "https://ananthagiri-ruchulu.com", siteName: "Ananthagiri Ruchulu", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/family-having-indian-food_53876-20449.jpg", alt: "Ananthagiri Ruchulu Restaurant"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Ananthagiri Ruchulu - Best Family Restaurant in Vikarabad", description: "Order now via WhatsApp or call us! Delicious biryani & multicuisine food.", images: ["http://img.b2bpic.net/free-photo/family-having-indian-food_53876-20449.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
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({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${mulish.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1413,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import { CheckCircle, Heart, Phone, Star, ThumbsUp, Smile, UtensilsCrossed, Zap } from 'lucide-react';
|
||||
import { CheckCircle, Heart, Phone, Star, ThumbsUp, Smile, UtensilsCrossed, Zap, Crown } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -63,8 +63,8 @@ export default function LandingPage() {
|
||||
]}
|
||||
testimonialRotationInterval={5000}
|
||||
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: "💬 WhatsApp Order", href: "https://wa.me/919876543210?text=Hello%20Ananthagiri%20Ruchulu%2C%20I%20would%20like%20to%20place%20an%20order" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user