12 Commits

Author SHA1 Message Date
8975931f82 Update src/app/page.tsx 2026-03-04 08:20:59 +00:00
d13f910c3c Merge version_3 into main
Merge version_3 into main
2026-03-04 08:15:13 +00:00
5ec62d91a2 Update src/app/page.tsx 2026-03-04 08:15:09 +00:00
f2e9767d69 Update src/app/layout.tsx 2026-03-04 08:15:08 +00:00
da1e3d993b Merge version_2 into main
Merge version_2 into main
2026-03-04 07:45:10 +00:00
f9a9f0ab10 Update src/app/page.tsx 2026-03-04 07:45:06 +00:00
5ed06e3e1f Merge version_2 into main
Merge version_2 into main
2026-03-04 07:43:44 +00:00
0280b17d5b Update src/app/page.tsx 2026-03-04 07:43:40 +00:00
55116c1b5f Update src/app/layout.tsx 2026-03-04 07:43:40 +00:00
024789677d Merge version_1 into main
Merge version_1 into main
2026-03-04 07:42:40 +00:00
06cabe9a39 Merge version_1 into main
Merge version_1 into main
2026-03-04 07:41:55 +00:00
d00e7cf7cc Merge version_1 into main
Merge version_1 into main
2026-03-04 07:40:36 +00:00
2 changed files with 10 additions and 42 deletions

View File

@@ -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>
);
}

View File

@@ -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"
/>
@@ -201,10 +201,10 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactCTA
tag="Get in Touch"
tag="Order Now"
tagIcon={Phone}
tagAnimation="slide-up"
title="Ready to Experience Great Food?"
title="Reserve Your Table or Order Today"
description="Contact us today to book a table, place an order, or get more information. We're here to serve you!"
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}