6 Commits

Author SHA1 Message Date
761ed03d09 Update theme colors 2026-03-06 12:33:59 +00:00
aad684aefa Update src/app/page.tsx 2026-03-05 16:58:14 +00:00
250d5cedfe Update src/app/layout.tsx 2026-03-05 16:58:14 +00:00
e540b0aa51 Merge version_1 into main
Merge version_1 into main
2026-03-05 16:53:48 +00:00
a06b575e15 Merge version_1 into main
Merge version_1 into main
2026-03-05 16:52:58 +00:00
8532dcee57 Merge version_1 into main
Merge version_1 into main
2026-03-05 16:51:49 +00:00
3 changed files with 10 additions and 41 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>

View File

@@ -12,11 +12,11 @@
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000f06e6;
--primary-cta: #0a7039;
--foreground: #000612e6;
--primary-cta: #15479c;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000f06e6;
--secondary-cta-text: #000612e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;