From 357c1227dcc84796cad2d42b9cd8b2930d26bfa7 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 10:47:25 +0000 Subject: [PATCH 1/5] Update src/app/galerii/page.tsx --- src/app/galerii/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/galerii/page.tsx b/src/app/galerii/page.tsx index 2f2daf9..756f38b 100644 --- a/src/app/galerii/page.tsx +++ b/src/app/galerii/page.tsx @@ -70,7 +70,7 @@ export default function GalleryPage() { "Kaasaegne valgustus ja mugav keskkond", "Ideaalne kompaniidega või võistlustel", ], - imageSrc: "http://img.b2bpic.net/free-photo/athlete-with-tennis-balls-court_23-2149434231.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/athlete-with-tennis-balls-court_23-2149434231.jpg?_wi=4", }, { id: "gallery-gym", @@ -80,7 +80,7 @@ export default function GalleryPage() { "Cardio ja tugitreeningud", "Professionaalne ja motiveeriv keskkond", ], - imageSrc: "http://img.b2bpic.net/free-photo/sporty-girl-simulator-swings-her-legs-sport-healthy-lifestyle-concept_169016-63337.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/sporty-girl-simulator-swings-her-legs-sport-healthy-lifestyle-concept_169016-63337.jpg?_wi=4", }, { id: "gallery-wellness", @@ -90,7 +90,7 @@ export default function GalleryPage() { "Heaolu ja taastumise teenused", "Ideaalne puhkamiseks pärast treeningut", ], - imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-wellbeing-sport-concept-woman-sitting-gym-flo_197531-30752.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-wellbeing-sport-concept-woman-sitting-gym-flo_197531-30752.jpg?_wi=4", }, ]} gridVariant="three-columns-all-equal-width" -- 2.49.1 From e5c7aeec8342025ff2a477d20ef86918ecf5e55d Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 10:47:26 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 59 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 47 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0f7096a..4f4f776 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { DM_Sans } 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 { DM_Sans } 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 dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "HU:B Spordi- ja vabaajakeskus – Padel, treening, jõusaal Kose-Uuemõisas", + description: "Kaasaegne spordi- ja vabaajakeskus HU:B Kose-Uuemõisas. Padel, jõusaal, treining, ruumide rent ja heaolustustegevused. Avatud igapäev, sulgu 23:00. +372 5814 4677", + keywords: "spordikeskus, padel, jõusaal, treining, fitness Kose, spordirajatis Harjumaa, vabaajakeskus, heaolu", + metadataBase: new URL("https://huubkeskus.ee"), + alternates: { + canonical: "https://huubkeskus.ee", + }, + openGraph: { + title: "HU:B Spordi- ja vabaajakeskus – Aktiivne eluviis algab siit", + description: "Kaasaegne spordi- ja vabaajakeskus liikumisrõõmu, heaolu ja koosolemine. Padel, treening, jõusaal Kose-Uuemõisas.", + url: "https://huubkeskus.ee", + siteName: "HU:B Keskus", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/girls-playing-rooftop-with-blue-tennis-field_23-2147814318.jpg", + alt: "HU:B Spordi- ja vabaajakeskus", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "HU:B Spordi- ja vabaajakeskus", + description: "Padel, jõusaal, treining, ruumide rent – kõik ühel kohal", + images: ["http://img.b2bpic.net/free-photo/man-training-with-weight-lifting_23-2149307979.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -31,7 +64,9 @@ export default function RootLayout({ return ( - + {children}