Update metadata and contact information across multiple components; add new layout files for pricing, fleet, contact, and services.

This commit is contained in:
Bognar 2026-01-28 11:13:27 +01:00
parent 363d4b1e9e
commit 366e5a7758
7 changed files with 44 additions and 3 deletions

10
app/arak/layout.tsx Normal file
View File

@ -0,0 +1,10 @@
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Árak - SkyFly Travel Reptéri Transzfer",
description: "Tekintse meg kedvező transzfer árainkat. Fix viteldíjak Győr, Budapest (Ferihegy) és Bécs (Schwechat) között. Info: +36 30 554 3838",
};
export default function Layout({ children }: { children: React.ReactNode }) {
return <>{children}</>;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

10
app/flotta/layout.tsx Normal file
View File

@ -0,0 +1,10 @@
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Flotta - Modern Gépjárműveink | SkyFly Travel",
description: "Ismerje meg modern gépjárműparkunkat. Kényelmes mikrobuszok és személyautók a biztonságos reptéri transzferért. Mercedes V-Class és kényelmes transzfer buszok.",
};
export default function Layout({ children }: { children: React.ReactNode }) {
return <>{children}</>;
}

10
app/kapcsolat/layout.tsx Normal file
View File

@ -0,0 +1,10 @@
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Kapcsolat - Foglalás és Információ | SkyFly Travel",
description: "Vegye fel velünk a kapcsolatot. Hotline (0-24): +36 30 554 3838. Gyors és kényelmes reptéri transzfer foglalás Győrből.",
};
export default function Layout({ children }: { children: React.ReactNode }) {
return <>{children}</>;
}

View File

@ -8,8 +8,9 @@ const inter = Inter({
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "SkyFly Travel - Reptéri Transzfer Győr, Budapest, Bécs, Pozsony", title: "SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!",
description: "Gyors, megbízható és kényelmes reptéri transzfer szolgáltatás 0-24 órában.", description: "Reptéri transzfer - Gyors, megbízható, kényelmes! Főbb útvonalak: Győr - Bécs (Schwechat) / Győr - Budapest Liszt Ferenc reptér (Ferihegy) / Budapest - Bécs! Info: +36 30 554 3838 (0-24)",
keywords: "személyszállítás, transzfer Győr, Budapest, Bécs, Pozsony, airport Shuttle, Airport taxi, Reptéri járatok, Repülőtéri transzfer, Budapest reptér, Pozsony repter, Bécs reptér (Vienna Airport), Transfer Budapest airport, Transfer Vienna Airport",
}; };
import { LanguageProvider } from "@/lib/language-context"; import { LanguageProvider } from "@/lib/language-context";

View File

@ -160,7 +160,7 @@ export default function Home() {
<div className="flex flex-wrap gap-6 pt-2"> <div className="flex flex-wrap gap-6 pt-2">
<div className="space-y-1"> <div className="space-y-1">
<p className="text-[10px] font-black uppercase tracking-widest text-slate-400">{t.contactPage.info.phone}</p> <p className="text-[10px] font-black uppercase tracking-widest text-slate-400">{t.contactPage.info.phone}</p>
<a href="tel:+36302821101" className="text-xl font-black text-white bg-cyan-500 px-4 py-2 rounded-xl inline-block hover:scale-105 transition-transform">+36 30 282 1101</a> <a href="tel:+36305543838" className="text-xl font-black text-white bg-cyan-500 px-4 py-2 rounded-xl inline-block hover:scale-105 transition-transform">+36 30 554 3838</a>
</div> </div>
<div className="space-y-1"> <div className="space-y-1">
<p className="text-[10px] font-black uppercase tracking-widest text-slate-400">{t.contactPage.info.email}</p> <p className="text-[10px] font-black uppercase tracking-widest text-slate-400">{t.contactPage.info.email}</p>

View File

@ -0,0 +1,10 @@
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Szolgáltatások - Személyre szabott transzfer megoldások | SkyFly Travel",
description: "Gyűjtő, privát és családi transzfer csomagok minden igényre. Háztól-házig szolgáltatás közel 20 éves tapasztalattal. Győr - Bécs - Budapest útvonalakon.",
};
export default function Layout({ children }: { children: React.ReactNode }) {
return <>{children}</>;
}