Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #4.
This commit is contained in:
2026-03-05 16:58:19 +00:00
2 changed files with 7 additions and 38 deletions

View File

@@ -1,50 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } 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 nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Byanjan Thakali - Authentic Thakali Cuisine in Surkhet, Nepal", description: "Experience authentic Thakali cuisine at Byanjan Thakali in Birendranagar, Surkhet. Rated 4.8★. Traditional meals, fresh ingredients, warm hospitality. Open 9 AM - 9 PM daily. Call 970-5488833.", keywords: "Thakali food, Nepali cuisine, restaurant Surkhet, authentic food, traditional meals, Birendranagar", openGraph: {
title: "Byanjan Thakali - Authentic Thakali Cuisine", description: "Discover authentic Thakali cuisine in the heart of Surkhet. Rated 4.8★. Fresh ingredients, traditional recipes, warm hospitality.", siteName: "Byanjan Thakali", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/arrangement-different-pakistan-goodies_23-2148821571.jpg", alt: "Byanjan Thakali - Traditional Meal"},
],
},
twitter: {
card: "summary_large_image", title: "Byanjan Thakali - Authentic Thakali Cuisine", description: "Experience authentic Thakali food in Surkhet. 4.8★ rated. Open 9 AM - 9 PM.", images: ["http://img.b2bpic.net/free-photo/arrangement-different-pakistan-goodies_23-2148821571.jpg"],
},
};
title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1412,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -47,7 +47,7 @@ export default function LandingPage() {
imageAlt="Traditional Thakali meal set"
buttons={[
{ text: "Call Now", href: "tel:970-5488833" },
{ text: "Get Directions", href: "#" }
{ text: "View Menu", href: "#menu" }
]}
/>
</div>