From 53a0fa232a4f14d09c4d0a411ba0851c2ae73896 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 00:55:57 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 9cd7e2a..bf4f42e 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -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", -- 2.49.1 From d6c2a8ddb4869d4da43c35c0ca4f06c94e127dc6 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 00:55:58 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index b1440af..d230537 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -76,7 +76,7 @@ export default function ContactPage() { Date: Sat, 14 Mar 2026 00:55:58 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 43 +++++++++++++++++++++++++++++++++++-------- 1 file changed, 35 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da5b4f2..73d4e51 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}