From 51fbd6f1d2a376d225254a764b18d702602f0440 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 16:42:09 +0000 Subject: [PATCH 1/6] Update src/app/about/page.tsx --- src/app/about/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 5015518..549626e 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -77,7 +77,7 @@ export default function AboutPage() { Date: Fri, 13 Mar 2026 16:42:09 +0000 Subject: [PATCH 2/6] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 1c466bd..3b89105 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -93,7 +93,7 @@ export default function ContactPage() { Date: Fri, 13 Mar 2026 16:42:10 +0000 Subject: [PATCH 3/6] Update src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index f1e2afe..8ad5831 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -51,28 +51,28 @@ export default function GalleryPage() { id: "gallery-1", name: "Sushi Premium", price: "Koleksion", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=rmwkle", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=rmwkle&_wi=11", imageAlt: "Sushi Premium", }, { id: "gallery-2", name: "Interiori Elegan", price: "Atmosferë", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ewzroy", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ewzroy&_wi=4", imageAlt: "Interiori Elegan", }, { id: "gallery-3", name: "Pjata Nënshënjuese", price: "Pjatë", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=rmwkle", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=rmwkle&_wi=12", imageAlt: "Pjata Nënshënjuese", }, { id: "gallery-4", name: "Përgatitja e Chefir", price: "Përgatitje", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=rmwkle", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=rmwkle&_wi=13", imageAlt: "Përgatitja e Chefir", }, { @@ -120,7 +120,7 @@ export default function GalleryPage() { Date: Fri, 13 Mar 2026 16:42:10 +0000 Subject: [PATCH 4/6] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d09ce2..13a7053 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Figtree } 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 { Figtree } 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 figtree = Figtree({ variable: "--font-figtree", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Watami Tirana - Premium Sushi në Tiranë | 4.9★", + description: "Watami Tirana: restauranti i sushit me vlerësimin më të lartë në qytet. Peshk i freskët, përgatitje autentike japoneze, shërbim përjashtimor. Rezervo tavolën tënde tani!", + keywords: "sushi Tiranë,peshk i freskët,restauranti japonez Tiranë,sushi premium,dorëzim sushit,tabela e sushit", + metadataBase: new URL("https://watamitirana.al"), + alternates: { + canonical: "https://watamitirana.al", + }, + openGraph: { + title: "Watami Tirana - Peshk i Freskët & Sushi Premium", + description: "Përvojë autentike e sushit japonez në Tiranë me peshk të freskët dhe përgatitje tradicionale", + url: "https://watamitirana.al", + siteName: "Watami Tirana", + type: "website", + images: [ + { + url: "https://watamitirana.al/og-image.jpg", + alt: "Watami Tirana - Premium Sushi", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Watami Tirana - Peshk i Freskët & Sushi Premium", + description: "Përvojë autentike e sushit japonez në Tiranë", + images: ["https://watamitirana.al/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}