5 Commits

Author SHA1 Message Date
a8c818703c Update src/app/page.tsx 2026-03-06 09:36:57 +00:00
34800e509d Update src/app/layout.tsx 2026-03-06 09:36:57 +00:00
f8c0c2be88 Merge version_1 into main
Merge version_1 into main
2026-03-06 09:28:43 +00:00
9972e6bdeb Merge version_1 into main
Merge version_1 into main
2026-03-06 09:27:02 +00:00
39daae2e8b Merge version_1 into main
Merge version_1 into main
2026-03-06 09:25:58 +00:00
2 changed files with 27 additions and 48 deletions

View File

@@ -1,57 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
import type { Metadata } from 'next';
export const metadata: Metadata = {
title: "Patne Lawn & Restaurant - Authentic Veg & Non-Veg Indian Dining in Khed", description: "Experience authentic Indian cuisine at Patne Lawn and Restaurants in Khed. Dine-in, takeaway, and catering services. Book your event at our spacious lawn venue.", keywords: "restaurant in khed, indian restaurant khed, veg non-veg restaurant, event lawn khed, wedding venue khed maharashtra", metadataBase: new URL("https://patnerestaurant.com"),
alternates: {
canonical: "https://patnerestaurant.com"},
openGraph: {
title: "Patne Lawn & Restaurant", description: "Great Food & Beautiful Event Lawn in Khed - Authentic Indian Cuisine", url: "https://patnerestaurant.com", siteName: "Patne Lawn & Restaurant", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/rustic-chandelier-made-bulbs-ropes-dining-table-vintage-kitchen_181624-9173.jpg", alt: "Patne Restaurant Interior"},
],
},
twitter: {
card: "summary_large_image", title: "Patne Lawn & Restaurant - Khed", description: "Authentic veg & non-veg Indian dining with event lawn for weddings", images: ["http://img.b2bpic.net/free-photo/rustic-chandelier-made-bulbs-ropes-dining-table-vintage-kitchen_181624-9173.jpg"],
},
robots: {
index: true,
follow: true,
},
title: 'Patne Lawn Restaurant',
description: 'Great Food & Beautiful Event Lawn in Khed - Authentic Indian Cuisine',
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -33,6 +33,7 @@ export default function LandingPage() {
{ name: "Events", id: "events" },
{ name: "Reviews", id: "reviews" },
{ name: "About", id: "about" },
{ name: "Delivery", id: "delivery" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Book Now", href: "contact" }}
@@ -178,6 +179,21 @@ export default function LandingPage() {
/>
</div>
<div id="delivery" data-section="delivery">
<TextAbout
tag="Fast & Fresh"
tagIcon={Truck}
tagAnimation="slide-up"
title="Home Delivery - Authentic Taste at Your Doorstep"
useInvertedBackground={false}
buttons={[
{ text: "Order Now", href: "contact" },
{ text: "Track Delivery", href: "#" }
]}
buttonAnimation="slide-up"
/>
</div>
<div id="events" data-section="events">
<TextAbout
tag="Premium Venue"
@@ -234,6 +250,7 @@ export default function LandingPage() {
{
title: "Quick Links", items: [
{ label: "Menu", href: "#menu" },
{ label: "Delivery", href: "#delivery" },
{ label: "Events", href: "#events" },
{ label: "Reviews", href: "#reviews" },
{ label: "Contact", href: "#contact" }
@@ -257,7 +274,7 @@ export default function LandingPage() {
title: "Services", items: [
{ label: "Dine-in", href: "#" },
{ label: "Takeaway", href: "#" },
{ label: "Delivery", href: "#" },
{ label: "Home Delivery", href: "#delivery" },
{ label: "Event Hosting", href: "#contact" }
]
}