Merge version_1 into main #1

Merged
bender merged 3 commits from version_1 into main 2026-06-12 01:16:04 +00:00
3 changed files with 27 additions and 13 deletions

View File

@@ -1,25 +1,37 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Roboto } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Roboto } from "next/font/google";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const roboto = Roboto({
variable: "--font-roboto", subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
export const metadata: Metadata = {
title: "Sizzle & Seoul - Premium Korean BBQ in Seoul", description: "Experience the finest authentic Korean BBQ in Seoul. Sizzle & Seoul offers premium meats, traditional flavors, and a modern elegant dining atmosphere. Book your reservation today.", keywords: ["Korean BBQ", "Seoul restaurant", "Korean food", "galbi", "bulgogi", "samgyeopsal", "fine dining", "reservation", "authentic Korean cuisine", "Hanwoo beef"],
metadataBase: new URL("https://sizzleandseoul.com"),
alternates: {
canonical: "https://sizzleandseoul.com"
},
openGraph: {
title: "Sizzle & Seoul - Premium Korean BBQ in Seoul", description: "Experience the finest authentic Korean BBQ in Seoul. Sizzle & Seoul offers premium meats, traditional flavors, and a modern elegant dining atmosphere.", url: "https://sizzleandseoul.com", siteName: "Sizzle & Seoul", images: [{
url: "http://img.b2bpic.net/free-photo/overhead-vertical-shot-meat-assortment-with-sauces_181624-23621.jpg", alt: "close up korean marinated beef bbq"
}],
type: "website"
},
twitter: {
card: "summary_large_image", title: "Sizzle & Seoul - Premium Korean BBQ in Seoul", description: "Experience the finest authentic Korean BBQ in Seoul. Sizzle & Seoul offers premium meats, traditional flavors, and a modern elegant dining atmosphere.", images: ["http://img.b2bpic.net/free-photo/overhead-vertical-shot-meat-assortment-with-sauces_181624-23621.jpg"]
},
robots: {
index: true,
follow: true
}
};
export default function RootLayout({
children,
}: Readonly<{
@@ -28,7 +40,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${roboto.variable} antialiased`}>
<body
className={`${roboto.variable} antialiased`}
>
<Tag />
{children}
<script

View File

@@ -131,7 +131,7 @@ export default function HomePage() {
title="Reserve Your Spot at Sizzle & Seoul"
description="Planning a special occasion or a delightful dinner? Make a reservation to secure your table and ensure an exquisite Korean BBQ experience."
background={{ variant: "plain" }}
imageSrc="http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081875.jpg"
imageSrc="http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081875.jpg?_wi=1"
imageAlt="elegant korean restaurant dining area"
mediaAnimation="slide-up"
mediaPosition="right"

View File

@@ -42,7 +42,7 @@ export default function ReservationsPage() {
title="Plan Your Visit to Sizzle & Seoul"
description="Please fill out the form below to request a reservation. Our team will confirm your booking shortly. For immediate assistance, please call us directly."
background={{ variant: "plain" }}
imageSrc="http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081875.jpg"
imageSrc="http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081875.jpg?_wi=2"
imageAlt="elegant korean restaurant interior"
mediaAnimation="slide-up"
mediaPosition="left"