Merge version_1 into main #1
@@ -76,7 +76,7 @@ export default function AboutPage() {
|
||||
tag="Our Story"
|
||||
tagIcon={Award}
|
||||
tagAnimation="blur-reveal"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/crop-woman-cutting-carrot_23-2147809537.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/crop-woman-cutting-carrot_23-2147809537.jpg?_wi=2"
|
||||
imageAlt="professional chef preparing sushi carefully"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="blur-reveal"
|
||||
@@ -103,7 +103,7 @@ export default function AboutPage() {
|
||||
{
|
||||
title: "Fresh Ingredients Daily",
|
||||
description: "We source premium fish and vegetables each morning to ensure maximum freshness and authentic flavor in every roll.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/salmon-with-lemon-wooden-board_23-2148035075.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/salmon-with-lemon-wooden-board_23-2148035075.jpg?_wi=3",
|
||||
imageAlt: "fresh raw fish salmon premium quality",
|
||||
buttonIcon: CheckCircle,
|
||||
buttonHref: "/menu",
|
||||
@@ -111,7 +111,7 @@ export default function AboutPage() {
|
||||
{
|
||||
title: "Fast, Reliable Delivery",
|
||||
description: "Order online and receive your sushi within 30 minutes. We guarantee prompt, professional delivery to your door.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-courier-using-tablet_23-2147801214.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-courier-using-tablet_23-2147801214.jpg?_wi=3",
|
||||
imageAlt: "fast delivery courier package service",
|
||||
buttonIcon: Zap,
|
||||
buttonHref: "/menu",
|
||||
@@ -119,7 +119,7 @@ export default function AboutPage() {
|
||||
{
|
||||
title: "Local Aalborg Pride",
|
||||
description: "Supporting our local community with authentic Japanese cuisine. We're proud to serve Aalborg with excellence and respect.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-austria-map-infographic_23-2148743398.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-austria-map-infographic_23-2148743398.jpg?_wi=3",
|
||||
imageAlt: "Aalborg Denmark city map location",
|
||||
buttonIcon: Star,
|
||||
buttonHref: "/about",
|
||||
|
||||
@@ -76,7 +76,7 @@ export default function ContactPage() {
|
||||
<ContactSplitForm
|
||||
title="Get in Touch"
|
||||
description="Have a question or special request? Contact us directly. We're here to help!"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/manager-executive-discussing-project-colleagues-meeting-table-with-open-laptop-using-tablet-talking_74855-8147.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/manager-executive-discussing-project-colleagues-meeting-table-with-open-laptop-using-tablet-talking_74855-8147.jpg?_wi=3"
|
||||
imageAlt="restaurant contact phone address location"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -1,24 +1,49 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Raleway } 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 { Raleway } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const raleway = Raleway({
|
||||
variable: "--font-raleway",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Wasabi Sushi Aalborg | Fresh Sushi Delivery & Dine-In",
|
||||
description: "Authentic Japanese sushi in Aalborg. Premium fresh ingredients, fast delivery, and exceptional service. Order now or book a table.",
|
||||
keywords: "sushi Aalborg, Japanese restaurant, sushi delivery, fresh sushi, authentic sushi, dine-in, local restaurant",
|
||||
metadataBase: new URL("https://wasabisushi.dk"),
|
||||
alternates: {
|
||||
canonical: "https://wasabisushi.dk",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Wasabi Sushi - Fresh Sushi in Aalborg",
|
||||
description: "Experience authentic Japanese sushi with premium ingredients. Order online for fast delivery.",
|
||||
url: "https://wasabisushi.dk",
|
||||
siteName: "Wasabi Sushi",
|
||||
type: "website",
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +52,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${raleway.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +66,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -83,11 +83,11 @@ export default function MenuPage() {
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vietnam-salad_1339-4404.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vietnam-salad_1339-4404.jpg?_wi=2",
|
||||
imageAlt: "Premium sushi platter with fresh ingredients",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sushi-rolls-with-salmon-cucumber-covered-with-tuna_141793-400.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sushi-rolls-with-salmon-cucumber-covered-with-tuna_141793-400.jpg?_wi=2",
|
||||
imageAlt: "Assorted sushi rolls and nigiri selection",
|
||||
},
|
||||
]}
|
||||
@@ -112,7 +112,7 @@ export default function MenuPage() {
|
||||
{
|
||||
title: "Classic Rolls",
|
||||
description: "Traditional sushi rolls including California, Spicy Tuna, Philadelphia, and Dragon Roll. Perfect for those seeking tried-and-true favorites.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/salmon-with-lemon-wooden-board_23-2148035075.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/salmon-with-lemon-wooden-board_23-2148035075.jpg?_wi=2",
|
||||
imageAlt: "Classic sushi rolls assortment",
|
||||
buttonIcon: CheckCircle,
|
||||
buttonHref: "/menu",
|
||||
@@ -120,7 +120,7 @@ export default function MenuPage() {
|
||||
{
|
||||
title: "Premium Sashimi",
|
||||
description: "Hand-sliced premium fish including salmon, tuna, and yellowtail. Served over seasoned rice with fresh wasabi and pickled ginger.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-courier-using-tablet_23-2147801214.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-courier-using-tablet_23-2147801214.jpg?_wi=2",
|
||||
imageAlt: "Premium sashimi platter",
|
||||
buttonIcon: Zap,
|
||||
buttonHref: "/menu",
|
||||
@@ -128,7 +128,7 @@ export default function MenuPage() {
|
||||
{
|
||||
title: "Special Creations",
|
||||
description: "Our chef's signature rolls featuring unique ingredient combinations, seasonal specials, and creative presentations. A true taste adventure.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-austria-map-infographic_23-2148743398.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-austria-map-infographic_23-2148743398.jpg?_wi=2",
|
||||
imageAlt: "Chef's special creations",
|
||||
buttonIcon: Star,
|
||||
buttonHref: "/menu",
|
||||
@@ -142,7 +142,7 @@ export default function MenuPage() {
|
||||
<ContactSplitForm
|
||||
title="Place Your Order"
|
||||
description="Ready to taste excellence? Contact us to place an order or ask about customizations. Our team is ready to serve you."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/manager-executive-discussing-project-colleagues-meeting-table-with-open-laptop-using-tablet-talking_74855-8147.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/manager-executive-discussing-project-colleagues-meeting-table-with-open-laptop-using-tablet-talking_74855-8147.jpg?_wi=2"
|
||||
imageAlt="Contact Wasabi Sushi for your order"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -87,11 +87,11 @@ export default function HomePage() {
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vietnam-salad_1339-4404.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vietnam-salad_1339-4404.jpg?_wi=1",
|
||||
imageAlt: "Premium sushi platter with fresh ingredients",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sushi-rolls-with-salmon-cucumber-covered-with-tuna_141793-400.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sushi-rolls-with-salmon-cucumber-covered-with-tuna_141793-400.jpg?_wi=1",
|
||||
imageAlt: "Modern restaurant interior with welcoming ambiance",
|
||||
},
|
||||
]}
|
||||
@@ -110,7 +110,7 @@ export default function HomePage() {
|
||||
tag="Our Story"
|
||||
tagIcon={Award}
|
||||
tagAnimation="blur-reveal"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/crop-woman-cutting-carrot_23-2147809537.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/crop-woman-cutting-carrot_23-2147809537.jpg?_wi=1"
|
||||
imageAlt="Chef carefully preparing fresh sushi with premium ingredients"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="blur-reveal"
|
||||
@@ -137,7 +137,7 @@ export default function HomePage() {
|
||||
{
|
||||
title: "Fresh Ingredients Daily",
|
||||
description: "We source premium fish and vegetables each morning to ensure maximum freshness and authentic flavor in every roll.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/salmon-with-lemon-wooden-board_23-2148035075.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/salmon-with-lemon-wooden-board_23-2148035075.jpg?_wi=1",
|
||||
imageAlt: "Fresh premium ingredients for sushi preparation",
|
||||
buttonIcon: CheckCircle,
|
||||
buttonHref: "/menu",
|
||||
@@ -145,7 +145,7 @@ export default function HomePage() {
|
||||
{
|
||||
title: "Fast, Reliable Delivery",
|
||||
description: "Order online and receive your sushi within 30 minutes. We guarantee prompt, professional delivery to your door.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-courier-using-tablet_23-2147801214.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-courier-using-tablet_23-2147801214.jpg?_wi=1",
|
||||
imageAlt: "Fast delivery service to your location",
|
||||
buttonIcon: Zap,
|
||||
buttonHref: "/menu",
|
||||
@@ -153,7 +153,7 @@ export default function HomePage() {
|
||||
{
|
||||
title: "Local Aalborg Pride",
|
||||
description: "Supporting our local community with authentic Japanese cuisine. We're proud to serve Aalborg with excellence and respect.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-austria-map-infographic_23-2148743398.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-austria-map-infographic_23-2148743398.jpg?_wi=1",
|
||||
imageAlt: "Local Aalborg restaurant in the heart of the city",
|
||||
buttonIcon: Star,
|
||||
buttonHref: "/",
|
||||
@@ -257,7 +257,7 @@ export default function HomePage() {
|
||||
<ContactSplitForm
|
||||
title="Get in Touch"
|
||||
description="Have a question or special request? Contact us directly. We're here to help!"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/manager-executive-discussing-project-colleagues-meeting-table-with-open-laptop-using-tablet-talking_74855-8147.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/manager-executive-discussing-project-colleagues-meeting-table-with-open-laptop-using-tablet-talking_74855-8147.jpg?_wi=1"
|
||||
imageAlt="Contact Wasabi Sushi for inquiries"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
Reference in New Issue
Block a user