Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 761ed03d09 | |||
| aad684aefa | |||
| 250d5cedfe | |||
| e540b0aa51 | |||
| a06b575e15 | |||
| 8532dcee57 |
@@ -1,50 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Nunito } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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: "Create Next App", description: "Generated by create next app"};
|
||||||
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"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1412,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ export default function LandingPage() {
|
|||||||
imageAlt="Traditional Thakali meal set"
|
imageAlt="Traditional Thakali meal set"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Call Now", href: "tel:970-5488833" },
|
{ text: "Call Now", href: "tel:970-5488833" },
|
||||||
{ text: "Get Directions", href: "#" }
|
{ text: "View Menu", href: "#menu" }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -12,11 +12,11 @@
|
|||||||
|
|
||||||
--background: #ffffff;
|
--background: #ffffff;
|
||||||
--card: #f9f9f9;
|
--card: #f9f9f9;
|
||||||
--foreground: #000f06e6;
|
--foreground: #000612e6;
|
||||||
--primary-cta: #0a7039;
|
--primary-cta: #15479c;
|
||||||
--primary-cta-text: #ffffff;
|
--primary-cta-text: #ffffff;
|
||||||
--secondary-cta: #f9f9f9;
|
--secondary-cta: #f9f9f9;
|
||||||
--secondary-cta-text: #000f06e6;
|
--secondary-cta-text: #000612e6;
|
||||||
--accent: #e2e2e2;
|
--accent: #e2e2e2;
|
||||||
--background-accent: #c4c4c4;
|
--background-accent: #c4c4c4;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user