From 100f9ba2898228c02edb3913f1e24b08d75e93a1 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 09:54:37 +0000 Subject: [PATCH 1/6] Update src/app/about/page.tsx --- src/app/about/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 68384ce..fb70c17 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -79,7 +79,7 @@ export default function AboutPage() { description="Oslo's Eatery & Lounge stands as a testament to the art of exceptional dining. Founded with a vision to bring world-class culinary excellence to Lac la Biche, our restaurant has become the premier destination for those seeking an unforgettable experience." subdescription="Our founders believed that premium dining shouldn't be exclusive to major cities. They envisioned a space where premium steakhouse traditions blend seamlessly with bold Thai-inspired flavors, creating a unique culinary journey. Today, Oslo's continues to honor that vision with every dish, every interaction, and every moment shared within our walls." icon={Utensils} - imageSrc="http://img.b2bpic.net/free-photo/stylish-young-woman-using-digital-tablet-restaurant-table_23-2147936094.jpg" + imageSrc="http://img.b2bpic.net/free-photo/stylish-young-woman-using-digital-tablet-restaurant-table_23-2147936094.jpg?_wi=2" imageAlt="Oslo's Eatery & Lounge upscale interior" mediaAnimation="blur-reveal" useInvertedBackground={false} @@ -106,7 +106,7 @@ export default function AboutPage() { "Never compromising on freshness or taste", ], imageSrc: - "http://img.b2bpic.net/free-photo/male-hand-gloves-cutting-red-apple-marble-table_2831-8499.jpg", + "http://img.b2bpic.net/free-photo/male-hand-gloves-cutting-red-apple-marble-table_2831-8499.jpg?_wi=4", imageAlt: "Fresh premium ingredients", }, { @@ -118,7 +118,7 @@ export default function AboutPage() { "Creating memorable moments", ], imageSrc: - "http://img.b2bpic.net/free-photo/close-up-employees-taking-break_23-2149161686.jpg", + "http://img.b2bpic.net/free-photo/close-up-employees-taking-break_23-2149161686.jpg?_wi=4", imageAlt: "Friendly restaurant staff", }, { @@ -130,7 +130,7 @@ export default function AboutPage() { "Respecting culinary heritage", ], imageSrc: - "http://img.b2bpic.net/free-photo/group-friends-cheering-with-wine-glasses-restaurant_23-2150520076.jpg", + "http://img.b2bpic.net/free-photo/group-friends-cheering-with-wine-glasses-restaurant_23-2150520076.jpg?_wi=5", imageAlt: "Guests enjoying the cozy lounge", }, ]} @@ -151,7 +151,7 @@ export default function AboutPage() { tagAnimation="slide-up" background={{ variant: "plain" }} useInvertedBackground={true} - imageSrc="http://img.b2bpic.net/free-photo/group-friends-cheering-with-wine-glasses-restaurant_23-2150520076.jpg" + imageSrc="http://img.b2bpic.net/free-photo/group-friends-cheering-with-wine-glasses-restaurant_23-2150520076.jpg?_wi=6" imageAlt="Happy diners at Oslo's" mediaAnimation="blur-reveal" mediaPosition="right" From ee10a286f66d3506c26790aca099bba18b174a97 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 09:54:37 +0000 Subject: [PATCH 2/6] Update src/app/layout.tsx --- src/app/layout.tsx | 47 +++++++++++++++++++++++++++++++++++----------- 1 file changed, 36 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index edb6b42..f2a3f05 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,51 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { Montserrat } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Montserrat } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Oslo's Eatery & Lounge - Premium Steakhouse & Thai Fusion", + description: "Award-winning steakhouse and Asian fusion restaurant in Lac la Biche. Enjoy premium steaks, authentic Thai cuisine, and exceptional dining. Open daily at 11 AM.", + keywords: "steakhouse, Thai restaurant, Asian fusion, Lac la Biche dining, premium steaks, Thai cuisine, restaurant", + metadataBase: new URL("https://osloseatery.com"), + alternates: { + canonical: "https://osloseatery.com", + }, + openGraph: { + title: "Oslo's Eatery & Lounge - Premium Dining Experience", + description: "Discover premium steaks and bold Thai flavors at Oslo's Eatery & Lounge in Lac la Biche. 4.7 ⭐ rated.", + url: "https://osloseatery.com", + siteName: "Oslo's Eatery & Lounge", + type: "website", + images: [ + { + url: "https://osloseatery.com/og-image.jpg", + alt: "Oslo's Eatery & Lounge Premium Dining", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Oslo's Eatery & Lounge", + description: "Premium steakhouse and Asian fusion restaurant. 4.7 ⭐ rated.", + images: ["https://osloseatery.com/twitter-image.jpg"], + }, + robots: "index, follow", +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +54,9 @@ export default function RootLayout({ return ( - + {children}