Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +68,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -85,7 +85,7 @@ export default function MenuPage() {
|
||||
href: "tel:+1-780-623-8356",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-fried-meat-with-sauce-greens-along-with-glass-wine-brown-desk-food-meat-meal_140725-26146.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-fried-meat-with-sauce-greens-along-with-glass-wine-brown-desk-food-meat-meal_140725-26146.jpg?_wi=2"
|
||||
imageAlt="Complete Oslo's Eatery & Lounge menu"
|
||||
containerClassName="relative w-full h-96 flex items-center justify-center overflow-hidden"
|
||||
textBoxClassName="text-center max-w-3xl px-6 z-10"
|
||||
@@ -107,7 +107,7 @@ export default function MenuPage() {
|
||||
name: "Tom Yum Mussels",
|
||||
price: "$18",
|
||||
variant: "Spicy Thai Soup",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/thai-food-tom-yum-kung-river-prawn-spicy-soup_1150-35465.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/thai-food-tom-yum-kung-river-prawn-spicy-soup_1150-35465.jpg?_wi=2",
|
||||
imageAlt: "Tom Yum Mussels appetizer",
|
||||
},
|
||||
{
|
||||
@@ -115,7 +115,7 @@ export default function MenuPage() {
|
||||
name: "Crispy Calamari",
|
||||
price: "$16",
|
||||
variant: "Golden Fried",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/calamari-ring_74190-4731.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/calamari-ring_74190-4731.jpg?_wi=2",
|
||||
imageAlt: "Golden crispy calamari",
|
||||
},
|
||||
{
|
||||
@@ -123,7 +123,7 @@ export default function MenuPage() {
|
||||
name: "Spring Rolls",
|
||||
price: "$12",
|
||||
variant: "Served with Sauce",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/green-pepper-file-with-sauerkraut-white-plate_114579-86488.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/green-pepper-file-with-sauerkraut-white-plate_114579-86488.jpg?_wi=2",
|
||||
imageAlt: "Fresh spring rolls with dipping sauce",
|
||||
},
|
||||
{
|
||||
@@ -131,7 +131,7 @@ export default function MenuPage() {
|
||||
name: "Seafood Tom Yum Soup",
|
||||
price: "$22",
|
||||
variant: "Premium Mix",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/spicy-tom-yum-soup-with-shrimp-herbs_84443-71426.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/spicy-tom-yum-soup-with-shrimp-herbs_84443-71426.jpg?_wi=2",
|
||||
imageAlt: "Luxury seafood tom yum soup",
|
||||
},
|
||||
]}
|
||||
@@ -157,7 +157,7 @@ export default function MenuPage() {
|
||||
name: "Top Sirloin Steak",
|
||||
price: "$32",
|
||||
variant: "Grilled to Perfection",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beef-steak-with-grilled-tomatoes-fried-potatoes_114579-2400.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beef-steak-with-grilled-tomatoes-fried-potatoes_114579-2400.jpg?_wi=2",
|
||||
imageAlt: "Premium grilled sirloin steak",
|
||||
},
|
||||
{
|
||||
@@ -165,7 +165,7 @@ export default function MenuPage() {
|
||||
name: "Pad Thai",
|
||||
price: "$16",
|
||||
variant: "Traditional Thai",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pad-thai-noodles_74190-1788.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pad-thai-noodles_74190-1788.jpg?_wi=2",
|
||||
imageAlt: "Authentic Thai pad thai noodles",
|
||||
},
|
||||
{
|
||||
@@ -173,7 +173,7 @@ export default function MenuPage() {
|
||||
name: "Chicken Cashew",
|
||||
price: "$18",
|
||||
variant: "Stir-Fried Delight",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chicken-dish-with-vegetables_1203-1170.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chicken-dish-with-vegetables_1203-1170.jpg?_wi=2",
|
||||
imageAlt: "Stir-fried chicken with cashew nuts",
|
||||
},
|
||||
]}
|
||||
@@ -203,7 +203,7 @@ export default function MenuPage() {
|
||||
"Crispy fried specialties",
|
||||
"Perfect for sharing",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/thai-food-tom-yum-kung-river-prawn-spicy-soup_1150-35465.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/thai-food-tom-yum-kung-river-prawn-spicy-soup_1150-35465.jpg?_wi=3",
|
||||
imageAlt: "Appetizers selection",
|
||||
},
|
||||
{
|
||||
@@ -215,7 +215,7 @@ export default function MenuPage() {
|
||||
"Asian fusion creations",
|
||||
"Fresh ingredients daily",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beef-steak-with-grilled-tomatoes-fried-potatoes_114579-2400.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beef-steak-with-grilled-tomatoes-fried-potatoes_114579-2400.jpg?_wi=3",
|
||||
imageAlt: "Main courses selection",
|
||||
},
|
||||
{
|
||||
@@ -227,7 +227,7 @@ export default function MenuPage() {
|
||||
"House specialties",
|
||||
"Chef's recommendations",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chicken-dish-with-vegetables_1203-1170.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chicken-dish-with-vegetables_1203-1170.jpg?_wi=3",
|
||||
imageAlt: "Chef's special dishes",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -94,7 +94,7 @@ export default function HomePage() {
|
||||
href: "/menu",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-fried-meat-with-sauce-greens-along-with-glass-wine-brown-desk-food-meat-meal_140725-26146.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-fried-meat-with-sauce-greens-along-with-glass-wine-brown-desk-food-meat-meal_140725-26146.jpg?_wi=1"
|
||||
imageAlt="Oslo's Eatery & Lounge premium dining experience"
|
||||
containerClassName="relative w-full h-screen flex items-center justify-center overflow-hidden"
|
||||
textBoxClassName="text-center max-w-3xl px-6 z-10"
|
||||
@@ -140,7 +140,7 @@ export default function HomePage() {
|
||||
name: "Tom Yum Mussels",
|
||||
price: "$18",
|
||||
variant: "Appetizer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/thai-food-tom-yum-kung-river-prawn-spicy-soup_1150-35465.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/thai-food-tom-yum-kung-river-prawn-spicy-soup_1150-35465.jpg?_wi=1",
|
||||
imageAlt: "Tom Yum Mussels appetizer",
|
||||
},
|
||||
{
|
||||
@@ -148,7 +148,7 @@ export default function HomePage() {
|
||||
name: "Crispy Calamari",
|
||||
price: "$16",
|
||||
variant: "Appetizer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/calamari-ring_74190-4731.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/calamari-ring_74190-4731.jpg?_wi=1",
|
||||
imageAlt: "Golden crispy calamari",
|
||||
},
|
||||
{
|
||||
@@ -156,7 +156,7 @@ export default function HomePage() {
|
||||
name: "Spring Rolls",
|
||||
price: "$12",
|
||||
variant: "Appetizer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/green-pepper-file-with-sauerkraut-white-plate_114579-86488.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/green-pepper-file-with-sauerkraut-white-plate_114579-86488.jpg?_wi=1",
|
||||
imageAlt: "Fresh spring rolls with dipping sauce",
|
||||
},
|
||||
{
|
||||
@@ -164,7 +164,7 @@ export default function HomePage() {
|
||||
name: "Top Sirloin Steak",
|
||||
price: "$32",
|
||||
variant: "Main Course",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beef-steak-with-grilled-tomatoes-fried-potatoes_114579-2400.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beef-steak-with-grilled-tomatoes-fried-potatoes_114579-2400.jpg?_wi=1",
|
||||
imageAlt: "Premium grilled sirloin steak",
|
||||
},
|
||||
{
|
||||
@@ -172,7 +172,7 @@ export default function HomePage() {
|
||||
name: "Pad Thai",
|
||||
price: "$16",
|
||||
variant: "Main Course",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pad-thai-noodles_74190-1788.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pad-thai-noodles_74190-1788.jpg?_wi=1",
|
||||
imageAlt: "Authentic Thai pad thai noodles",
|
||||
},
|
||||
{
|
||||
@@ -180,7 +180,7 @@ export default function HomePage() {
|
||||
name: "Chicken Cashew",
|
||||
price: "$18",
|
||||
variant: "Main Course",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chicken-dish-with-vegetables_1203-1170.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chicken-dish-with-vegetables_1203-1170.jpg?_wi=1",
|
||||
imageAlt: "Stir-fried chicken with cashew nuts",
|
||||
},
|
||||
{
|
||||
@@ -188,7 +188,7 @@ export default function HomePage() {
|
||||
name: "Seafood Tom Yum Soup",
|
||||
price: "$22",
|
||||
variant: "Main Course",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/spicy-tom-yum-soup-with-shrimp-herbs_84443-71426.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/spicy-tom-yum-soup-with-shrimp-herbs_84443-71426.jpg?_wi=1",
|
||||
imageAlt: "Luxury seafood tom yum soup",
|
||||
},
|
||||
]}
|
||||
@@ -216,7 +216,7 @@ export default function HomePage() {
|
||||
description="Oslo's Eatery & Lounge has become a favorite gathering spot in Lac la Biche. Known for its rich flavors, welcoming atmosphere, and diverse menu, the restaurant blends premium steakhouse classics with bold Thai-inspired cuisine."
|
||||
subdescription="Whether you're craving a perfectly cooked steak, flavorful seafood, or authentic Asian dishes, Oslo's delivers a memorable dining experience every time. Guests love the friendly service, relaxed lounge vibe, and the variety of dishes that bring people back again and again."
|
||||
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=1"
|
||||
imageAlt="Oslo's Eatery & Lounge upscale interior"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
@@ -243,7 +243,7 @@ export default function HomePage() {
|
||||
"Perfect for intimate dinners or group celebrations",
|
||||
"Warm lighting and comfortable seating",
|
||||
],
|
||||
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=1",
|
||||
imageAlt: "Guests enjoying the cozy lounge",
|
||||
},
|
||||
{
|
||||
@@ -254,7 +254,7 @@ export default function HomePage() {
|
||||
"Authentic Thai recipes with bold spices",
|
||||
"Carefully sourced ingredients",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-hand-gloves-cutting-red-apple-marble-table_2831-8499.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-hand-gloves-cutting-red-apple-marble-table_2831-8499.jpg?_wi=1",
|
||||
imageAlt: "Fresh premium ingredients",
|
||||
},
|
||||
{
|
||||
@@ -265,7 +265,7 @@ export default function HomePage() {
|
||||
"Staff passionate about hospitality",
|
||||
"Personalized dining recommendations",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-employees-taking-break_23-2149161686.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-employees-taking-break_23-2149161686.jpg?_wi=1",
|
||||
imageAlt: "Friendly restaurant staff",
|
||||
},
|
||||
]}
|
||||
@@ -292,7 +292,7 @@ export default function HomePage() {
|
||||
role: "Regular Guest",
|
||||
company: "Lac la Biche Local",
|
||||
rating: 5,
|
||||
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=2",
|
||||
},
|
||||
{
|
||||
id: "review-2",
|
||||
@@ -300,7 +300,7 @@ export default function HomePage() {
|
||||
role: "Food Enthusiast",
|
||||
company: "Alberta Dining Guide",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-hand-gloves-cutting-red-apple-marble-table_2831-8499.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-hand-gloves-cutting-red-apple-marble-table_2831-8499.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "review-3",
|
||||
@@ -308,7 +308,7 @@ export default function HomePage() {
|
||||
role: "Chef & Critic",
|
||||
company: "Cuisine Magazine",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-employees-taking-break_23-2149161686.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-employees-taking-break_23-2149161686.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "review-4",
|
||||
@@ -316,7 +316,7 @@ export default function HomePage() {
|
||||
role: "Business Owner",
|
||||
company: "Lake City Ventures",
|
||||
rating: 5,
|
||||
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=3",
|
||||
},
|
||||
{
|
||||
id: "review-5",
|
||||
@@ -324,7 +324,7 @@ export default function HomePage() {
|
||||
role: "Travel Writer",
|
||||
company: "Alberta Travel Blog",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-hand-gloves-cutting-red-apple-marble-table_2831-8499.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-hand-gloves-cutting-red-apple-marble-table_2831-8499.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "review-6",
|
||||
@@ -332,7 +332,7 @@ export default function HomePage() {
|
||||
role: "Local Favorite",
|
||||
company: "Community Member",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-employees-taking-break_23-2149161686.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-employees-taking-break_23-2149161686.jpg?_wi=3",
|
||||
},
|
||||
]}
|
||||
gridVariant="bento-grid"
|
||||
@@ -353,7 +353,7 @@ export default function HomePage() {
|
||||
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=4"
|
||||
imageAlt="Happy diners at Oslo's"
|
||||
mediaAnimation="blur-reveal"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -84,7 +84,7 @@ export default function ReviewsPage() {
|
||||
company: "Lac la Biche Local",
|
||||
rating: 5,
|
||||
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=7",
|
||||
},
|
||||
{
|
||||
id: "review-2",
|
||||
@@ -93,7 +93,7 @@ export default function ReviewsPage() {
|
||||
company: "Alberta Dining Guide",
|
||||
rating: 5,
|
||||
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=5",
|
||||
},
|
||||
{
|
||||
id: "review-3",
|
||||
@@ -102,7 +102,7 @@ export default function ReviewsPage() {
|
||||
company: "Cuisine Magazine",
|
||||
rating: 5,
|
||||
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=5",
|
||||
},
|
||||
{
|
||||
id: "review-4",
|
||||
@@ -111,7 +111,7 @@ export default function ReviewsPage() {
|
||||
company: "Lake City Ventures",
|
||||
rating: 5,
|
||||
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=8",
|
||||
},
|
||||
{
|
||||
id: "review-5",
|
||||
@@ -120,7 +120,7 @@ export default function ReviewsPage() {
|
||||
company: "Alberta Travel Blog",
|
||||
rating: 5,
|
||||
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=6",
|
||||
},
|
||||
{
|
||||
id: "review-6",
|
||||
@@ -129,7 +129,7 @@ export default function ReviewsPage() {
|
||||
company: "Community Member",
|
||||
rating: 5,
|
||||
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=6",
|
||||
},
|
||||
]}
|
||||
gridVariant="bento-grid"
|
||||
@@ -157,7 +157,7 @@ export default function ReviewsPage() {
|
||||
"Constantly praised for flavor and presentation",
|
||||
],
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/beef-steak-with-grilled-tomatoes-fried-potatoes_114579-2400.jpg",
|
||||
"http://img.b2bpic.net/free-photo/beef-steak-with-grilled-tomatoes-fried-potatoes_114579-2400.jpg?_wi=4",
|
||||
imageAlt: "Premium grilled sirloin steak",
|
||||
},
|
||||
{
|
||||
@@ -169,7 +169,7 @@ export default function ReviewsPage() {
|
||||
"Comfortable seating and attentive service",
|
||||
],
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/stylish-young-woman-using-digital-tablet-restaurant-table_23-2147936094.jpg",
|
||||
"http://img.b2bpic.net/free-photo/stylish-young-woman-using-digital-tablet-restaurant-table_23-2147936094.jpg?_wi=3",
|
||||
imageAlt: "Upscale restaurant cozy lounge seating",
|
||||
},
|
||||
{
|
||||
@@ -181,7 +181,7 @@ export default function ReviewsPage() {
|
||||
"Consistent excellence that builds loyalty",
|
||||
],
|
||||
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=9",
|
||||
imageAlt: "Family dining restaurant happy celebration",
|
||||
},
|
||||
]}
|
||||
@@ -202,7 +202,7 @@ export default function ReviewsPage() {
|
||||
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=10"
|
||||
imageAlt="Happy diners at Oslo's"
|
||||
mediaAnimation="blur-reveal"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -76,7 +76,7 @@ export default function VisitPage() {
|
||||
description="Oslo's Eatery & Lounge welcomes you to experience premium dining in a warm, inviting atmosphere. Located at 10303 101 Ave, our restaurant is easily accessible and designed for your comfort."
|
||||
subdescription="Whether you're planning a romantic dinner, celebrating with friends, or enjoying a business lunch, we're ready to serve you. Open daily at 11 AM, our friendly staff ensures every visit is memorable. Call ahead to reserve your table or ask about our group booking options."
|
||||
icon={MapPin}
|
||||
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=11"
|
||||
imageAlt="Oslo's Eatery & Lounge welcoming guests"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
@@ -102,7 +102,7 @@ export default function VisitPage() {
|
||||
"Easy parking available",
|
||||
"Accessible entrance",
|
||||
],
|
||||
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=4",
|
||||
imageAlt: "Restaurant convenient location",
|
||||
},
|
||||
{
|
||||
@@ -113,7 +113,7 @@ export default function VisitPage() {
|
||||
"Phone: +1 780-623-8356",
|
||||
"Reserve online or call ahead",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-employees-taking-break_23-2149161686.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-employees-taking-break_23-2149161686.jpg?_wi=7",
|
||||
imageAlt: "Restaurant hours and service",
|
||||
},
|
||||
{
|
||||
@@ -124,7 +124,7 @@ export default function VisitPage() {
|
||||
"Special group menus available",
|
||||
"Dedicated event coordination",
|
||||
],
|
||||
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=12",
|
||||
imageAlt: "Group dining at Oslo's",
|
||||
},
|
||||
]}
|
||||
@@ -145,7 +145,7 @@ export default function VisitPage() {
|
||||
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=13"
|
||||
imageAlt="Happy diners celebrating at Oslo's"
|
||||
mediaAnimation="blur-reveal"
|
||||
mediaPosition="right"
|
||||
|
||||
Reference in New Issue
Block a user