diff --git a/app/api/contact/route.ts b/app/api/contact/route.ts deleted file mode 100644 index 32cb42b..0000000 --- a/app/api/contact/route.ts +++ /dev/null @@ -1,118 +0,0 @@ -import { NextResponse } from "next/server" -import nodemailer from "nodemailer" - -export async function POST(req: Request) { - try { - const body = await req.json() - const { name, email, phone, service, message, recaptchaToken, recaptchaAction } = body - const recaptchaSecret = - process.env.RECAPTCHA_SECRET_KEY || - "6LfqD1osAAAAAEbpEApPkiQUbyjdKYx2OvhY2XTk" - const minScore = Number(process.env.RECAPTCHA_MIN_SCORE) || 0.5 - - if (!recaptchaToken) { - return NextResponse.json({ error: "Missing reCaptcha token" }, { status: 400 }) - } - - // 1. Verify reCaptcha v3 - const verifyBody = new URLSearchParams({ - secret: recaptchaSecret, - response: recaptchaToken, - }) - const recaptchaResponse = await fetch("https://www.google.com/recaptcha/api/siteverify", { - method: "POST", - headers: { "Content-Type": "application/x-www-form-urlencoded" }, - body: verifyBody.toString(), - }) - const recaptchaData = await recaptchaResponse.json() - - if (!recaptchaData.success || recaptchaData.action !== recaptchaAction || recaptchaData.score < minScore) { - return NextResponse.json({ error: "reCaptcha verification failed" }, { status: 400 }) - } - - // 2. Configure Nodemailer - // NOTE: In a real environment, you'd use your SMTP credentials (Gmail, SendGrid, etc.) - const smtpUser = process.env.SMTP_USER - const smtpPass = process.env.SMTP_PASS - if (!smtpUser || !smtpPass) { - return NextResponse.json({ error: "SMTP is not configured" }, { status: 500 }) - } - - const transporter = nodemailer.createTransport({ - host: process.env.SMTP_HOST || "smtp.gmail.com", - port: Number(process.env.SMTP_PORT) || 587, - secure: false, - auth: { - user: smtpUser, - pass: smtpPass, - }, - }) - - // 3. Create HTML Email - const htmlEmail = ` - - - - - - - -
-
SkyFly Travel - Uj uzenet / New message
- -
-
Magyar
-
Nev
-
${name}
-
Email
-
${email}
-
Telefonszam
-
${phone || "-"}
-
Szolgaltatas tipusa
-
${service}
-
Uzenet
-
${message}
-
- -
-
English
-
Name
-
${name}
-
Email
-
${email}
-
Phone
-
${phone || "-"}
-
Service type
-
${service}
-
Message
-
${message}
-
- - -
- - - ` -// 4. Send Email - await transporter.sendMail({ - from: `"SkyFly Web" <${process.env.MAIL_FROM || smtpUser}>`, - to: "bognar.szilard83@gmail.com", - subject: `Weboldal uzenet / Website message: ${name} (${service})`, - html: htmlEmail, - }) - - return NextResponse.json({ success: true }) - } catch (error) { - console.error("Email error:", error) - return NextResponse.json({ error: "Failed to send email" }, { status: 500 }) - } -} diff --git a/contact.php b/contact.php index cc8dbe6..e63323a 100644 --- a/contact.php +++ b/contact.php @@ -79,14 +79,14 @@ if ($_SERVER["REQUEST_METHOD"] === "POST") { $isEnglish = $language === "en"; $subject = $isEnglish ? "Website message: $name ($service)" - : "Weboldal uzenet: $name ($service)"; + : "Weboldal üzenet: $name ($service)"; - $title = $isEnglish ? "New message" : "Uj uzenet"; - $labelName = $isEnglish ? "Name" : "Nev"; + $title = $isEnglish ? "New message" : "Új üzenet"; + $labelName = $isEnglish ? "Name" : "Név"; $labelEmail = $isEnglish ? "Email" : "Email"; - $labelPhone = $isEnglish ? "Phone" : "Telefonszam"; - $labelService = $isEnglish ? "Service type" : "Szolgaltatas tipusa"; - $labelMessage = $isEnglish ? "Message" : "Uzenet"; + $labelPhone = $isEnglish ? "Phone" : "Telefonszám"; + $labelService = $isEnglish ? "Service type" : "Szolgaltatás tipusa"; + $labelMessage = $isEnglish ? "Message" : "Üzenet"; $htmlEmail = " diff --git a/images/IMG_0032.jpeg b/images/IMG_0032.jpeg index 2624e7d..e4e29c3 100644 Binary files a/images/IMG_0032.jpeg and b/images/IMG_0032.jpeg differ diff --git a/images/Mercedes Vito_.JPG b/images/Mercedes Vito_.JPG index 8267a5d..c62b54f 100644 Binary files a/images/Mercedes Vito_.JPG and b/images/Mercedes Vito_.JPG differ diff --git a/images/Mercedes Vito_belső.jpeg b/images/Mercedes Vito_belső.jpeg index 7f6cd84..82a23ba 100644 Binary files a/images/Mercedes Vito_belső.jpeg and b/images/Mercedes Vito_belső.jpeg differ diff --git a/images/Skoda SuperB-inside.jpeg b/images/Skoda SuperB-inside.jpeg index b1d366d..1fe6f36 100644 Binary files a/images/Skoda SuperB-inside.jpeg and b/images/Skoda SuperB-inside.jpeg differ diff --git a/images/Skoda SuperB.jpeg b/images/Skoda SuperB.jpeg index a90d9b6..5df4843 100644 Binary files a/images/Skoda SuperB.jpeg and b/images/Skoda SuperB.jpeg differ diff --git a/images/vito.jpg b/images/vito.jpg index dea6069..7b472de 100644 Binary files a/images/vito.jpg and b/images/vito.jpg differ diff --git a/out/404.html b/out/404.html index fb1097c..10ab900 100644 --- a/out/404.html +++ b/out/404.html @@ -1 +1 @@ -SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!Ugrás a tartalomra

404

Hoppá!

Sajnáljuk, de az oldal, amit keres, nem található vagy elköltözött.

Kezdőlap
\ No newline at end of file +SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!Ugrás a tartalomra

404

Hoppá!

Sajnáljuk, de az oldal, amit keres, nem található vagy elköltözött.

Kezdőlap
\ No newline at end of file diff --git a/out/404/index.html b/out/404/index.html index fb1097c..10ab900 100644 --- a/out/404/index.html +++ b/out/404/index.html @@ -1 +1 @@ -SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!Ugrás a tartalomra

404

Hoppá!

Sajnáljuk, de az oldal, amit keres, nem található vagy elköltözött.

Kezdőlap
\ No newline at end of file +SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!Ugrás a tartalomra

404

Hoppá!

Sajnáljuk, de az oldal, amit keres, nem található vagy elköltözött.

Kezdőlap
\ No newline at end of file diff --git a/out/__next.__PAGE__.txt b/out/__next.__PAGE__.txt index 4a42811..cdb8aeb 100644 --- a/out/__next.__PAGE__.txt +++ b/out/__next.__PAGE__.txt @@ -3,7 +3,7 @@ 3:I[31713,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js","/_next/static/chunks/6ef51f8b2003e256.js","/_next/static/chunks/c045e4aa8df0741f.js"],"default"] 6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/c045e4aa8df0741f.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/c045e4aa8df0741f.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} 4:{} 5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 8:null diff --git a/out/__next._full.txt b/out/__next._full.txt index 79ad605..f12a7f5 100644 --- a/out/__next._full.txt +++ b/out/__next._full.txt @@ -16,7 +16,7 @@ f:"$Sreact.suspense" 15:I[68027,[],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"SrJfr2gpwQrx3SSgHRI8k","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/c045e4aa8df0741f.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} +0:{"P":null,"b":"XTogiP1ElaQRl870JimWE","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/c045e4aa8df0741f.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} c:{} d:"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params" 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/out/__next._head.txt b/out/__next._head.txt index 316b92c..cb53160 100644 --- a/out/__next._head.txt +++ b/out/__next._head.txt @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"IconMark"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","1",{"name":"description","content":"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)"}],["$","meta","2",{"name":"keywords","content":"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 reptér, Bécs reptér (Vienna Airport), Transfer Budapest airport, Transfer Vienna Airport"}],["$","link","3",{"rel":"canonical","href":"https://skyflytravel.hu/"}],["$","link","4",{"rel":"alternate","hrefLang":"hu-HU","href":"https://skyflytravel.hu/"}],["$","link","5",{"rel":"alternate","hrefLang":"en-US","href":"https://skyflytravel.hu/"}],["$","meta","6",{"property":"og:title","content":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","7",{"property":"og:description","content":"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)"}],["$","meta","8",{"property":"og:url","content":"https://skyflytravel.hu/"}],["$","meta","9",{"property":"og:site_name","content":"SkyFly Travel"}],["$","meta","10",{"property":"og:locale","content":"hu_HU"}],["$","meta","11",{"property":"og:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","meta","12",{"property":"og:image:width","content":"1200"}],["$","meta","13",{"property":"og:image:height","content":"630"}],["$","meta","14",{"property":"og:image:alt","content":"SkyFly Travel - Reptéri transzfer"}],["$","meta","15",{"property":"og:type","content":"website"}],["$","meta","16",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","17",{"name":"twitter:title","content":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","18",{"name":"twitter:description","content":"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)"}],["$","meta","19",{"name":"twitter:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.bd9a44f8.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","21",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","1",{"name":"description","content":"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)"}],["$","meta","2",{"name":"keywords","content":"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 reptér, Bécs reptér (Vienna Airport), Transfer Budapest airport, Transfer Vienna Airport"}],["$","link","3",{"rel":"canonical","href":"https://skyflytravel.hu/"}],["$","link","4",{"rel":"alternate","hrefLang":"hu-HU","href":"https://skyflytravel.hu/"}],["$","link","5",{"rel":"alternate","hrefLang":"en-US","href":"https://skyflytravel.hu/"}],["$","meta","6",{"property":"og:title","content":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","7",{"property":"og:description","content":"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)"}],["$","meta","8",{"property":"og:url","content":"https://skyflytravel.hu/"}],["$","meta","9",{"property":"og:site_name","content":"SkyFly Travel"}],["$","meta","10",{"property":"og:locale","content":"hu_HU"}],["$","meta","11",{"property":"og:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","meta","12",{"property":"og:image:width","content":"1200"}],["$","meta","13",{"property":"og:image:height","content":"630"}],["$","meta","14",{"property":"og:image:alt","content":"SkyFly Travel - Reptéri transzfer"}],["$","meta","15",{"property":"og:type","content":"website"}],["$","meta","16",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","17",{"name":"twitter:title","content":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","18",{"name":"twitter:description","content":"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)"}],["$","meta","19",{"name":"twitter:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.bd9a44f8.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","21",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} diff --git a/out/__next._index.txt b/out/__next._index.txt index 6de19c9..d0e144e 100644 --- a/out/__next._index.txt +++ b/out/__next._index.txt @@ -8,4 +8,4 @@ 8:I[36768,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js","/_next/static/chunks/d923f90fc26f0411.js"],"default"] 9:I[34581,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js"],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[["$","$L8",null,{}],[]]}]}],["$","$L9",null,{}]]}]]}]]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[["$","$L8",null,{}],[]]}]}],["$","$L9",null,{}]]}]]}]]}]]}],"loading":null,"isPartial":false} diff --git a/out/__next._tree.txt b/out/__next._tree.txt index 0263928..f241d45 100644 --- a/out/__next._tree.txt +++ b/out/__next._tree.txt @@ -1,3 +1,3 @@ :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":true},"staleTime":300} +0:{"buildId":"XTogiP1ElaQRl870JimWE","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":true},"staleTime":300} diff --git a/out/_next/static/SrJfr2gpwQrx3SSgHRI8k/_buildManifest.js b/out/_next/static/XTogiP1ElaQRl870JimWE/_buildManifest.js similarity index 100% rename from out/_next/static/SrJfr2gpwQrx3SSgHRI8k/_buildManifest.js rename to out/_next/static/XTogiP1ElaQRl870JimWE/_buildManifest.js diff --git a/out/_next/static/SrJfr2gpwQrx3SSgHRI8k/_clientMiddlewareManifest.json b/out/_next/static/XTogiP1ElaQRl870JimWE/_clientMiddlewareManifest.json similarity index 100% rename from out/_next/static/SrJfr2gpwQrx3SSgHRI8k/_clientMiddlewareManifest.json rename to out/_next/static/XTogiP1ElaQRl870JimWE/_clientMiddlewareManifest.json diff --git a/out/_next/static/SrJfr2gpwQrx3SSgHRI8k/_ssgManifest.js b/out/_next/static/XTogiP1ElaQRl870JimWE/_ssgManifest.js similarity index 100% rename from out/_next/static/SrJfr2gpwQrx3SSgHRI8k/_ssgManifest.js rename to out/_next/static/XTogiP1ElaQRl870JimWE/_ssgManifest.js diff --git a/out/_not-found/__next._full.txt b/out/_not-found/__next._full.txt index f5eaa85..14896a3 100644 --- a/out/_not-found/__next._full.txt +++ b/out/_not-found/__next._full.txt @@ -14,7 +14,7 @@ e:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 14:I[68027,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] -0:{"P":null,"b":"SrJfr2gpwQrx3SSgHRI8k","c":["","_not-found",""],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$8","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@b","$@c"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/d923f90fc26f0411.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L10",null,{"children":"$L11"}],["$","div",null,{"hidden":true,"children":["$","$L12",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L13"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$14","$undefined"],"S":true} +0:{"P":null,"b":"XTogiP1ElaQRl870JimWE","c":["","_not-found",""],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$8","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@b","$@c"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/d923f90fc26f0411.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L10",null,{"children":"$L11"}],["$","div",null,{"hidden":true,"children":["$","$L12",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L13"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$14","$undefined"],"S":true} b:{} c:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" 11:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/out/_not-found/__next._head.txt b/out/_not-found/__next._head.txt index f7e5263..df5ce87 100644 --- a/out/_not-found/__next._head.txt +++ b/out/_not-found/__next._head.txt @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"IconMark"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","1",{"name":"description","content":"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)"}],["$","meta","2",{"name":"keywords","content":"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 reptér, Bécs reptér (Vienna Airport), Transfer Budapest airport, Transfer Vienna Airport"}],["$","link","3",{"rel":"canonical","href":"https://skyflytravel.hu/"}],["$","link","4",{"rel":"alternate","hrefLang":"hu-HU","href":"https://skyflytravel.hu/"}],["$","link","5",{"rel":"alternate","hrefLang":"en-US","href":"https://skyflytravel.hu/"}],["$","meta","6",{"property":"og:title","content":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","7",{"property":"og:description","content":"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)"}],["$","meta","8",{"property":"og:url","content":"https://skyflytravel.hu/"}],["$","meta","9",{"property":"og:site_name","content":"SkyFly Travel"}],["$","meta","10",{"property":"og:locale","content":"hu_HU"}],["$","meta","11",{"property":"og:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","meta","12",{"property":"og:image:width","content":"1200"}],["$","meta","13",{"property":"og:image:height","content":"630"}],["$","meta","14",{"property":"og:image:alt","content":"SkyFly Travel - Reptéri transzfer"}],["$","meta","15",{"property":"og:type","content":"website"}],["$","meta","16",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","17",{"name":"twitter:title","content":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","18",{"name":"twitter:description","content":"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)"}],["$","meta","19",{"name":"twitter:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.bd9a44f8.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","21",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","1",{"name":"description","content":"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)"}],["$","meta","2",{"name":"keywords","content":"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 reptér, Bécs reptér (Vienna Airport), Transfer Budapest airport, Transfer Vienna Airport"}],["$","link","3",{"rel":"canonical","href":"https://skyflytravel.hu/"}],["$","link","4",{"rel":"alternate","hrefLang":"hu-HU","href":"https://skyflytravel.hu/"}],["$","link","5",{"rel":"alternate","hrefLang":"en-US","href":"https://skyflytravel.hu/"}],["$","meta","6",{"property":"og:title","content":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","7",{"property":"og:description","content":"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)"}],["$","meta","8",{"property":"og:url","content":"https://skyflytravel.hu/"}],["$","meta","9",{"property":"og:site_name","content":"SkyFly Travel"}],["$","meta","10",{"property":"og:locale","content":"hu_HU"}],["$","meta","11",{"property":"og:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","meta","12",{"property":"og:image:width","content":"1200"}],["$","meta","13",{"property":"og:image:height","content":"630"}],["$","meta","14",{"property":"og:image:alt","content":"SkyFly Travel - Reptéri transzfer"}],["$","meta","15",{"property":"og:type","content":"website"}],["$","meta","16",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","17",{"name":"twitter:title","content":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","18",{"name":"twitter:description","content":"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)"}],["$","meta","19",{"name":"twitter:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.bd9a44f8.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","21",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} diff --git a/out/_not-found/__next._index.txt b/out/_not-found/__next._index.txt index 6de19c9..d0e144e 100644 --- a/out/_not-found/__next._index.txt +++ b/out/_not-found/__next._index.txt @@ -8,4 +8,4 @@ 8:I[36768,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js","/_next/static/chunks/d923f90fc26f0411.js"],"default"] 9:I[34581,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js"],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[["$","$L8",null,{}],[]]}]}],["$","$L9",null,{}]]}]]}]]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[["$","$L8",null,{}],[]]}]}],["$","$L9",null,{}]]}]]}]]}]]}],"loading":null,"isPartial":false} diff --git a/out/_not-found/__next._not-found.txt b/out/_not-found/__next._not-found.txt index 82057b7..0c3ddd6 100644 --- a/out/_not-found/__next._not-found.txt +++ b/out/_not-found/__next._not-found.txt @@ -1,4 +1,4 @@ 1:"$Sreact.fragment" 2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} diff --git a/out/_not-found/__next._not-found/__PAGE__.txt b/out/_not-found/__next._not-found/__PAGE__.txt index 9220c61..8181fa7 100644 --- a/out/_not-found/__next._not-found/__PAGE__.txt +++ b/out/_not-found/__next._not-found/__PAGE__.txt @@ -3,7 +3,7 @@ 3:I[36768,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js","/_next/static/chunks/d923f90fc26f0411.js"],"default"] 6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/d923f90fc26f0411.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/d923f90fc26f0411.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} 4:{} 5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 8:null diff --git a/out/_not-found/__next._tree.txt b/out/_not-found/__next._tree.txt index 1af2bb8..e3e1991 100644 --- a/out/_not-found/__next._tree.txt +++ b/out/_not-found/__next._tree.txt @@ -1,2 +1,2 @@ :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"/_not-found","paramType":null,"paramKey":"/_not-found","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300} +0:{"buildId":"XTogiP1ElaQRl870JimWE","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"/_not-found","paramType":null,"paramKey":"/_not-found","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300} diff --git a/out/_not-found/index.html b/out/_not-found/index.html index fb1097c..10ab900 100644 --- a/out/_not-found/index.html +++ b/out/_not-found/index.html @@ -1 +1 @@ -SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!Ugrás a tartalomra

404

Hoppá!

Sajnáljuk, de az oldal, amit keres, nem található vagy elköltözött.

Kezdőlap
\ No newline at end of file +SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!Ugrás a tartalomra

404

Hoppá!

Sajnáljuk, de az oldal, amit keres, nem található vagy elköltözött.

Kezdőlap
\ No newline at end of file diff --git a/out/_not-found/index.txt b/out/_not-found/index.txt index f5eaa85..14896a3 100644 --- a/out/_not-found/index.txt +++ b/out/_not-found/index.txt @@ -14,7 +14,7 @@ e:"$Sreact.suspense" 12:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 14:I[68027,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] -0:{"P":null,"b":"SrJfr2gpwQrx3SSgHRI8k","c":["","_not-found",""],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$8","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@b","$@c"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/d923f90fc26f0411.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L10",null,{"children":"$L11"}],["$","div",null,{"hidden":true,"children":["$","$L12",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L13"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$14","$undefined"],"S":true} +0:{"P":null,"b":"XTogiP1ElaQRl870JimWE","c":["","_not-found",""],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$8","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@b","$@c"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/d923f90fc26f0411.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L10",null,{"children":"$L11"}],["$","div",null,{"hidden":true,"children":["$","$L12",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L13"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$14","$undefined"],"S":true} b:{} c:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" 11:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/out/akciok/facebook-google/__next._full.txt b/out/akciok/facebook-google/__next._full.txt index 4896e49..2f9bb8d 100644 --- a/out/akciok/facebook-google/__next._full.txt +++ b/out/akciok/facebook-google/__next._full.txt @@ -16,7 +16,7 @@ f:"$Sreact.suspense" 15:I[68027,[],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"SrJfr2gpwQrx3SSgHRI8k","c":["","akciok","facebook-google",""],"q":"","i":false,"f":[[["",{"children":["akciok",{"children":["facebook-google",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/7d3fcc1947879364.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} +0:{"P":null,"b":"XTogiP1ElaQRl870JimWE","c":["","akciok","facebook-google",""],"q":"","i":false,"f":[[["",{"children":["akciok",{"children":["facebook-google",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/7d3fcc1947879364.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} c:{} d:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/out/akciok/facebook-google/__next._head.txt b/out/akciok/facebook-google/__next._head.txt index 826c8b5..a3e9f92 100644 --- a/out/akciok/facebook-google/__next._head.txt +++ b/out/akciok/facebook-google/__next._head.txt @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"IconMark"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Facebook & Google Kedvezmény - Spóroljon 5%-ot | SkyFly Travel"}],["$","meta","1",{"name":"description","content":"Kövessen minket Facebookon vagy értékeljen minket a Google-ön és 5% extra kedvezményt adunk reptéri transzferéből. Kattintson a részletekért!"}],["$","meta","2",{"name":"keywords","content":"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 reptér, Bécs reptér (Vienna Airport), Transfer Budapest airport, Transfer Vienna Airport"}],["$","link","3",{"rel":"canonical","href":"https://skyflytravel.hu/akciok/facebook-google/"}],["$","meta","4",{"property":"og:title","content":"Facebook & Google Kedvezmény - Spóroljon 5%-ot | SkyFly Travel"}],["$","meta","5",{"property":"og:description","content":"Kövessen minket Facebookon vagy értékeljen minket a Google-ön és 5% extra kedvezményt adunk reptéri transzferéből. Kattintson a részletekért!"}],["$","meta","6",{"property":"og:url","content":"https://skyflytravel.hu/akciok/facebook-google/"}],["$","meta","7",{"property":"og:site_name","content":"SkyFly Travel"}],["$","meta","8",{"property":"og:locale","content":"hu_HU"}],["$","meta","9",{"property":"og:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","meta","10",{"property":"og:image:width","content":"1200"}],["$","meta","11",{"property":"og:image:height","content":"630"}],["$","meta","12",{"property":"og:image:alt","content":"SkyFly Travel - Facebook & Google Akció"}],["$","meta","13",{"property":"og:type","content":"website"}],["$","meta","14",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","15",{"name":"twitter:title","content":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","16",{"name":"twitter:description","content":"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)"}],["$","meta","17",{"name":"twitter:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.bd9a44f8.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","19",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Facebook & Google Kedvezmény - Spóroljon 5%-ot | SkyFly Travel"}],["$","meta","1",{"name":"description","content":"Kövessen minket Facebookon vagy értékeljen minket a Google-ön és 5% extra kedvezményt adunk reptéri transzferéből. Kattintson a részletekért!"}],["$","meta","2",{"name":"keywords","content":"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 reptér, Bécs reptér (Vienna Airport), Transfer Budapest airport, Transfer Vienna Airport"}],["$","link","3",{"rel":"canonical","href":"https://skyflytravel.hu/akciok/facebook-google/"}],["$","meta","4",{"property":"og:title","content":"Facebook & Google Kedvezmény - Spóroljon 5%-ot | SkyFly Travel"}],["$","meta","5",{"property":"og:description","content":"Kövessen minket Facebookon vagy értékeljen minket a Google-ön és 5% extra kedvezményt adunk reptéri transzferéből. Kattintson a részletekért!"}],["$","meta","6",{"property":"og:url","content":"https://skyflytravel.hu/akciok/facebook-google/"}],["$","meta","7",{"property":"og:site_name","content":"SkyFly Travel"}],["$","meta","8",{"property":"og:locale","content":"hu_HU"}],["$","meta","9",{"property":"og:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","meta","10",{"property":"og:image:width","content":"1200"}],["$","meta","11",{"property":"og:image:height","content":"630"}],["$","meta","12",{"property":"og:image:alt","content":"SkyFly Travel - Facebook & Google Akció"}],["$","meta","13",{"property":"og:type","content":"website"}],["$","meta","14",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","15",{"name":"twitter:title","content":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","16",{"name":"twitter:description","content":"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)"}],["$","meta","17",{"name":"twitter:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.bd9a44f8.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","19",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} diff --git a/out/akciok/facebook-google/__next._index.txt b/out/akciok/facebook-google/__next._index.txt index 6de19c9..d0e144e 100644 --- a/out/akciok/facebook-google/__next._index.txt +++ b/out/akciok/facebook-google/__next._index.txt @@ -8,4 +8,4 @@ 8:I[36768,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js","/_next/static/chunks/d923f90fc26f0411.js"],"default"] 9:I[34581,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js"],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[["$","$L8",null,{}],[]]}]}],["$","$L9",null,{}]]}]]}]]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[["$","$L8",null,{}],[]]}]}],["$","$L9",null,{}]]}]]}]]}]]}],"loading":null,"isPartial":false} diff --git a/out/akciok/facebook-google/__next._tree.txt b/out/akciok/facebook-google/__next._tree.txt index 7e26bff..2243e0b 100644 --- a/out/akciok/facebook-google/__next._tree.txt +++ b/out/akciok/facebook-google/__next._tree.txt @@ -1,3 +1,3 @@ :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"akciok","paramType":null,"paramKey":"akciok","hasRuntimePrefetch":false,"slots":{"children":{"name":"facebook-google","paramType":null,"paramKey":"facebook-google","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300} +0:{"buildId":"XTogiP1ElaQRl870JimWE","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"akciok","paramType":null,"paramKey":"akciok","hasRuntimePrefetch":false,"slots":{"children":{"name":"facebook-google","paramType":null,"paramKey":"facebook-google","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300} diff --git a/out/akciok/facebook-google/__next.akciok.txt b/out/akciok/facebook-google/__next.akciok.txt index 82057b7..0c3ddd6 100644 --- a/out/akciok/facebook-google/__next.akciok.txt +++ b/out/akciok/facebook-google/__next.akciok.txt @@ -1,4 +1,4 @@ 1:"$Sreact.fragment" 2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} diff --git a/out/akciok/facebook-google/__next.akciok/facebook-google.txt b/out/akciok/facebook-google/__next.akciok/facebook-google.txt index 82057b7..0c3ddd6 100644 --- a/out/akciok/facebook-google/__next.akciok/facebook-google.txt +++ b/out/akciok/facebook-google/__next.akciok/facebook-google.txt @@ -1,4 +1,4 @@ 1:"$Sreact.fragment" 2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} diff --git a/out/akciok/facebook-google/__next.akciok/facebook-google/__PAGE__.txt b/out/akciok/facebook-google/__next.akciok/facebook-google/__PAGE__.txt index c9a503f..0aaf43f 100644 --- a/out/akciok/facebook-google/__next.akciok/facebook-google/__PAGE__.txt +++ b/out/akciok/facebook-google/__next.akciok/facebook-google/__PAGE__.txt @@ -3,7 +3,7 @@ 3:I[51539,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js","/_next/static/chunks/7d3fcc1947879364.js","/_next/static/chunks/6ef51f8b2003e256.js"],"default"] 6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/7d3fcc1947879364.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/7d3fcc1947879364.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} 4:{} 5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 8:null diff --git a/out/akciok/facebook-google/index.html b/out/akciok/facebook-google/index.html index 8f80205..75ddfd5 100644 --- a/out/akciok/facebook-google/index.html +++ b/out/akciok/facebook-google/index.html @@ -1 +1 @@ -Facebook & Google Kedvezmény - Spóroljon 5%-ot | SkyFly TravelUgrás a tartalomra
Vissza a kezdőlapra

Facebook & Google
-5% Kedvezmény

1. Lehetőség: Facebook kedvezmény

  • Keresse fel a SkyFly Travel-t a Facebook-on.
  • Kövesse be oldalunkat és ossza meg az idővonalán!
  • Megrendelés leadásakor jelezze felénk, hogy a fenti lépéseket megtette.

Segédlet a Facebook kedvezményhez:

Facebook Like Help

2. Lehetőség: Google értékelés

  • Amennyiben van már tapasztalata cégünkről, értékelje a Google-n szolgáltatásunkat.
  • Ha még nem utazott velünk, az ügyfélszolgálatunkat / folyamatokat is értékelheti.
  • Megrendelés leadásakor jelezze felénk, hogy a fenti lépéseket megtette.

Facebook:

Készen áll az indulásra?

Csatlakozzon elégedett utasaink ezreihez és válassza a kényelmet.

Ügyfél vélemények
5.0
0 Ügyfél elégedettség
FacebookX (Twitter)BlogspotInstagram
2026 SkyFly Travel. Minden jog fenntartva.
Reptéri transzfer, transzfer Győr, Budapest, Bécs Schwechat, Pozsony - Airport shuttle - Airport taxi - Reptéri járatok - Repülőtéri transzfer - Budapest repülőtér - Pozsony repülőtér ? Bécs repülőtér (Vienna Airport) - Transzfer Budapest Airport - Transzfer Vienna Airport - Budapest Liszt Ferenc (Ferihegy)
\ No newline at end of file +Facebook & Google Kedvezmény - Spóroljon 5%-ot | SkyFly TravelUgrás a tartalomra
Vissza a kezdőlapra

Facebook & Google
-5% Kedvezmény

1. Lehetőség: Facebook kedvezmény

  • Keresse fel a SkyFly Travel-t a Facebook-on.
  • Kövesse be oldalunkat és ossza meg az idővonalán!
  • Megrendelés leadásakor jelezze felénk, hogy a fenti lépéseket megtette.

Segédlet a Facebook kedvezményhez:

Facebook Like Help

2. Lehetőség: Google értékelés

  • Amennyiben van már tapasztalata cégünkről, értékelje a Google-n szolgáltatásunkat.
  • Ha még nem utazott velünk, az ügyfélszolgálatunkat / folyamatokat is értékelheti.
  • Megrendelés leadásakor jelezze felénk, hogy a fenti lépéseket megtette.

Facebook:

Készen áll az indulásra?

Csatlakozzon elégedett utasaink ezreihez és válassza a kényelmet.

Ügyfél vélemények
5.0
0 Ügyfél elégedettség
FacebookX (Twitter)BlogspotInstagram
2026 SkyFly Travel. Minden jog fenntartva.
Reptéri transzfer, transzfer Győr, Budapest, Bécs Schwechat, Pozsony - Airport shuttle - Airport taxi - Reptéri járatok - Repülőtéri transzfer - Budapest repülőtér - Pozsony repülőtér ? Bécs repülőtér (Vienna Airport) - Transzfer Budapest Airport - Transzfer Vienna Airport - Budapest Liszt Ferenc (Ferihegy)
\ No newline at end of file diff --git a/out/akciok/facebook-google/index.txt b/out/akciok/facebook-google/index.txt index 4896e49..2f9bb8d 100644 --- a/out/akciok/facebook-google/index.txt +++ b/out/akciok/facebook-google/index.txt @@ -16,7 +16,7 @@ f:"$Sreact.suspense" 15:I[68027,[],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"SrJfr2gpwQrx3SSgHRI8k","c":["","akciok","facebook-google",""],"q":"","i":false,"f":[[["",{"children":["akciok",{"children":["facebook-google",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/7d3fcc1947879364.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} +0:{"P":null,"b":"XTogiP1ElaQRl870JimWE","c":["","akciok","facebook-google",""],"q":"","i":false,"f":[[["",{"children":["akciok",{"children":["facebook-google",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/7d3fcc1947879364.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} c:{} d:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/out/akciok/tiktok/__next._full.txt b/out/akciok/tiktok/__next._full.txt index 23e31a8..38769a7 100644 --- a/out/akciok/tiktok/__next._full.txt +++ b/out/akciok/tiktok/__next._full.txt @@ -16,7 +16,7 @@ f:"$Sreact.suspense" 15:I[68027,[],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"SrJfr2gpwQrx3SSgHRI8k","c":["","akciok","tiktok",""],"q":"","i":false,"f":[[["",{"children":["akciok",{"children":["tiktok",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/a2c8bafb7bd15efe.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} +0:{"P":null,"b":"XTogiP1ElaQRl870JimWE","c":["","akciok","tiktok",""],"q":"","i":false,"f":[[["",{"children":["akciok",{"children":["tiktok",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/a2c8bafb7bd15efe.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} c:{} d:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/out/akciok/tiktok/__next._head.txt b/out/akciok/tiktok/__next._head.txt index 1fb2eb6..4fcd20f 100644 --- a/out/akciok/tiktok/__next._head.txt +++ b/out/akciok/tiktok/__next._head.txt @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"IconMark"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"TikTok Kedvezmény - Utazzon 2025-ös árakon | SkyFly Travel"}],["$","meta","1",{"name":"description","content":"Nézze meg TikTok videónkat, kövessen be minket és utazzon a tavalyi árakon! Exkluzív ajánlat reptéri transzferhez."}],["$","meta","2",{"name":"keywords","content":"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 reptér, Bécs reptér (Vienna Airport), Transfer Budapest airport, Transfer Vienna Airport"}],["$","link","3",{"rel":"canonical","href":"https://skyflytravel.hu/akciok/tiktok/"}],["$","meta","4",{"property":"og:title","content":"TikTok Kedvezmény - Utazzon 2025-ös árakon | SkyFly Travel"}],["$","meta","5",{"property":"og:description","content":"Nézze meg TikTok videónkat, kövessen be minket és utazzon a tavalyi árakon! Exkluzív ajánlat reptéri transzferhez."}],["$","meta","6",{"property":"og:url","content":"https://skyflytravel.hu/akciok/tiktok/"}],["$","meta","7",{"property":"og:site_name","content":"SkyFly Travel"}],["$","meta","8",{"property":"og:locale","content":"hu_HU"}],["$","meta","9",{"property":"og:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","meta","10",{"property":"og:image:width","content":"1200"}],["$","meta","11",{"property":"og:image:height","content":"630"}],["$","meta","12",{"property":"og:image:alt","content":"SkyFly Travel - TikTok Akció"}],["$","meta","13",{"property":"og:type","content":"website"}],["$","meta","14",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","15",{"name":"twitter:title","content":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","16",{"name":"twitter:description","content":"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)"}],["$","meta","17",{"name":"twitter:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.bd9a44f8.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","19",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"TikTok Kedvezmény - Utazzon 2025-ös árakon | SkyFly Travel"}],["$","meta","1",{"name":"description","content":"Nézze meg TikTok videónkat, kövessen be minket és utazzon a tavalyi árakon! Exkluzív ajánlat reptéri transzferhez."}],["$","meta","2",{"name":"keywords","content":"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 reptér, Bécs reptér (Vienna Airport), Transfer Budapest airport, Transfer Vienna Airport"}],["$","link","3",{"rel":"canonical","href":"https://skyflytravel.hu/akciok/tiktok/"}],["$","meta","4",{"property":"og:title","content":"TikTok Kedvezmény - Utazzon 2025-ös árakon | SkyFly Travel"}],["$","meta","5",{"property":"og:description","content":"Nézze meg TikTok videónkat, kövessen be minket és utazzon a tavalyi árakon! Exkluzív ajánlat reptéri transzferhez."}],["$","meta","6",{"property":"og:url","content":"https://skyflytravel.hu/akciok/tiktok/"}],["$","meta","7",{"property":"og:site_name","content":"SkyFly Travel"}],["$","meta","8",{"property":"og:locale","content":"hu_HU"}],["$","meta","9",{"property":"og:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","meta","10",{"property":"og:image:width","content":"1200"}],["$","meta","11",{"property":"og:image:height","content":"630"}],["$","meta","12",{"property":"og:image:alt","content":"SkyFly Travel - TikTok Akció"}],["$","meta","13",{"property":"og:type","content":"website"}],["$","meta","14",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","15",{"name":"twitter:title","content":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","16",{"name":"twitter:description","content":"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)"}],["$","meta","17",{"name":"twitter:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.bd9a44f8.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","19",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} diff --git a/out/akciok/tiktok/__next._index.txt b/out/akciok/tiktok/__next._index.txt index 6de19c9..d0e144e 100644 --- a/out/akciok/tiktok/__next._index.txt +++ b/out/akciok/tiktok/__next._index.txt @@ -8,4 +8,4 @@ 8:I[36768,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js","/_next/static/chunks/d923f90fc26f0411.js"],"default"] 9:I[34581,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js"],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[["$","$L8",null,{}],[]]}]}],["$","$L9",null,{}]]}]]}]]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[["$","$L8",null,{}],[]]}]}],["$","$L9",null,{}]]}]]}]]}]]}],"loading":null,"isPartial":false} diff --git a/out/akciok/tiktok/__next._tree.txt b/out/akciok/tiktok/__next._tree.txt index 1402ffa..c3179ca 100644 --- a/out/akciok/tiktok/__next._tree.txt +++ b/out/akciok/tiktok/__next._tree.txt @@ -1,3 +1,3 @@ :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"akciok","paramType":null,"paramKey":"akciok","hasRuntimePrefetch":false,"slots":{"children":{"name":"tiktok","paramType":null,"paramKey":"tiktok","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300} +0:{"buildId":"XTogiP1ElaQRl870JimWE","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"akciok","paramType":null,"paramKey":"akciok","hasRuntimePrefetch":false,"slots":{"children":{"name":"tiktok","paramType":null,"paramKey":"tiktok","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300} diff --git a/out/akciok/tiktok/__next.akciok.txt b/out/akciok/tiktok/__next.akciok.txt index 82057b7..0c3ddd6 100644 --- a/out/akciok/tiktok/__next.akciok.txt +++ b/out/akciok/tiktok/__next.akciok.txt @@ -1,4 +1,4 @@ 1:"$Sreact.fragment" 2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} diff --git a/out/akciok/tiktok/__next.akciok/tiktok.txt b/out/akciok/tiktok/__next.akciok/tiktok.txt index 82057b7..0c3ddd6 100644 --- a/out/akciok/tiktok/__next.akciok/tiktok.txt +++ b/out/akciok/tiktok/__next.akciok/tiktok.txt @@ -1,4 +1,4 @@ 1:"$Sreact.fragment" 2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} diff --git a/out/akciok/tiktok/__next.akciok/tiktok/__PAGE__.txt b/out/akciok/tiktok/__next.akciok/tiktok/__PAGE__.txt index b67db22..2c1e811 100644 --- a/out/akciok/tiktok/__next.akciok/tiktok/__PAGE__.txt +++ b/out/akciok/tiktok/__next.akciok/tiktok/__PAGE__.txt @@ -3,7 +3,7 @@ 3:I[6494,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js","/_next/static/chunks/a2c8bafb7bd15efe.js","/_next/static/chunks/6ef51f8b2003e256.js"],"default"] 6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/a2c8bafb7bd15efe.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/a2c8bafb7bd15efe.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} 4:{} 5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 8:null diff --git a/out/akciok/tiktok/index.html b/out/akciok/tiktok/index.html index badf533..26af575 100644 --- a/out/akciok/tiktok/index.html +++ b/out/akciok/tiktok/index.html @@ -1 +1 @@ -TikTok Kedvezmény - Utazzon 2025-ös árakon | SkyFly TravelUgrás a tartalomra
Vissza a kezdőlapra

TikTok Akció

  • Keresse fel TikTok oldalunkat: @skyflytravel.transfer!
  • Kövesse be az oldalunkat!
  • Likeolja azt a videót, ami az akcióra vonatkozik (Utazás a 2025-ös viteldíjakon).
  • Megrendelés leadásakor jelezze felénk, hogy a fenti lépéseket megtette.

Készen áll az indulásra?

Csatlakozzon elégedett utasaink ezreihez és válassza a kényelmet.

Ügyfél vélemények
5.0
0 Ügyfél elégedettség
FacebookX (Twitter)BlogspotInstagram
2026 SkyFly Travel. Minden jog fenntartva.
Reptéri transzfer, transzfer Győr, Budapest, Bécs Schwechat, Pozsony - Airport shuttle - Airport taxi - Reptéri járatok - Repülőtéri transzfer - Budapest repülőtér - Pozsony repülőtér ? Bécs repülőtér (Vienna Airport) - Transzfer Budapest Airport - Transzfer Vienna Airport - Budapest Liszt Ferenc (Ferihegy)
\ No newline at end of file +TikTok Kedvezmény - Utazzon 2025-ös árakon | SkyFly TravelUgrás a tartalomra
Vissza a kezdőlapra

TikTok Akció

  • Keresse fel TikTok oldalunkat: @skyflytravel.transfer!
  • Kövesse be az oldalunkat!
  • Likeolja azt a videót, ami az akcióra vonatkozik (Utazás a 2025-ös viteldíjakon).
  • Megrendelés leadásakor jelezze felénk, hogy a fenti lépéseket megtette.

Készen áll az indulásra?

Csatlakozzon elégedett utasaink ezreihez és válassza a kényelmet.

Ügyfél vélemények
5.0
0 Ügyfél elégedettség
FacebookX (Twitter)BlogspotInstagram
2026 SkyFly Travel. Minden jog fenntartva.
Reptéri transzfer, transzfer Győr, Budapest, Bécs Schwechat, Pozsony - Airport shuttle - Airport taxi - Reptéri járatok - Repülőtéri transzfer - Budapest repülőtér - Pozsony repülőtér ? Bécs repülőtér (Vienna Airport) - Transzfer Budapest Airport - Transzfer Vienna Airport - Budapest Liszt Ferenc (Ferihegy)
\ No newline at end of file diff --git a/out/akciok/tiktok/index.txt b/out/akciok/tiktok/index.txt index 23e31a8..38769a7 100644 --- a/out/akciok/tiktok/index.txt +++ b/out/akciok/tiktok/index.txt @@ -16,7 +16,7 @@ f:"$Sreact.suspense" 15:I[68027,[],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"SrJfr2gpwQrx3SSgHRI8k","c":["","akciok","tiktok",""],"q":"","i":false,"f":[[["",{"children":["akciok",{"children":["tiktok",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/a2c8bafb7bd15efe.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} +0:{"P":null,"b":"XTogiP1ElaQRl870JimWE","c":["","akciok","tiktok",""],"q":"","i":false,"f":[[["",{"children":["akciok",{"children":["tiktok",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/a2c8bafb7bd15efe.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} c:{} d:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/out/arak/__next._full.txt b/out/arak/__next._full.txt index cb1e0b6..3edd327 100644 --- a/out/arak/__next._full.txt +++ b/out/arak/__next._full.txt @@ -16,7 +16,7 @@ f:"$Sreact.suspense" 15:I[68027,[],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"SrJfr2gpwQrx3SSgHRI8k","c":["","arak",""],"q":"","i":false,"f":[[["",{"children":["arak",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/67c76b36688b864d.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} +0:{"P":null,"b":"XTogiP1ElaQRl870JimWE","c":["","arak",""],"q":"","i":false,"f":[[["",{"children":["arak",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/67c76b36688b864d.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} c:{} d:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/out/arak/__next._head.txt b/out/arak/__next._head.txt index 82135be..ea27e07 100644 --- a/out/arak/__next._head.txt +++ b/out/arak/__next._head.txt @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"IconMark"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Árak - SkyFly Travel Reptéri Transzfer"}],["$","meta","1",{"name":"description","content":"Tekintse meg kedvező transzfer árainkat. Fix viteldíjak Győr, Budapest (Ferihegy) és Bécs (Schwechat) között. Info: +36 30 554 3838"}],["$","meta","2",{"name":"keywords","content":"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 reptér, Bécs reptér (Vienna Airport), Transfer Budapest airport, Transfer Vienna Airport"}],["$","link","3",{"rel":"canonical","href":"https://skyflytravel.hu/arak/"}],["$","meta","4",{"property":"og:title","content":"Árak - SkyFly Travel Reptéri Transzfer"}],["$","meta","5",{"property":"og:description","content":"Tekintse meg kedvező transzfer árainkat. Fix viteldíjak Győr, Budapest (Ferihegy) és Bécs (Schwechat) között. Info: +36 30 554 3838"}],["$","meta","6",{"property":"og:url","content":"https://skyflytravel.hu/arak/"}],["$","meta","7",{"property":"og:site_name","content":"SkyFly Travel"}],["$","meta","8",{"property":"og:locale","content":"hu_HU"}],["$","meta","9",{"property":"og:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","meta","10",{"property":"og:image:width","content":"1200"}],["$","meta","11",{"property":"og:image:height","content":"630"}],["$","meta","12",{"property":"og:image:alt","content":"SkyFly Travel - Árak"}],["$","meta","13",{"property":"og:type","content":"website"}],["$","meta","14",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","15",{"name":"twitter:title","content":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","16",{"name":"twitter:description","content":"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)"}],["$","meta","17",{"name":"twitter:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.bd9a44f8.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","19",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Árak - SkyFly Travel Reptéri Transzfer"}],["$","meta","1",{"name":"description","content":"Tekintse meg kedvező transzfer árainkat. Fix viteldíjak Győr, Budapest (Ferihegy) és Bécs (Schwechat) között. Info: +36 30 554 3838"}],["$","meta","2",{"name":"keywords","content":"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 reptér, Bécs reptér (Vienna Airport), Transfer Budapest airport, Transfer Vienna Airport"}],["$","link","3",{"rel":"canonical","href":"https://skyflytravel.hu/arak/"}],["$","meta","4",{"property":"og:title","content":"Árak - SkyFly Travel Reptéri Transzfer"}],["$","meta","5",{"property":"og:description","content":"Tekintse meg kedvező transzfer árainkat. Fix viteldíjak Győr, Budapest (Ferihegy) és Bécs (Schwechat) között. Info: +36 30 554 3838"}],["$","meta","6",{"property":"og:url","content":"https://skyflytravel.hu/arak/"}],["$","meta","7",{"property":"og:site_name","content":"SkyFly Travel"}],["$","meta","8",{"property":"og:locale","content":"hu_HU"}],["$","meta","9",{"property":"og:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","meta","10",{"property":"og:image:width","content":"1200"}],["$","meta","11",{"property":"og:image:height","content":"630"}],["$","meta","12",{"property":"og:image:alt","content":"SkyFly Travel - Árak"}],["$","meta","13",{"property":"og:type","content":"website"}],["$","meta","14",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","15",{"name":"twitter:title","content":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","16",{"name":"twitter:description","content":"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)"}],["$","meta","17",{"name":"twitter:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.bd9a44f8.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","19",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} diff --git a/out/arak/__next._index.txt b/out/arak/__next._index.txt index 6de19c9..d0e144e 100644 --- a/out/arak/__next._index.txt +++ b/out/arak/__next._index.txt @@ -8,4 +8,4 @@ 8:I[36768,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js","/_next/static/chunks/d923f90fc26f0411.js"],"default"] 9:I[34581,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js"],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[["$","$L8",null,{}],[]]}]}],["$","$L9",null,{}]]}]]}]]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[["$","$L8",null,{}],[]]}]}],["$","$L9",null,{}]]}]]}]]}]]}],"loading":null,"isPartial":false} diff --git a/out/arak/__next._tree.txt b/out/arak/__next._tree.txt index bb7a8e4..4611b1d 100644 --- a/out/arak/__next._tree.txt +++ b/out/arak/__next._tree.txt @@ -1,3 +1,3 @@ :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"arak","paramType":null,"paramKey":"arak","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300} +0:{"buildId":"XTogiP1ElaQRl870JimWE","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"arak","paramType":null,"paramKey":"arak","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300} diff --git a/out/arak/__next.arak.txt b/out/arak/__next.arak.txt index 82057b7..0c3ddd6 100644 --- a/out/arak/__next.arak.txt +++ b/out/arak/__next.arak.txt @@ -1,4 +1,4 @@ 1:"$Sreact.fragment" 2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} diff --git a/out/arak/__next.arak/__PAGE__.txt b/out/arak/__next.arak/__PAGE__.txt index 2820111..d9171b5 100644 --- a/out/arak/__next.arak/__PAGE__.txt +++ b/out/arak/__next.arak/__PAGE__.txt @@ -3,7 +3,7 @@ 3:I[61030,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js","/_next/static/chunks/6ef51f8b2003e256.js","/_next/static/chunks/67c76b36688b864d.js"],"default"] 6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/67c76b36688b864d.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/67c76b36688b864d.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} 4:{} 5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 8:null diff --git a/out/arak/index.html b/out/arak/index.html index 9335888..4b9ea50 100644 --- a/out/arak/index.html +++ b/out/arak/index.html @@ -1 +1 @@ -Árak - SkyFly Travel Reptéri TranszferUgrás a tartalomra
Vissza a kezdőlapra

Transzfer
Viteldíjak

Átlátható árak, rejtett költségek nélkül. Számoljon előre és utazzon stresszmentesen a SkyFly Travellel. Válassza a kényelmes, biztonságos utazást és élvezze a több mint 10 éves szakmai tapasztalatunkat!

Fontos foglalási információ

A foglalásokat legfeljebb 2 munkanapon belül, kizárólag szabad kapacitás függvényében áll módunkban visszaigazolni. Az út előtti munkanap 12:00 után leadott megrendelések esetén, kérjük mindenképp keresse fel ügyfélszolgálatunkat (+36305543838), hogy tájékoztatni tudjuk a lehetőségekről. Határidőn túli megrendelések elfogadása esetén, 2.500 Ft sürgősségi felárat számítunk fel.

Ünnepnapokon ( pl. Húsvét, Pünkösd, Karácsony, Szilveszter stb.) feláras szolgáltatás keretében vállalunk transzfer szolgáltatást. (a felárak útvonalanként eltérőek, ezért kérjen ajánlatot az utazási részletek megadásával és tájékoztatjuk a pontos ünnepi felárakról)

Győrtől eltérő címek esetén is vállalunk transzfert (Nyugat - Dunántúli régióban), kérjen ajánlatot és tájékoztatjuk a pontos viteldíjakról!

ONLINE FOGLALÁS / AJÁNLAT

VIENNA

GYŐR – BÉCS REPTÉR (SCHWECHAT) vagy BÉCS REPTÉR - GYŐR

1 fő / 1 út
Gyűjtő EXPRESS
16.000 HUF
PRIVATE
29.000 HUF
2 fő / 1 út
Gyűjtő EXPRESS
23.500 HUF
PRIVATE
29.000 HUF
3 fő / 1 út
Gyűjtő EXPRESS
26.500 HUF
PRIVATE
29.000 HUF
4 fő / 1 út
Gyűjtő EXPRESS
31.000 HUF
PRIVATE
35.000 HUF
5-6 fő / 1 út
Gyűjtő EXPRESS
33.000 HUF
PRIVATE
37.500 HUF
7-8 fő / 1 út
Gyűjtő EXPRESS
35.000 HUF
PRIVATE
39.000 HUF
Családi csomag33.000 HUF

max. 4 fő, min. 1 gyermek (0-14 éves), private transzfer, max. 3 normál és 3 kézi poggyász (Teljesítés: személygépjárművel)

„Nagy” családi csomag36.000 HUF

max. 6 fő, min. 1 gyermek (0-14 éves), private transzfer, max. 6 normál és 6 kézi poggyász (Teljesítés: kisbusszal)

Prémium VIP opciók

1-3 fő (Mercedes E-class VIP): 40.000 Ft
4-6 fő (Mercedes Vito / Ford Tourneo Custom VIP): 50.000 Ft
Érvényes árak: 2026.01.15

BUDAPEST

GYŐR – BUDAPEST REPTÉR vagy BUDAPEST REPTÉR - GYŐR

1 fő / 1 út
Gyűjtő EXPRESS
20.000 HUF
PRIVATE
40.000 HUF
2 fő / 1 út
Gyűjtő EXPRESS
28.000 HUF
PRIVATE
40.000 HUF
3 fő / 1 út
Gyűjtő EXPRESS
32.000 HUF
PRIVATE
40.000 HUF
4 fő / 1 út
Gyűjtő EXPRESS
40.000 HUF
PRIVATE
45.000 HUF
5-6 fő / 1 út
Gyűjtő EXPRESS
45.000 HUF
PRIVATE
50.000 HUF
7-8 fő / 1 út
Gyűjtő EXPRESS
50.000 HUF
PRIVATE
55.000 HUF
Családi csomag42.000 HUF

max. 4 fő, min. 1 gyermek (0-14 éves), private transzfer, max. 3 normál és 3 kézi poggyász (Teljesítés: személygépjárművel)

„Nagy” családi csomag47.500 HUF

max. 6 fő, min. 1 gyermek (0-14 éves), private transzfer, max. 6 normál és 6 kézi poggyász (Teljesítés: kisbusszal)

Prémium VIP opciók

1-3 fő (Mercedes E-class VIP): 50.000 Ft
4-6 fő (Mercedes Vito / Ford Tourneo Custom VIP): 65.000 Ft
Érvényes árak: 2026.01.15

BRATISLAVA

GYŐR – POZSONY REPTÉR vagy POZSONY REPTÉR - GYŐR

1 fő / 1 út
Gyűjtő EXPRESS
16.000 HUF
PRIVATE
29.000 HUF
2 fő / 1 út
Gyűjtő EXPRESS
23.500 HUF
PRIVATE
29.000 HUF
3 fő / 1 út
Gyűjtő EXPRESS
26.500 HUF
PRIVATE
29.000 HUF
4 fő / 1 út
Gyűjtő EXPRESS
31.000 HUF
PRIVATE
35.000 HUF
5-6 fő / 1 út
Gyűjtő EXPRESS
33.000 HUF
PRIVATE
37.500 HUF
7-8 fő / 1 út
Gyűjtő EXPRESS
35.000 HUF
PRIVATE
39.000 HUF
Családi csomag33.000 HUF

max. 4 fő, min. 1 gyermek (0-14 éves), private transzfer, max. 3 normál és 3 kézi poggyász (Teljesítés: személygépjárművel)

„Nagy” családi csomag36.000 HUF

max. 6 fő, min. 1 gyermek (0-14 éves), private transzfer, max. 6 normál és 6 kézi poggyász (Teljesítés: kisbusszal)

Prémium VIP opciók

1-3 fő (Mercedes E-class VIP): 40.000 Ft
4-6 fő (Mercedes Vito / Ford Tourneo Custom VIP): 50.000 Ft
Érvényes árak: 2026.01.15

BRATISLAVA

BUDAPEST – BÉCS vagy POZSONY REPTÉR és visszairány

1 fő / 1 út
Gyűjtő EXPRESS
40.000 HUF
PRIVATE
60.000 HUF
2 fő / 1 út
Gyűjtő EXPRESS
50.000 HUF
PRIVATE
60.000 HUF
3 fő / 1 út
Gyűjtő EXPRESS
55.000 HUF
PRIVATE
60.000 HUF
4 fő / 1 út
Gyűjtő EXPRESS
60.000 HUF
PRIVATE
70.000 HUF
5 fő / 1 út
Gyűjtő EXPRESS
65.000 HUF
PRIVATE
75.000 HUF
6 fő / 1 út
Gyűjtő EXPRESS
65.000 HUF
PRIVATE
75.000 HUF
7-8 fő / 1 út
Gyűjtő EXPRESS
70.000 HUF
PRIVATE
80.000 HUF
Családi csomag66.000 HUF

max. 4 fő, min. 1 gyermek (0-14 éves), private transzfer, max. 3 normál és 3 kézi poggyász (Teljesítés: személygépjárművel)

„Nagy” családi csomag72.000 HUF

max. 6 fő, min. 1 gyermek (0-14 éves), private transzfer, max. 6 normál és 6 kézi poggyász (Teljesítés: kisbusszal)

Prémium VIP opciók

1-3 fő (Mercedes E-class VIP): 75.000 Ft
4-6 fő (Mercedes Vito / Ford Tourneo Custom VIP): 95.000 Ft
Érvényes árak: 2026.01.15

Biztonság

A viteldíjak baleset- és poggyász biztosítást is tartalmaznak, gépjárműveink Premium Casco biztosítása révén.

Címek

Győr közigazgatási területén (belváros, Győrszentiván, Ménfőcsanak stb.) belüli címek esetén nem számolunk fel plusz költséget.

Egyedi út?

Más indulási vagy érkezési címet szeretne? Kérje egyedi ajánlatunkat emailben vagy telefonon, szívesen segítünk!

Kérdése van? Keressen minket!

Készen áll az indulásra?

Csatlakozzon elégedett utasaink ezreihez és válassza a kényelmet.

Ügyfél vélemények
5.0
0 Ügyfél elégedettség
FacebookX (Twitter)BlogspotInstagram
2026 SkyFly Travel. Minden jog fenntartva.
Reptéri transzfer, transzfer Győr, Budapest, Bécs Schwechat, Pozsony - Airport shuttle - Airport taxi - Reptéri járatok - Repülőtéri transzfer - Budapest repülőtér - Pozsony repülőtér ? Bécs repülőtér (Vienna Airport) - Transzfer Budapest Airport - Transzfer Vienna Airport - Budapest Liszt Ferenc (Ferihegy)
\ No newline at end of file +Árak - SkyFly Travel Reptéri TranszferUgrás a tartalomra
Vissza a kezdőlapra

Transzfer
Viteldíjak

Átlátható árak, rejtett költségek nélkül. Számoljon előre és utazzon stresszmentesen a SkyFly Travellel. Válassza a kényelmes, biztonságos utazást és élvezze a több mint 10 éves szakmai tapasztalatunkat!

Fontos foglalási információ

A foglalásokat legfeljebb 2 munkanapon belül, kizárólag szabad kapacitás függvényében áll módunkban visszaigazolni. Az út előtti munkanap 12:00 után leadott megrendelések esetén, kérjük mindenképp keresse fel ügyfélszolgálatunkat (+36305543838), hogy tájékoztatni tudjuk a lehetőségekről. Határidőn túli megrendelések elfogadása esetén, 2.500 Ft sürgősségi felárat számítunk fel.

Ünnepnapokon ( pl. Húsvét, Pünkösd, Karácsony, Szilveszter stb.) feláras szolgáltatás keretében vállalunk transzfer szolgáltatást. (a felárak útvonalanként eltérőek, ezért kérjen ajánlatot az utazási részletek megadásával és tájékoztatjuk a pontos ünnepi felárakról)

Győrtől eltérő címek esetén is vállalunk transzfert (Nyugat - Dunántúli régióban), kérjen ajánlatot és tájékoztatjuk a pontos viteldíjakról!

ONLINE FOGLALÁS / AJÁNLAT

VIENNA

GYŐR – BÉCS REPTÉR (SCHWECHAT) vagy BÉCS REPTÉR - GYŐR

1 fő / 1 út
Gyűjtő EXPRESS
16.000 HUF
PRIVATE
29.000 HUF
2 fő / 1 út
Gyűjtő EXPRESS
23.500 HUF
PRIVATE
29.000 HUF
3 fő / 1 út
Gyűjtő EXPRESS
26.500 HUF
PRIVATE
29.000 HUF
4 fő / 1 út
Gyűjtő EXPRESS
31.000 HUF
PRIVATE
35.000 HUF
5-6 fő / 1 út
Gyűjtő EXPRESS
33.000 HUF
PRIVATE
37.500 HUF
7-8 fő / 1 út
Gyűjtő EXPRESS
35.000 HUF
PRIVATE
39.000 HUF
Családi csomag33.000 HUF

max. 4 fő, min. 1 gyermek (0-14 éves), private transzfer, max. 3 normál és 3 kézi poggyász (Teljesítés: személygépjárművel)

„Nagy” családi csomag36.000 HUF

max. 6 fő, min. 1 gyermek (0-14 éves), private transzfer, max. 6 normál és 6 kézi poggyász (Teljesítés: kisbusszal)

Prémium VIP opciók

1-3 fő (Mercedes E-class VIP): 40.000 Ft
4-6 fő (Mercedes Vito / Ford Tourneo Custom VIP): 50.000 Ft
Érvényes árak: 2026.01.15

BUDAPEST

GYŐR – BUDAPEST REPTÉR vagy BUDAPEST REPTÉR - GYŐR

1 fő / 1 út
Gyűjtő EXPRESS
20.000 HUF
PRIVATE
40.000 HUF
2 fő / 1 út
Gyűjtő EXPRESS
28.000 HUF
PRIVATE
40.000 HUF
3 fő / 1 út
Gyűjtő EXPRESS
32.000 HUF
PRIVATE
40.000 HUF
4 fő / 1 út
Gyűjtő EXPRESS
40.000 HUF
PRIVATE
45.000 HUF
5-6 fő / 1 út
Gyűjtő EXPRESS
45.000 HUF
PRIVATE
50.000 HUF
7-8 fő / 1 út
Gyűjtő EXPRESS
50.000 HUF
PRIVATE
55.000 HUF
Családi csomag42.000 HUF

max. 4 fő, min. 1 gyermek (0-14 éves), private transzfer, max. 3 normál és 3 kézi poggyász (Teljesítés: személygépjárművel)

„Nagy” családi csomag47.500 HUF

max. 6 fő, min. 1 gyermek (0-14 éves), private transzfer, max. 6 normál és 6 kézi poggyász (Teljesítés: kisbusszal)

Prémium VIP opciók

1-3 fő (Mercedes E-class VIP): 50.000 Ft
4-6 fő (Mercedes Vito / Ford Tourneo Custom VIP): 65.000 Ft
Érvényes árak: 2026.01.15

BRATISLAVA

GYŐR – POZSONY REPTÉR vagy POZSONY REPTÉR - GYŐR

1 fő / 1 út
Gyűjtő EXPRESS
16.000 HUF
PRIVATE
29.000 HUF
2 fő / 1 út
Gyűjtő EXPRESS
23.500 HUF
PRIVATE
29.000 HUF
3 fő / 1 út
Gyűjtő EXPRESS
26.500 HUF
PRIVATE
29.000 HUF
4 fő / 1 út
Gyűjtő EXPRESS
31.000 HUF
PRIVATE
35.000 HUF
5-6 fő / 1 út
Gyűjtő EXPRESS
33.000 HUF
PRIVATE
37.500 HUF
7-8 fő / 1 út
Gyűjtő EXPRESS
35.000 HUF
PRIVATE
39.000 HUF
Családi csomag33.000 HUF

max. 4 fő, min. 1 gyermek (0-14 éves), private transzfer, max. 3 normál és 3 kézi poggyász (Teljesítés: személygépjárművel)

„Nagy” családi csomag36.000 HUF

max. 6 fő, min. 1 gyermek (0-14 éves), private transzfer, max. 6 normál és 6 kézi poggyász (Teljesítés: kisbusszal)

Prémium VIP opciók

1-3 fő (Mercedes E-class VIP): 40.000 Ft
4-6 fő (Mercedes Vito / Ford Tourneo Custom VIP): 50.000 Ft
Érvényes árak: 2026.01.15

BRATISLAVA

BUDAPEST – BÉCS vagy POZSONY REPTÉR és visszairány

1 fő / 1 út
Gyűjtő EXPRESS
40.000 HUF
PRIVATE
60.000 HUF
2 fő / 1 út
Gyűjtő EXPRESS
50.000 HUF
PRIVATE
60.000 HUF
3 fő / 1 út
Gyűjtő EXPRESS
55.000 HUF
PRIVATE
60.000 HUF
4 fő / 1 út
Gyűjtő EXPRESS
60.000 HUF
PRIVATE
70.000 HUF
5 fő / 1 út
Gyűjtő EXPRESS
65.000 HUF
PRIVATE
75.000 HUF
6 fő / 1 út
Gyűjtő EXPRESS
65.000 HUF
PRIVATE
75.000 HUF
7-8 fő / 1 út
Gyűjtő EXPRESS
70.000 HUF
PRIVATE
80.000 HUF
Családi csomag66.000 HUF

max. 4 fő, min. 1 gyermek (0-14 éves), private transzfer, max. 3 normál és 3 kézi poggyász (Teljesítés: személygépjárművel)

„Nagy” családi csomag72.000 HUF

max. 6 fő, min. 1 gyermek (0-14 éves), private transzfer, max. 6 normál és 6 kézi poggyász (Teljesítés: kisbusszal)

Prémium VIP opciók

1-3 fő (Mercedes E-class VIP): 75.000 Ft
4-6 fő (Mercedes Vito / Ford Tourneo Custom VIP): 95.000 Ft
Érvényes árak: 2026.01.15

Biztonság

A viteldíjak baleset- és poggyász biztosítást is tartalmaznak, gépjárműveink Premium Casco biztosítása révén.

Címek

Győr közigazgatási területén (belváros, Győrszentiván, Ménfőcsanak stb.) belüli címek esetén nem számolunk fel plusz költséget.

Egyedi út?

Más indulási vagy érkezési címet szeretne? Kérje egyedi ajánlatunkat emailben vagy telefonon, szívesen segítünk!

Kérdése van? Keressen minket!

Készen áll az indulásra?

Csatlakozzon elégedett utasaink ezreihez és válassza a kényelmet.

Ügyfél vélemények
5.0
0 Ügyfél elégedettség
FacebookX (Twitter)BlogspotInstagram
2026 SkyFly Travel. Minden jog fenntartva.
Reptéri transzfer, transzfer Győr, Budapest, Bécs Schwechat, Pozsony - Airport shuttle - Airport taxi - Reptéri járatok - Repülőtéri transzfer - Budapest repülőtér - Pozsony repülőtér ? Bécs repülőtér (Vienna Airport) - Transzfer Budapest Airport - Transzfer Vienna Airport - Budapest Liszt Ferenc (Ferihegy)
\ No newline at end of file diff --git a/out/arak/index.txt b/out/arak/index.txt index cb1e0b6..3edd327 100644 --- a/out/arak/index.txt +++ b/out/arak/index.txt @@ -16,7 +16,7 @@ f:"$Sreact.suspense" 15:I[68027,[],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"SrJfr2gpwQrx3SSgHRI8k","c":["","arak",""],"q":"","i":false,"f":[[["",{"children":["arak",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/67c76b36688b864d.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} +0:{"P":null,"b":"XTogiP1ElaQRl870JimWE","c":["","arak",""],"q":"","i":false,"f":[[["",{"children":["arak",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/67c76b36688b864d.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} c:{} d:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/out/egyeb-szemelyszallitas/__next._full.txt b/out/egyeb-szemelyszallitas/__next._full.txt index c2f880d..39cf8b4 100644 --- a/out/egyeb-szemelyszallitas/__next._full.txt +++ b/out/egyeb-szemelyszallitas/__next._full.txt @@ -16,7 +16,7 @@ f:"$Sreact.suspense" 15:I[68027,[],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"SrJfr2gpwQrx3SSgHRI8k","c":["","egyeb-szemelyszallitas",""],"q":"","i":false,"f":[[["",{"children":["egyeb-szemelyszallitas",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/18b33c05bb28c993.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} +0:{"P":null,"b":"XTogiP1ElaQRl870JimWE","c":["","egyeb-szemelyszallitas",""],"q":"","i":false,"f":[[["",{"children":["egyeb-szemelyszallitas",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/18b33c05bb28c993.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} c:{} d:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/out/egyeb-szemelyszallitas/__next._head.txt b/out/egyeb-szemelyszallitas/__next._head.txt index 128cd1e..499d4c6 100644 --- a/out/egyeb-szemelyszallitas/__next._head.txt +++ b/out/egyeb-szemelyszallitas/__next._head.txt @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"IconMark"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Egyéb személyszállítás - Egyedi igényekre szabva | SkyFly Travel"}],["$","meta","1",{"name":"description","content":"Egyéni és csoportos személyszállítás: kirándulások, esküvők, céges rendezvények, munkásjáratok. Rugalmas megoldások, modern flotta."}],["$","meta","2",{"name":"keywords","content":"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 reptér, Bécs reptér (Vienna Airport), Transfer Budapest airport, Transfer Vienna Airport"}],["$","link","3",{"rel":"canonical","href":"https://skyflytravel.hu/egyeb-szemelyszallitas/"}],["$","meta","4",{"property":"og:title","content":"Egyéb személyszállítás - Egyedi igényekre szabva | SkyFly Travel"}],["$","meta","5",{"property":"og:description","content":"Egyéni és csoportos személyszállítás: kirándulások, esküvők, céges rendezvények, munkásjáratok. Rugalmas megoldások, modern flotta."}],["$","meta","6",{"property":"og:url","content":"https://skyflytravel.hu/egyeb-szemelyszallitas/"}],["$","meta","7",{"property":"og:site_name","content":"SkyFly Travel"}],["$","meta","8",{"property":"og:locale","content":"hu_HU"}],["$","meta","9",{"property":"og:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","meta","10",{"property":"og:image:width","content":"1200"}],["$","meta","11",{"property":"og:image:height","content":"630"}],["$","meta","12",{"property":"og:image:alt","content":"SkyFly Travel - Egyéb személyszállítás"}],["$","meta","13",{"property":"og:type","content":"website"}],["$","meta","14",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","15",{"name":"twitter:title","content":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","16",{"name":"twitter:description","content":"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)"}],["$","meta","17",{"name":"twitter:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.bd9a44f8.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","19",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Egyéb személyszállítás - Egyedi igényekre szabva | SkyFly Travel"}],["$","meta","1",{"name":"description","content":"Egyéni és csoportos személyszállítás: kirándulások, esküvők, céges rendezvények, munkásjáratok. Rugalmas megoldások, modern flotta."}],["$","meta","2",{"name":"keywords","content":"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 reptér, Bécs reptér (Vienna Airport), Transfer Budapest airport, Transfer Vienna Airport"}],["$","link","3",{"rel":"canonical","href":"https://skyflytravel.hu/egyeb-szemelyszallitas/"}],["$","meta","4",{"property":"og:title","content":"Egyéb személyszállítás - Egyedi igényekre szabva | SkyFly Travel"}],["$","meta","5",{"property":"og:description","content":"Egyéni és csoportos személyszállítás: kirándulások, esküvők, céges rendezvények, munkásjáratok. Rugalmas megoldások, modern flotta."}],["$","meta","6",{"property":"og:url","content":"https://skyflytravel.hu/egyeb-szemelyszallitas/"}],["$","meta","7",{"property":"og:site_name","content":"SkyFly Travel"}],["$","meta","8",{"property":"og:locale","content":"hu_HU"}],["$","meta","9",{"property":"og:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","meta","10",{"property":"og:image:width","content":"1200"}],["$","meta","11",{"property":"og:image:height","content":"630"}],["$","meta","12",{"property":"og:image:alt","content":"SkyFly Travel - Egyéb személyszállítás"}],["$","meta","13",{"property":"og:type","content":"website"}],["$","meta","14",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","15",{"name":"twitter:title","content":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","16",{"name":"twitter:description","content":"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)"}],["$","meta","17",{"name":"twitter:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.bd9a44f8.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","19",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} diff --git a/out/egyeb-szemelyszallitas/__next._index.txt b/out/egyeb-szemelyszallitas/__next._index.txt index 6de19c9..d0e144e 100644 --- a/out/egyeb-szemelyszallitas/__next._index.txt +++ b/out/egyeb-szemelyszallitas/__next._index.txt @@ -8,4 +8,4 @@ 8:I[36768,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js","/_next/static/chunks/d923f90fc26f0411.js"],"default"] 9:I[34581,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js"],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[["$","$L8",null,{}],[]]}]}],["$","$L9",null,{}]]}]]}]]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[["$","$L8",null,{}],[]]}]}],["$","$L9",null,{}]]}]]}]]}]]}],"loading":null,"isPartial":false} diff --git a/out/egyeb-szemelyszallitas/__next._tree.txt b/out/egyeb-szemelyszallitas/__next._tree.txt index f3f63a2..860c0bc 100644 --- a/out/egyeb-szemelyszallitas/__next._tree.txt +++ b/out/egyeb-szemelyszallitas/__next._tree.txt @@ -1,3 +1,3 @@ :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"egyeb-szemelyszallitas","paramType":null,"paramKey":"egyeb-szemelyszallitas","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300} +0:{"buildId":"XTogiP1ElaQRl870JimWE","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"egyeb-szemelyszallitas","paramType":null,"paramKey":"egyeb-szemelyszallitas","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300} diff --git a/out/egyeb-szemelyszallitas/__next.egyeb-szemelyszallitas.txt b/out/egyeb-szemelyszallitas/__next.egyeb-szemelyszallitas.txt index 82057b7..0c3ddd6 100644 --- a/out/egyeb-szemelyszallitas/__next.egyeb-szemelyszallitas.txt +++ b/out/egyeb-szemelyszallitas/__next.egyeb-szemelyszallitas.txt @@ -1,4 +1,4 @@ 1:"$Sreact.fragment" 2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} diff --git a/out/egyeb-szemelyszallitas/__next.egyeb-szemelyszallitas/__PAGE__.txt b/out/egyeb-szemelyszallitas/__next.egyeb-szemelyszallitas/__PAGE__.txt index 9fd7152..c8c4efa 100644 --- a/out/egyeb-szemelyszallitas/__next.egyeb-szemelyszallitas/__PAGE__.txt +++ b/out/egyeb-szemelyszallitas/__next.egyeb-szemelyszallitas/__PAGE__.txt @@ -3,7 +3,7 @@ 3:I[24564,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js","/_next/static/chunks/18b33c05bb28c993.js","/_next/static/chunks/6ef51f8b2003e256.js"],"default"] 6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/18b33c05bb28c993.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/18b33c05bb28c993.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} 4:{} 5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 8:null diff --git a/out/egyeb-szemelyszallitas/index.html b/out/egyeb-szemelyszallitas/index.html index caa894b..f83dd2b 100644 --- a/out/egyeb-szemelyszallitas/index.html +++ b/out/egyeb-szemelyszallitas/index.html @@ -1 +1 @@ -Egyéb személyszállítás - Egyedi igényekre szabva | SkyFly TravelUgrás a tartalomra
Vissza a kezdőlapra

Egyéb
személyszállítás

Egyedi igényekhez szabott, rugalmas személyszállítási megoldások. Legyen szó családi eseményről, céges rendezvényről vagy rendszeres munkásjáratról, ránk számíthat.

Egyedi Megoldások

Minden igényre van megoldásunk

Egyéb személyszállítás alatt értjük azokat az utaztatásokat, melyek során a megrendelő egyedi igényeinek megfelelően teljesítjük a személyszallítást. Például: kirándulások (akár több napos külföldi kirándulás), esküvők (esküvői autó és vendégek szállítása kisbuszokkal), céges rendezvények, konferenciák, munkásjáratok. Nagyobb létszám esetén több kisbusz rendelhető egyidőre vagy nagy buszos partnerünk szolgáltatása is választható.

Kirándulások

Kirándulások

Belföldi és külföldi kirándulások, akár több napos utak lebonyolítása modern, kényelmes járműveinkkel.

Esküvők

Esküvők

Elegáns esküvői autók a párnak, és megbízható kisbuszos szállítás a násznép részére.

Céges rendezvények

Céges rendezvények

Konferenciák, csapatépítők és egyéb vállalati események logisztikai háttere.

Munkásjáratok

Munkásjáratok

Rendszeres, pontos és biztonságos munkaszállítás a hét minden napján, vállalatok részére.

Rugalmas létszám

Flottánk és partnerhálózatunk lehetővé teszi, hogy a kisebb csoportoktól a több száz fős rendezvényekig mindenre megoldást nyújtsunk. Több kisbusz vagy akár nagy buszos partnerünk bevonásával garantáljuk a zökkenőmentes szállítást.

Több kisbusz egyszerre
Buszpartner szoros együttműködésben
Logisztikai tervezés nagy létszámhoz

Kapcsolatfelvétel

Kérjen egyedi ajánlatot

Garantált minőség

Több mint 10 év tapasztalatával garantáljuk a pontosságot és a prémium szolgáltatást minden egyedi megrendelés esetén is.

Készen áll az indulásra?

Csatlakozzon elégedett utasaink ezreihez és válassza a kényelmet.

Ügyfél vélemények
5.0
0 Ügyfél elégedettség
FacebookX (Twitter)BlogspotInstagram
2026 SkyFly Travel. Minden jog fenntartva.
Reptéri transzfer, transzfer Győr, Budapest, Bécs Schwechat, Pozsony - Airport shuttle - Airport taxi - Reptéri járatok - Repülőtéri transzfer - Budapest repülőtér - Pozsony repülőtér ? Bécs repülőtér (Vienna Airport) - Transzfer Budapest Airport - Transzfer Vienna Airport - Budapest Liszt Ferenc (Ferihegy)
\ No newline at end of file +Egyéb személyszállítás - Egyedi igényekre szabva | SkyFly TravelUgrás a tartalomra
Vissza a kezdőlapra

Egyéb
személyszállítás

Egyedi igényekhez szabott, rugalmas személyszállítási megoldások. Legyen szó családi eseményről, céges rendezvényről vagy rendszeres munkásjáratról, ránk számíthat.

Egyedi Megoldások

Minden igényre van megoldásunk

Egyéb személyszállítás alatt értjük azokat az utaztatásokat, melyek során a megrendelő egyedi igényeinek megfelelően teljesítjük a személyszallítást. Például: kirándulások (akár több napos külföldi kirándulás), esküvők (esküvői autó és vendégek szállítása kisbuszokkal), céges rendezvények, konferenciák, munkásjáratok. Nagyobb létszám esetén több kisbusz rendelhető egyidőre vagy nagy buszos partnerünk szolgáltatása is választható.

Kirándulások

Kirándulások

Belföldi és külföldi kirándulások, akár több napos utak lebonyolítása modern, kényelmes járműveinkkel.

Esküvők

Esküvők

Elegáns esküvői autók a párnak, és megbízható kisbuszos szállítás a násznép részére.

Céges rendezvények

Céges rendezvények

Konferenciák, csapatépítők és egyéb vállalati események logisztikai háttere.

Munkásjáratok

Munkásjáratok

Rendszeres, pontos és biztonságos munkaszállítás a hét minden napján, vállalatok részére.

Rugalmas létszám

Flottánk és partnerhálózatunk lehetővé teszi, hogy a kisebb csoportoktól a több száz fős rendezvényekig mindenre megoldást nyújtsunk. Több kisbusz vagy akár nagy buszos partnerünk bevonásával garantáljuk a zökkenőmentes szállítást.

Több kisbusz egyszerre
Buszpartner szoros együttműködésben
Logisztikai tervezés nagy létszámhoz

Kapcsolatfelvétel

Kérjen egyedi ajánlatot

Garantált minőség

Több mint 10 év tapasztalatával garantáljuk a pontosságot és a prémium szolgáltatást minden egyedi megrendelés esetén is.

Készen áll az indulásra?

Csatlakozzon elégedett utasaink ezreihez és válassza a kényelmet.

Ügyfél vélemények
5.0
0 Ügyfél elégedettség
FacebookX (Twitter)BlogspotInstagram
2026 SkyFly Travel. Minden jog fenntartva.
Reptéri transzfer, transzfer Győr, Budapest, Bécs Schwechat, Pozsony - Airport shuttle - Airport taxi - Reptéri járatok - Repülőtéri transzfer - Budapest repülőtér - Pozsony repülőtér ? Bécs repülőtér (Vienna Airport) - Transzfer Budapest Airport - Transzfer Vienna Airport - Budapest Liszt Ferenc (Ferihegy)
\ No newline at end of file diff --git a/out/egyeb-szemelyszallitas/index.txt b/out/egyeb-szemelyszallitas/index.txt index c2f880d..39cf8b4 100644 --- a/out/egyeb-szemelyszallitas/index.txt +++ b/out/egyeb-szemelyszallitas/index.txt @@ -16,7 +16,7 @@ f:"$Sreact.suspense" 15:I[68027,[],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"SrJfr2gpwQrx3SSgHRI8k","c":["","egyeb-szemelyszallitas",""],"q":"","i":false,"f":[[["",{"children":["egyeb-szemelyszallitas",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/18b33c05bb28c993.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} +0:{"P":null,"b":"XTogiP1ElaQRl870JimWE","c":["","egyeb-szemelyszallitas",""],"q":"","i":false,"f":[[["",{"children":["egyeb-szemelyszallitas",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/18b33c05bb28c993.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} c:{} d:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/out/feltetelek/__next._full.txt b/out/feltetelek/__next._full.txt index d8baa28..77ed8b4 100644 --- a/out/feltetelek/__next._full.txt +++ b/out/feltetelek/__next._full.txt @@ -16,7 +16,7 @@ f:"$Sreact.suspense" 15:I[68027,[],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"SrJfr2gpwQrx3SSgHRI8k","c":["","feltetelek",""],"q":"","i":false,"f":[[["",{"children":["feltetelek",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/6c195d6a2e079108.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} +0:{"P":null,"b":"XTogiP1ElaQRl870JimWE","c":["","feltetelek",""],"q":"","i":false,"f":[[["",{"children":["feltetelek",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/6c195d6a2e079108.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} c:{} d:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/out/feltetelek/__next._head.txt b/out/feltetelek/__next._head.txt index ca3f7c2..51244bf 100644 --- a/out/feltetelek/__next._head.txt +++ b/out/feltetelek/__next._head.txt @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"IconMark"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Vállalási Feltételek - Fontos információk | SkyFly Travel"}],["$","meta","1",{"name":"description","content":"Ismerje meg reptéri transzfer szolgáltatásunk vállalási feltételeit. Lemondási feltételek, fizetési módok és fontos utastájékoztató."}],["$","meta","2",{"name":"keywords","content":"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 reptér, Bécs reptér (Vienna Airport), Transfer Budapest airport, Transfer Vienna Airport"}],["$","link","3",{"rel":"canonical","href":"https://skyflytravel.hu/feltetelek/"}],["$","meta","4",{"property":"og:title","content":"Vállalási Feltételek - Fontos információk | SkyFly Travel"}],["$","meta","5",{"property":"og:description","content":"Ismerje meg reptéri transzfer szolgáltatásunk vállalási feltételeit. Lemondási feltételek, fizetési módok és fontos utastájékoztató."}],["$","meta","6",{"property":"og:url","content":"https://skyflytravel.hu/feltetelek/"}],["$","meta","7",{"property":"og:site_name","content":"SkyFly Travel"}],["$","meta","8",{"property":"og:locale","content":"hu_HU"}],["$","meta","9",{"property":"og:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","meta","10",{"property":"og:image:width","content":"1200"}],["$","meta","11",{"property":"og:image:height","content":"630"}],["$","meta","12",{"property":"og:image:alt","content":"SkyFly Travel - Vállalási Feltételek"}],["$","meta","13",{"property":"og:type","content":"website"}],["$","meta","14",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","15",{"name":"twitter:title","content":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","16",{"name":"twitter:description","content":"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)"}],["$","meta","17",{"name":"twitter:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.bd9a44f8.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","19",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Vállalási Feltételek - Fontos információk | SkyFly Travel"}],["$","meta","1",{"name":"description","content":"Ismerje meg reptéri transzfer szolgáltatásunk vállalási feltételeit. Lemondási feltételek, fizetési módok és fontos utastájékoztató."}],["$","meta","2",{"name":"keywords","content":"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 reptér, Bécs reptér (Vienna Airport), Transfer Budapest airport, Transfer Vienna Airport"}],["$","link","3",{"rel":"canonical","href":"https://skyflytravel.hu/feltetelek/"}],["$","meta","4",{"property":"og:title","content":"Vállalási Feltételek - Fontos információk | SkyFly Travel"}],["$","meta","5",{"property":"og:description","content":"Ismerje meg reptéri transzfer szolgáltatásunk vállalási feltételeit. Lemondási feltételek, fizetési módok és fontos utastájékoztató."}],["$","meta","6",{"property":"og:url","content":"https://skyflytravel.hu/feltetelek/"}],["$","meta","7",{"property":"og:site_name","content":"SkyFly Travel"}],["$","meta","8",{"property":"og:locale","content":"hu_HU"}],["$","meta","9",{"property":"og:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","meta","10",{"property":"og:image:width","content":"1200"}],["$","meta","11",{"property":"og:image:height","content":"630"}],["$","meta","12",{"property":"og:image:alt","content":"SkyFly Travel - Vállalási Feltételek"}],["$","meta","13",{"property":"og:type","content":"website"}],["$","meta","14",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","15",{"name":"twitter:title","content":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","16",{"name":"twitter:description","content":"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)"}],["$","meta","17",{"name":"twitter:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.bd9a44f8.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","19",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} diff --git a/out/feltetelek/__next._index.txt b/out/feltetelek/__next._index.txt index 6de19c9..d0e144e 100644 --- a/out/feltetelek/__next._index.txt +++ b/out/feltetelek/__next._index.txt @@ -8,4 +8,4 @@ 8:I[36768,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js","/_next/static/chunks/d923f90fc26f0411.js"],"default"] 9:I[34581,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js"],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[["$","$L8",null,{}],[]]}]}],["$","$L9",null,{}]]}]]}]]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[["$","$L8",null,{}],[]]}]}],["$","$L9",null,{}]]}]]}]]}]]}],"loading":null,"isPartial":false} diff --git a/out/feltetelek/__next._tree.txt b/out/feltetelek/__next._tree.txt index 6761ec2..a9118ee 100644 --- a/out/feltetelek/__next._tree.txt +++ b/out/feltetelek/__next._tree.txt @@ -1,3 +1,3 @@ :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"feltetelek","paramType":null,"paramKey":"feltetelek","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300} +0:{"buildId":"XTogiP1ElaQRl870JimWE","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"feltetelek","paramType":null,"paramKey":"feltetelek","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300} diff --git a/out/feltetelek/__next.feltetelek.txt b/out/feltetelek/__next.feltetelek.txt index 82057b7..0c3ddd6 100644 --- a/out/feltetelek/__next.feltetelek.txt +++ b/out/feltetelek/__next.feltetelek.txt @@ -1,4 +1,4 @@ 1:"$Sreact.fragment" 2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} diff --git a/out/feltetelek/__next.feltetelek/__PAGE__.txt b/out/feltetelek/__next.feltetelek/__PAGE__.txt index 9ab7ccb..88969a2 100644 --- a/out/feltetelek/__next.feltetelek/__PAGE__.txt +++ b/out/feltetelek/__next.feltetelek/__PAGE__.txt @@ -3,7 +3,7 @@ 3:I[22604,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js","/_next/static/chunks/6c195d6a2e079108.js","/_next/static/chunks/6ef51f8b2003e256.js"],"default"] 6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/6c195d6a2e079108.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/6c195d6a2e079108.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} 4:{} 5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 8:null diff --git a/out/feltetelek/index.html b/out/feltetelek/index.html index 7acff44..203ecb3 100644 --- a/out/feltetelek/index.html +++ b/out/feltetelek/index.html @@ -1 +1 @@ -Vállalási Feltételek - Fontos információk | SkyFly TravelUgrás a tartalomra
Vissza a kezdőlapra

Vállalási
Feltételek

1. A Szolgáltató által nyújtott szolgáltatás

A SkyFly Travel reptéri és egyedi igényeknek megfelelően egyéb személyszállítási szolgáltatást nyújt az utasok számára. Tevékenységét valamennyi, hatályos jogszabályban előírt hatósági engedéllyel végzi.

2. A szolgáltatás megrendelése, információ-, ajánlatkérés

Foglalási szándékát / Árajánlat kérését honlapunkon az Online foglalás / Ajánlat menüpont alatti felület kitöltésével tudja leadni. Egyéb személyszállítás, vagy szolgáltatással kapcsolatos kérdések felmerülése esetén küldjön email-t vagy töltse ki Üzenetküldési űrlapunkat, melyet a Kapcsolat menüpont alatt talál. Foglalása kizárólag a visszaigazolásunk megküldésével válik teljessé, e-nélkül foglalási szándéknak minősül. A foglalásokat szabad kapacitás függvényében tudjuk visszaigazolni a szándék beérkezésétól számítva legfeljebb 2 munkanapon belül, írásban, az Ön által megadott email címre megküldve.

Amennyiben foglalási szándékát az út előtti munkanap 12:00 után jelzi, szabad kapacitás függvényében feláras szolgáltatás keretében tudjuk vállalni, melynek díja plusz 2.500 Ft. Ez esetben, kérem szíveskedjen mindképp munkatársunkkal is egyeztetni ügyeleti telefonszámunkon: +36305543838

Amennyiben szolgáltatással kapcsolatos információkra van szüksége, kérjük hívja hotline vonalunkat: +36 30 5543838, vagy tegye fel kérdéseit emailben: info@skyflytravel.hu. Munkaidőn kívül hotline vonalunkat szíveskedjen abban az esetben hívni csak, ha SOS kérdése, problémája merül fel az általunk nyújtott szolgáltatással kapcsolatban.

Az árlistában nem szereplő útvonalak, extra csomagmennyiség (a viteldíj magában foglalja: 1 db kézipoggyász és 1 normál méretű bőrönd max. 20 Kg / fő szállítását) vagy egyedi személyszállítás esetén lépjen velünk kapcsolatban email-ben: info@skyflytravel.hu vagy töltse ki Üzenetküldési űrlapunkat a Kapcsolat menüpont alatt.

Helytelen, nem valós adatok megadása esetén (pl. hibás dátum, időpont, cím, telefonszám) nem tudjuk garantálni a szolgáltatás teljesítését.

3. Fizetés módja

Sofőrünknél készpénzben vagy bankkártyával (korlátozott mennyiségben, előre egyeztetés alapján), bankszámlánkra történő előreutalással, vagy egyedi megállapodás alapján utólagos átutalással.

4. Menetidő

A SkyFly Travel nem vállal felelősséget a rajta kívül álló okokból történő késésért (pl. időjárás okozta rossz útviszonyok, balesetből adódó torlódások). Természetesen mindent megteszünk, hogy az utas időben elérje úti célját ez esetben is.

Amennyiben a késés bizonyíthatóan a szolgáltató hibájából adódik, a felmerülő károkért kártérítési felelősséget vállalunk.

5. Várakozás, gépkésés

A reptéren való várakozási idő eltérő, attól függően, hogy a SkyFly Travel által nyújtott szolgáltatási csomagok közül melyiket kívánja igénybe venni.

Vienna International Airport (Schwechat): miután felvette a csomagokat és menetkész, kérem szíveskedjen felfáradni az emeletre (érkezési csarnok, Burger King-gel szemben lift vagy mozgó lépcső használatával), majd forduljon jobbra és az utolsó kijáraton szíveskedj kifáradni. Mikor már a találkozási pontra tart, szíveskedjen sofőrünkkel felvenni a kapcsolatot (elérhetőségét az út előtti munkanapon email-ben küldjük), hogy egyeztessenek a részletekről. Amennyiben táblást várás kérnek az érkezési csarnokban a parkolás díj 2.500 Ft, mely az utast terheli.

Budapest Liszt Ferenc Repülőtér: utasaink két lehetőség közül választhatnak- az utazás előtti utolsó munkanap elküldjük sofőrünk telefonszámát, melyen őt kell értesíteni, ha felvették csomagjaikat. Másik lehetőség, hogy névvel ellátott táblával várjuk az érkezési csarnokban, ez esetben a parkolási díj (3.000 Ft) az utast terheli.

Bratislava Repülőtér: miután felvették a csomagokat, kérjük szíveskedjen sofőrünket hívni az út előtti munkanapon email-ben kapott elérhetőségen.

6. Járatkésés / módosítás / lemondás

A transzferek teljesítését az előre, eredetileg megrendeltek és visszaigazoltak szerint tudjuk garantálni. Abban az esetben, ha gépkésés vagy egyéb esemény (bőröndelvesztés, bőröndsérülés stb.) módosítja transzfer igényük részletét (pl. utasfelvételt a reptéren) a lenti feltételek szerint járunk el.

A légitársaság hibájából fakadó károkért nem áll módunkban vállalni a felelősséget, de igyekszünk megoldani a legoptimálisabb módon a késés miatti változásokat.

Az eredeti landoláshoz képest 1 órát várakozunk díjmentesen. Ezt követően minden megkezdett óra plusz 3.000 Ft + ÁFA. A késés mértéke és a fuvarszervezés határozza meg, hogy sofőrünk meg tudja-e várni Önöket a várakozási díj fizetése ellenében, vagy csatlakozhatnak (eredetileg visszaigazolt viteldíjért) következő járatunkhoz vagy másik autót tudunk küldeni Önökért Private díj ellenében.

Legyenek kedvesek a késéseket jelezni ügyeleti számunk valamelyikére telefonon vagy sms-ben: +36305543838, +36302161533.

Gyűjtő járat esetén (alap áras), amennyiben a késés miatt nem tud eredeti járatunkhoz csatlakozni – fuvarszervezőtől függően tudunk opciókat ajánlani: csatlakozhat következő járatunkhoz (szabad kapacitás függvényében), vagy új autót küldünk Önért Private viteldíj ellenében.

Géptörlés: amennyiben gépét törlik és ebből fakadóan le kell mondania a nálunk foglalt transzfert, a lenti lemondási feltételek szerint tudja ezt megtenni. Amennyiben ezt követően új járata alapján szeretne transzfert foglalni, új foglalásnak minősül.

A megrendelés díjtalan módosítására, lemondására az út előtti munkanap 12:00-ig van lehetőség kizárólag írásban.

Határidőt meghaladóan: Az út előtti munkanap 12:00-16:00-ig felár 5000 Ft. Az út előtti munkanap 16:00 után és az utasfelvétel előtt min. 5 órával a viteldíj 50%-a fizetendő. Az utasfelvétel előtt kevesebb, mint 5 órával történő lemondás esetén a teljes viteldíj fizetendő.

7. Vállalási feltételek elfogadása, szerződés

A szolgáltató és a szolgáltatást igénybevevő (utas) között a szerződés akkor jön létre, ha az utas megrendelte a szolgáltatást a fent leírtak alapján, és rendelését a SkyFly Travel írásban visszaigazolta. Amennyiben az utas a visszaigazolást követően másképp nem jelzi, elfogadottnak tekintjük az abban leírtakat, valamint a SkyFly Travel vállalási feltételeit.

A visszaigazolás elfogadásával a megrendelő hozzájárul, hogy személyes adatait az Adatvédelmi szabályzatunkban foglaltak alapján kezeljük.

Készen áll az indulásra?

Csatlakozzon elégedett utasaink ezreihez és válassza a kényelmet.

Ügyfél vélemények
5.0
0 Ügyfél elégedettség
FacebookX (Twitter)BlogspotInstagram
2026 SkyFly Travel. Minden jog fenntartva.
Reptéri transzfer, transzfer Győr, Budapest, Bécs Schwechat, Pozsony - Airport shuttle - Airport taxi - Reptéri járatok - Repülőtéri transzfer - Budapest repülőtér - Pozsony repülőtér ? Bécs repülőtér (Vienna Airport) - Transzfer Budapest Airport - Transzfer Vienna Airport - Budapest Liszt Ferenc (Ferihegy)
\ No newline at end of file +Vállalási Feltételek - Fontos információk | SkyFly TravelUgrás a tartalomra
Vissza a kezdőlapra

Vállalási
Feltételek

1. A Szolgáltató által nyújtott szolgáltatás

A SkyFly Travel reptéri és egyedi igényeknek megfelelően egyéb személyszállítási szolgáltatást nyújt az utasok számára. Tevékenységét valamennyi, hatályos jogszabályban előírt hatósági engedéllyel végzi.

2. A szolgáltatás megrendelése, információ-, ajánlatkérés

Foglalási szándékát / Árajánlat kérését honlapunkon az Online foglalás / Ajánlat menüpont alatti felület kitöltésével tudja leadni. Egyéb személyszállítás, vagy szolgáltatással kapcsolatos kérdések felmerülése esetén küldjön email-t vagy töltse ki Üzenetküldési űrlapunkat, melyet a Kapcsolat menüpont alatt talál. Foglalása kizárólag a visszaigazolásunk megküldésével válik teljessé, e-nélkül foglalási szándéknak minősül. A foglalásokat szabad kapacitás függvényében tudjuk visszaigazolni a szándék beérkezésétól számítva legfeljebb 2 munkanapon belül, írásban, az Ön által megadott email címre megküldve.

Amennyiben foglalási szándékát az út előtti munkanap 12:00 után jelzi, szabad kapacitás függvényében feláras szolgáltatás keretében tudjuk vállalni, melynek díja plusz 2.500 Ft. Ez esetben, kérem szíveskedjen mindképp munkatársunkkal is egyeztetni ügyeleti telefonszámunkon: +36305543838

Amennyiben szolgáltatással kapcsolatos információkra van szüksége, kérjük hívja hotline vonalunkat: +36 30 5543838, vagy tegye fel kérdéseit emailben: info@skyflytravel.hu. Munkaidőn kívül hotline vonalunkat szíveskedjen abban az esetben hívni csak, ha SOS kérdése, problémája merül fel az általunk nyújtott szolgáltatással kapcsolatban.

Az árlistában nem szereplő útvonalak, extra csomagmennyiség (a viteldíj magában foglalja: 1 db kézipoggyász és 1 normál méretű bőrönd max. 20 Kg / fő szállítását) vagy egyedi személyszállítás esetén lépjen velünk kapcsolatban email-ben: info@skyflytravel.hu vagy töltse ki Üzenetküldési űrlapunkat a Kapcsolat menüpont alatt.

Helytelen, nem valós adatok megadása esetén (pl. hibás dátum, időpont, cím, telefonszám) nem tudjuk garantálni a szolgáltatás teljesítését.

3. Fizetés módja

Sofőrünknél készpénzben vagy bankkártyával (korlátozott mennyiségben, előre egyeztetés alapján), bankszámlánkra történő előreutalással, vagy egyedi megállapodás alapján utólagos átutalással.

4. Menetidő

A SkyFly Travel nem vállal felelősséget a rajta kívül álló okokból történő késésért (pl. időjárás okozta rossz útviszonyok, balesetből adódó torlódások). Természetesen mindent megteszünk, hogy az utas időben elérje úti célját ez esetben is.

Amennyiben a késés bizonyíthatóan a szolgáltató hibájából adódik, a felmerülő károkért kártérítési felelősséget vállalunk.

5. Várakozás, gépkésés

A reptéren való várakozási idő eltérő, attól függően, hogy a SkyFly Travel által nyújtott szolgáltatási csomagok közül melyiket kívánja igénybe venni.

Vienna International Airport (Schwechat): miután felvette a csomagokat és menetkész, kérem szíveskedjen felfáradni az emeletre (érkezési csarnok, Burger King-gel szemben lift vagy mozgó lépcső használatával), majd forduljon jobbra és az utolsó kijáraton szíveskedj kifáradni. Mikor már a találkozási pontra tart, szíveskedjen sofőrünkkel felvenni a kapcsolatot (elérhetőségét az út előtti munkanapon email-ben küldjük), hogy egyeztessenek a részletekről. Amennyiben táblást várás kérnek az érkezési csarnokban a parkolás díj 2.500 Ft, mely az utast terheli.

Budapest Liszt Ferenc Repülőtér: utasaink két lehetőség közül választhatnak- az utazás előtti utolsó munkanap elküldjük sofőrünk telefonszámát, melyen őt kell értesíteni, ha felvették csomagjaikat. Másik lehetőség, hogy névvel ellátott táblával várjuk az érkezési csarnokban, ez esetben a parkolási díj (3.000 Ft) az utast terheli.

Bratislava Repülőtér: miután felvették a csomagokat, kérjük szíveskedjen sofőrünket hívni az út előtti munkanapon email-ben kapott elérhetőségen.

6. Járatkésés / módosítás / lemondás

A transzferek teljesítését az előre, eredetileg megrendeltek és visszaigazoltak szerint tudjuk garantálni. Abban az esetben, ha gépkésés vagy egyéb esemény (bőröndelvesztés, bőröndsérülés stb.) módosítja transzfer igényük részletét (pl. utasfelvételt a reptéren) a lenti feltételek szerint járunk el.

A légitársaság hibájából fakadó károkért nem áll módunkban vállalni a felelősséget, de igyekszünk megoldani a legoptimálisabb módon a késés miatti változásokat.

Az eredeti landoláshoz képest 1 órát várakozunk díjmentesen. Ezt követően minden megkezdett óra plusz 3.000 Ft + ÁFA. A késés mértéke és a fuvarszervezés határozza meg, hogy sofőrünk meg tudja-e várni Önöket a várakozási díj fizetése ellenében, vagy csatlakozhatnak (eredetileg visszaigazolt viteldíjért) következő járatunkhoz vagy másik autót tudunk küldeni Önökért Private díj ellenében.

Legyenek kedvesek a késéseket jelezni ügyeleti számunk valamelyikére telefonon vagy sms-ben: +36305543838, +36302161533.

Gyűjtő járat esetén (alap áras), amennyiben a késés miatt nem tud eredeti járatunkhoz csatlakozni – fuvarszervezőtől függően tudunk opciókat ajánlani: csatlakozhat következő járatunkhoz (szabad kapacitás függvényében), vagy új autót küldünk Önért Private viteldíj ellenében.

Géptörlés: amennyiben gépét törlik és ebből fakadóan le kell mondania a nálunk foglalt transzfert, a lenti lemondási feltételek szerint tudja ezt megtenni. Amennyiben ezt követően új járata alapján szeretne transzfert foglalni, új foglalásnak minősül.

A megrendelés díjtalan módosítására, lemondására az út előtti munkanap 12:00-ig van lehetőség kizárólag írásban.

Határidőt meghaladóan: Az út előtti munkanap 12:00-16:00-ig felár 5000 Ft. Az út előtti munkanap 16:00 után és az utasfelvétel előtt min. 5 órával a viteldíj 50%-a fizetendő. Az utasfelvétel előtt kevesebb, mint 5 órával történő lemondás esetén a teljes viteldíj fizetendő.

7. Vállalási feltételek elfogadása, szerződés

A szolgáltató és a szolgáltatást igénybevevő (utas) között a szerződés akkor jön létre, ha az utas megrendelte a szolgáltatást a fent leírtak alapján, és rendelését a SkyFly Travel írásban visszaigazolta. Amennyiben az utas a visszaigazolást követően másképp nem jelzi, elfogadottnak tekintjük az abban leírtakat, valamint a SkyFly Travel vállalási feltételeit.

A visszaigazolás elfogadásával a megrendelő hozzájárul, hogy személyes adatait az Adatvédelmi szabályzatunkban foglaltak alapján kezeljük.

Készen áll az indulásra?

Csatlakozzon elégedett utasaink ezreihez és válassza a kényelmet.

Ügyfél vélemények
5.0
0 Ügyfél elégedettség
FacebookX (Twitter)BlogspotInstagram
2026 SkyFly Travel. Minden jog fenntartva.
Reptéri transzfer, transzfer Győr, Budapest, Bécs Schwechat, Pozsony - Airport shuttle - Airport taxi - Reptéri járatok - Repülőtéri transzfer - Budapest repülőtér - Pozsony repülőtér ? Bécs repülőtér (Vienna Airport) - Transzfer Budapest Airport - Transzfer Vienna Airport - Budapest Liszt Ferenc (Ferihegy)
\ No newline at end of file diff --git a/out/feltetelek/index.txt b/out/feltetelek/index.txt index d8baa28..77ed8b4 100644 --- a/out/feltetelek/index.txt +++ b/out/feltetelek/index.txt @@ -16,7 +16,7 @@ f:"$Sreact.suspense" 15:I[68027,[],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"SrJfr2gpwQrx3SSgHRI8k","c":["","feltetelek",""],"q":"","i":false,"f":[[["",{"children":["feltetelek",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/6c195d6a2e079108.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} +0:{"P":null,"b":"XTogiP1ElaQRl870JimWE","c":["","feltetelek",""],"q":"","i":false,"f":[[["",{"children":["feltetelek",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/6c195d6a2e079108.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} c:{} d:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/out/flotta/__next._full.txt b/out/flotta/__next._full.txt index 417ba19..c905e63 100644 --- a/out/flotta/__next._full.txt +++ b/out/flotta/__next._full.txt @@ -16,7 +16,7 @@ f:"$Sreact.suspense" 15:I[68027,[],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"SrJfr2gpwQrx3SSgHRI8k","c":["","flotta",""],"q":"","i":false,"f":[[["",{"children":["flotta",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/dbce54c1c0cade81.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} +0:{"P":null,"b":"XTogiP1ElaQRl870JimWE","c":["","flotta",""],"q":"","i":false,"f":[[["",{"children":["flotta",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/dbce54c1c0cade81.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} c:{} d:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/out/flotta/__next._head.txt b/out/flotta/__next._head.txt index 24b9b84..7b91595 100644 --- a/out/flotta/__next._head.txt +++ b/out/flotta/__next._head.txt @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"IconMark"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Flotta - Modern járműveink | SkyFly Travel"}],["$","meta","1",{"name":"description","content":"Ismerje meg modern flottánkat. Kényelmes minibuszok és személyautók a biztonságos reptéri transzferhez. Mercedes V-Class és prémium szolgáltatások."}],["$","meta","2",{"name":"keywords","content":"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 reptér, Bécs reptér (Vienna Airport), Transfer Budapest airport, Transfer Vienna Airport"}],["$","link","3",{"rel":"canonical","href":"https://skyflytravel.hu/flotta/"}],["$","meta","4",{"property":"og:title","content":"Flotta - Modern járműveink | SkyFly Travel"}],["$","meta","5",{"property":"og:description","content":"Ismerje meg modern flottánkat. Kényelmes minibuszok és személyautók a biztonságos reptéri transzferhez. Mercedes V-Class és prémium szolgáltatások."}],["$","meta","6",{"property":"og:url","content":"https://skyflytravel.hu/flotta/"}],["$","meta","7",{"property":"og:site_name","content":"SkyFly Travel"}],["$","meta","8",{"property":"og:locale","content":"hu_HU"}],["$","meta","9",{"property":"og:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","meta","10",{"property":"og:image:width","content":"1200"}],["$","meta","11",{"property":"og:image:height","content":"630"}],["$","meta","12",{"property":"og:image:alt","content":"SkyFly Travel - Flotta"}],["$","meta","13",{"property":"og:type","content":"website"}],["$","meta","14",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","15",{"name":"twitter:title","content":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","16",{"name":"twitter:description","content":"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)"}],["$","meta","17",{"name":"twitter:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.bd9a44f8.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","19",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Flotta - Modern járműveink | SkyFly Travel"}],["$","meta","1",{"name":"description","content":"Ismerje meg modern flottánkat. Kényelmes minibuszok és személyautók a biztonságos reptéri transzferhez. Mercedes V-Class és prémium szolgáltatások."}],["$","meta","2",{"name":"keywords","content":"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 reptér, Bécs reptér (Vienna Airport), Transfer Budapest airport, Transfer Vienna Airport"}],["$","link","3",{"rel":"canonical","href":"https://skyflytravel.hu/flotta/"}],["$","meta","4",{"property":"og:title","content":"Flotta - Modern járműveink | SkyFly Travel"}],["$","meta","5",{"property":"og:description","content":"Ismerje meg modern flottánkat. Kényelmes minibuszok és személyautók a biztonságos reptéri transzferhez. Mercedes V-Class és prémium szolgáltatások."}],["$","meta","6",{"property":"og:url","content":"https://skyflytravel.hu/flotta/"}],["$","meta","7",{"property":"og:site_name","content":"SkyFly Travel"}],["$","meta","8",{"property":"og:locale","content":"hu_HU"}],["$","meta","9",{"property":"og:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","meta","10",{"property":"og:image:width","content":"1200"}],["$","meta","11",{"property":"og:image:height","content":"630"}],["$","meta","12",{"property":"og:image:alt","content":"SkyFly Travel - Flotta"}],["$","meta","13",{"property":"og:type","content":"website"}],["$","meta","14",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","15",{"name":"twitter:title","content":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","16",{"name":"twitter:description","content":"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)"}],["$","meta","17",{"name":"twitter:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.bd9a44f8.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","19",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} diff --git a/out/flotta/__next._index.txt b/out/flotta/__next._index.txt index 6de19c9..d0e144e 100644 --- a/out/flotta/__next._index.txt +++ b/out/flotta/__next._index.txt @@ -8,4 +8,4 @@ 8:I[36768,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js","/_next/static/chunks/d923f90fc26f0411.js"],"default"] 9:I[34581,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js"],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[["$","$L8",null,{}],[]]}]}],["$","$L9",null,{}]]}]]}]]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[["$","$L8",null,{}],[]]}]}],["$","$L9",null,{}]]}]]}]]}]]}],"loading":null,"isPartial":false} diff --git a/out/flotta/__next._tree.txt b/out/flotta/__next._tree.txt index 120437c..643bee0 100644 --- a/out/flotta/__next._tree.txt +++ b/out/flotta/__next._tree.txt @@ -1,3 +1,3 @@ :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"flotta","paramType":null,"paramKey":"flotta","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300} +0:{"buildId":"XTogiP1ElaQRl870JimWE","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"flotta","paramType":null,"paramKey":"flotta","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300} diff --git a/out/flotta/__next.flotta.txt b/out/flotta/__next.flotta.txt index 82057b7..0c3ddd6 100644 --- a/out/flotta/__next.flotta.txt +++ b/out/flotta/__next.flotta.txt @@ -1,4 +1,4 @@ 1:"$Sreact.fragment" 2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} diff --git a/out/flotta/__next.flotta/__PAGE__.txt b/out/flotta/__next.flotta/__PAGE__.txt index 59d52c4..a73d839 100644 --- a/out/flotta/__next.flotta/__PAGE__.txt +++ b/out/flotta/__next.flotta/__PAGE__.txt @@ -3,7 +3,7 @@ 3:I[43138,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js","/_next/static/chunks/dbce54c1c0cade81.js","/_next/static/chunks/6ef51f8b2003e256.js"],"default"] 6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/dbce54c1c0cade81.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/dbce54c1c0cade81.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} 4:{} 5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 8:null diff --git a/out/flotta/index.html b/out/flotta/index.html index 748e6d3..72ac4b5 100644 --- a/out/flotta/index.html +++ b/out/flotta/index.html @@ -1 +1 @@ -Flotta - Modern járműveink | SkyFly TravelUgrás a tartalomra

Minőségi
Flotta

Ismerje meg modern gépjárműparkunkat. Legyen szó egyéni üzleti útról vagy családi kiruccanásról, autóink garantálják a kényelmet és biztonságot.

Mercedes E - class / Mercedes V-class / Mercedes Vito
VIP Prémium
Elérhető

Mercedes E - class / Mercedes V-class / Mercedes Vito

A luxus és tágas tér találkozása. Ideális üzleti delegációk vagy prémium kényelmet kereső családok számára.

Skoda Octavia / Skoda SuperB / Skoda Enyaq / Renault Grand Scenic
Személygépjárművek
Elérhető

Skoda Octavia / Skoda SuperB / Skoda Enyaq / Renault Grand Scenic

Elegancia, megbízhatóság, kényelem legyen szó akár üzleti útról vagy családi transzferről.

Ford Transit / Ford Tourneo Custom / Renault Trafic / Opel Vivaro
Kisbuszok
Elérhető

Ford Transit / Ford Tourneo Custom / Renault Trafic / Opel Vivaro

Nagyobb csoportok számára a legpraktikusabb megoldás. Gazdaságos és kényelmes utazás 1-8 főig. Nagyobb létszám esetén több kisbusz rendelhető egy időben.

Autóink tisztaságára, műszaki állapotára nagy hangsúlyt fektetünk.

0-5

Éves átlagéletkor

100%

Tisztasági garancia

24/7

Műszaki felügyelet

Készen áll az indulásra?

Csatlakozzon elégedett utasaink ezreihez és válassza a kényelmet.

Ügyfél vélemények
5.0
0 Ügyfél elégedettség
FacebookX (Twitter)BlogspotInstagram
2026 SkyFly Travel. Minden jog fenntartva.
Reptéri transzfer, transzfer Győr, Budapest, Bécs Schwechat, Pozsony - Airport shuttle - Airport taxi - Reptéri járatok - Repülőtéri transzfer - Budapest repülőtér - Pozsony repülőtér ? Bécs repülőtér (Vienna Airport) - Transzfer Budapest Airport - Transzfer Vienna Airport - Budapest Liszt Ferenc (Ferihegy)
\ No newline at end of file +Flotta - Modern járműveink | SkyFly TravelUgrás a tartalomra

Minőségi
Flotta

Ismerje meg modern gépjárműparkunkat. Legyen szó egyéni üzleti útról vagy családi kiruccanásról, autóink garantálják a kényelmet és biztonságot.

Mercedes E - class / Mercedes V-class / Mercedes Vito
VIP Prémium
Elérhető

Mercedes E - class / Mercedes V-class / Mercedes Vito

A luxus és tágas tér találkozása. Ideális üzleti delegációk vagy prémium kényelmet kereső családok számára.

Skoda Octavia / Skoda SuperB / Skoda Enyaq / Renault Grand Scenic
Személygépjárművek
Elérhető

Skoda Octavia / Skoda SuperB / Skoda Enyaq / Renault Grand Scenic

Elegancia, megbízhatóság, kényelem legyen szó akár üzleti útról vagy családi transzferről.

Ford Transit / Ford Tourneo Custom / Renault Trafic / Opel Vivaro
Kisbuszok
Elérhető

Ford Transit / Ford Tourneo Custom / Renault Trafic / Opel Vivaro

Nagyobb csoportok számára a legpraktikusabb megoldás. Gazdaságos és kényelmes utazás 1-8 főig. Nagyobb létszám esetén több kisbusz rendelhető egy időben.

Autóink tisztaságára, műszaki állapotára nagy hangsúlyt fektetünk.

0-5

Éves átlagéletkor

100%

Tisztasági garancia

24/7

Műszaki felügyelet

Készen áll az indulásra?

Csatlakozzon elégedett utasaink ezreihez és válassza a kényelmet.

Ügyfél vélemények
5.0
0 Ügyfél elégedettség
FacebookX (Twitter)BlogspotInstagram
2026 SkyFly Travel. Minden jog fenntartva.
Reptéri transzfer, transzfer Győr, Budapest, Bécs Schwechat, Pozsony - Airport shuttle - Airport taxi - Reptéri járatok - Repülőtéri transzfer - Budapest repülőtér - Pozsony repülőtér ? Bécs repülőtér (Vienna Airport) - Transzfer Budapest Airport - Transzfer Vienna Airport - Budapest Liszt Ferenc (Ferihegy)
\ No newline at end of file diff --git a/out/flotta/index.txt b/out/flotta/index.txt index 417ba19..c905e63 100644 --- a/out/flotta/index.txt +++ b/out/flotta/index.txt @@ -16,7 +16,7 @@ f:"$Sreact.suspense" 15:I[68027,[],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"SrJfr2gpwQrx3SSgHRI8k","c":["","flotta",""],"q":"","i":false,"f":[[["",{"children":["flotta",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/dbce54c1c0cade81.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} +0:{"P":null,"b":"XTogiP1ElaQRl870JimWE","c":["","flotta",""],"q":"","i":false,"f":[[["",{"children":["flotta",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/dbce54c1c0cade81.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} c:{} d:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/out/images/Mercedes Vito_.JPG b/out/images/Mercedes Vito_.JPG index 8267a5d..c62b54f 100644 Binary files a/out/images/Mercedes Vito_.JPG and b/out/images/Mercedes Vito_.JPG differ diff --git a/out/images/gallery/minibus/Új matricás Trafic (1).JPG b/out/images/gallery/minibus/Új matricás Trafic (1).JPG index 2ed3af8..35b99ed 100644 Binary files a/out/images/gallery/minibus/Új matricás Trafic (1).JPG and b/out/images/gallery/minibus/Új matricás Trafic (1).JPG differ diff --git a/out/images/gallery/personal/Scenic_1.jpg b/out/images/gallery/personal/Scenic_1.jpg index 99bf48c..485d0d2 100644 Binary files a/out/images/gallery/personal/Scenic_1.jpg and b/out/images/gallery/personal/Scenic_1.jpg differ diff --git a/out/images/gallery/personal/Skoda Enyaq_1.JPG b/out/images/gallery/personal/Skoda Enyaq_1.JPG index 2763427..8508c37 100644 Binary files a/out/images/gallery/personal/Skoda Enyaq_1.JPG and b/out/images/gallery/personal/Skoda Enyaq_1.JPG differ diff --git a/out/images/gallery/personal/Skoda SuperB-inside.jpeg b/out/images/gallery/personal/Skoda SuperB-inside.jpeg index b1d366d..1fe6f36 100644 Binary files a/out/images/gallery/personal/Skoda SuperB-inside.jpeg and b/out/images/gallery/personal/Skoda SuperB-inside.jpeg differ diff --git a/out/images/gallery/personal/Skoda SuperB.jpeg b/out/images/gallery/personal/Skoda SuperB.jpeg index a90d9b6..5df4843 100644 Binary files a/out/images/gallery/personal/Skoda SuperB.jpeg and b/out/images/gallery/personal/Skoda SuperB.jpeg differ diff --git a/out/images/gallery/vip/Mercedes Vito_belső.jpeg b/out/images/gallery/vip/Mercedes Vito_belső.jpeg index 7f6cd84..82a23ba 100644 Binary files a/out/images/gallery/vip/Mercedes Vito_belső.jpeg and b/out/images/gallery/vip/Mercedes Vito_belső.jpeg differ diff --git a/out/images/gallery/vip/Mercedes-V-calss.JPG b/out/images/gallery/vip/Mercedes-V-calss.JPG index aff8875..d229691 100644 Binary files a/out/images/gallery/vip/Mercedes-V-calss.JPG and b/out/images/gallery/vip/Mercedes-V-calss.JPG differ diff --git a/out/images/gallery/vip/V-class belső.jpg b/out/images/gallery/vip/V-class belső.jpg index 99b0bca..a3e3020 100644 Binary files a/out/images/gallery/vip/V-class belső.jpg and b/out/images/gallery/vip/V-class belső.jpg differ diff --git a/out/images/gallery/vip/V-class külső.JPG b/out/images/gallery/vip/V-class külső.JPG index 00b3002..b27164c 100644 Binary files a/out/images/gallery/vip/V-class külső.JPG and b/out/images/gallery/vip/V-class külső.JPG differ diff --git a/out/images/gallery/vip/vito.jpg b/out/images/gallery/vip/vito.jpg index dea6069..7b472de 100644 Binary files a/out/images/gallery/vip/vito.jpg and b/out/images/gallery/vip/vito.jpg differ diff --git a/out/index.html b/out/index.html index 9bc1753..2f92362 100644 --- a/out/index.html +++ b/out/index.html @@ -1 +1 @@ -SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!Ugrás a tartalomra
5.0/5.0
(0)Ügyfél elégedettség

Gyors, Megbízható
Reptéri transzfer

– és egyéb személyszállítás –

Háztól-házig szolgáltatás több mint 10 éves tapasztalattal. Kényelmes utazás Budapest, Bécs és Pozsony repülőterei, valamint Nyugat-Magyarország települései (pl. Győr) között.

Háztól-házig reptéri transzfer

Felejtse el a parkolási nehézségeket és a csomagokkal való bajlódást. Sofőrjeink a megadott címen várják, és közvetlenül a terminál bejáratához repítik Önöket. Győr, Budapest, Bécs, Pozsony – velünk egyszerű az út.

Foglalás indítása
Reptéri transzfer

Kényelmes utazás háztól-házig, fix árakon, rejtett költségek nélkül.

Egyéb személyszállítási szolgáltatások

Nem csak reptéri transzfert vállalunk. Rendezvényekre, esküvőkre, üzleti utakra vagy akár városnézésre is rendelkezésre állunk prémium gépjárműveinkkel és tapasztalt sofőreinkkel.

Szolgáltatások
Egyéb személyszállítás

Személyszállítás

Rendezvények, üzleti utak és egyedi igények kiszolgálása prémium színvonalon.

Személyre szabott utazási típusok

Nálunk mindenki megtalálja a számítását. Kedvező árú gyűjtőjárataink, exkluzív privát transzferjeink és családi kedvezményeink biztosítják, hogy az utazás ne csak kényelmes, de gazdaságos is legyen.

Csomagok megismerése
Family Packages

Családi Csomagok

Kedvezményes árak családoknak és csoportoknak, tágas gépjárművekkel.

Több mint 10 év szakmai tapasztalat

Több mint 10 éve vagyunk jelen a piacon. Megbízható, tapasztalt, képzett sofőreink és folyamatosan karbantartott flottánk a garancia arra, hogy Ön időben és biztonságban érkezzen meg úticéljához.

Security and Comfort

Prémium Kényelem

Tapasztalt sofőrök, modern flotta és teljes körű utasbiztosítás.

Villámgyors online rendszer

Modern foglalási felületünkön percek alatt rögzítheti utazását. Azonnali visszaigazolást kap arról, hogy megrendelését sikeresen leadta. Visszaigazolást, minden részlettel együtt legfeljebb 2 munkanapon belül küldjük az Ön által megadott email címre, szabad kapacitás függvényében. Nincs rejtett költség, nincs apróbetű, a visszaigazolásban minden vállalási feltételt megtalál. (időpont, viteldíj, lemondás, módosítás, gép késés stb.)

Online Árajánlat
Online booking

Gyors Foglalás

Egyszerű, 2 perces online foglalás, azonnali visszaigazolás a foglalás rendszerünkbe érkezéséről.

Modern, kényelmes járműpark

Járműveink a legmagasabb kényelmi és biztonsági igényeknek is megfelelnek. Legyen szó egyéni utazásról vagy 50 fős csoportról, partnerünkkel együttműködve minden létszámra van megoldásunk.

Flotta megtekintése
Our Fleet

Modern Flotta

Kényelmes személyautók és tágas mikrobuszok minden igényre.

Bármikor elérhető segítség

Ügyfélszolgálatunk a nap 24 órájában az Ön rendelkezésére áll. Kérdése van a szolgáltatással kapcsolatban? Hívja irodánkat munkaidőben Hétfőtől - Péntekig 08:00-16:00-ig, vagy küldjön email-t. Munkaidőn kívül pedig ügyeletes kollégánk áll a rendelkezésre SOS kérdések, határidőn túli módosítások, megrendelések esetére.

Non-stop help

0-24 Ügyfélszolgálat

Aktuális

Használja ki közösségi média akcióinkat és utazzon még kedvezőbb áron! Facebook, Google vagy TikTok aktivitásért cserébe extra engedményt biztosítunk.

Special Discounts

Facebook & Google

Kövessen minket Facebookon vagy értékeljen a Google-ön az 5% extra kedvezményért.

Részletek és igénylés

TikTok Akció

Likeolja a kijelölt videónkat a TikTokon és utazzon a 2025-ös árakon!

Részletek és igénylés

SkyFly Travel

Prémium reptéri transzfer és személyszállítás

Stresszmentes utazás a SkyFly Travellel

A repülős utazás megannyi kihívást és stresszhelyzetet tartogat, az előkészületektől egészen a megérkezésig. A reptérre történő kijutás nem kell, hogy ezek közé tartozzon. A SkyFly Travel repülőtéri transzfer szolgáltatása leveszi a válláról a terhet: bízza ránk a fuvarszervezést, és élvezze a felhőtlen utazás élményét Győr, Budapest, Bécs (Schwechat) vagy Pozsony irányába.

Garantáljuk a kényelmet és a biztonságot, legyen szó indulásról vagy hazaérkezésről. Transzfer szolgáltatásunk révén Önnek semmi mással nem kell foglalkoznia, csak az előtte álló útra koncentrálni. Tapasztalt sofőrjeink és modern autóparkunk gondoskodik a pontos érkezésről.

Célunk, hogy valamennyi utasunk megtalálja a számára legmegfelelőbb transzfer típust, ezért különböző szolgáltatási csomagokkal állunk rendelkezésre: Gyűjtő (kedvezőbb ár, más utasokhoz alkalmazkodva), Private (exkluzív, várakozás nélkül), Családi (egyedi kedvezmények családoknak) és buszos személyszállítás.

A reptéri fuvarokon túl professzionális személyszállítást biztosítunk rendezvényekre, kirándulásokra és üzleti utakra is. Ismerje meg a SkyFly Travel nyújtotta lehetőségeket, és utazzon velünk – garantáljuk, hogy döntését nem fogja megbánni!

Készen áll az indulásra?

Csatlakozzon elégedett utasaink ezreihez és válassza a kényelmet.

Ügyfél vélemények
5.0
0 Ügyfél elégedettség
FacebookX (Twitter)BlogspotInstagram
2026 SkyFly Travel. Minden jog fenntartva.
Reptéri transzfer, transzfer Győr, Budapest, Bécs Schwechat, Pozsony - Airport shuttle - Airport taxi - Reptéri járatok - Repülőtéri transzfer - Budapest repülőtér - Pozsony repülőtér ? Bécs repülőtér (Vienna Airport) - Transzfer Budapest Airport - Transzfer Vienna Airport - Budapest Liszt Ferenc (Ferihegy)
\ No newline at end of file +SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!Ugrás a tartalomra
5.0/5.0
(0)Ügyfél elégedettség

Gyors, Megbízható
Reptéri transzfer

– és egyéb személyszállítás –

Háztól-házig szolgáltatás több mint 10 éves tapasztalattal. Kényelmes utazás Budapest, Bécs és Pozsony repülőterei, valamint Nyugat-Magyarország települései (pl. Győr) között.

Háztól-házig reptéri transzfer

Felejtse el a parkolási nehézségeket és a csomagokkal való bajlódást. Sofőrjeink a megadott címen várják, és közvetlenül a terminál bejáratához repítik Önöket. Győr, Budapest, Bécs, Pozsony – velünk egyszerű az út.

Foglalás indítása
Reptéri transzfer

Kényelmes utazás háztól-házig, fix árakon, rejtett költségek nélkül.

Egyéb személyszállítási szolgáltatások

Nem csak reptéri transzfert vállalunk. Rendezvényekre, esküvőkre, üzleti utakra vagy akár városnézésre is rendelkezésre állunk prémium gépjárműveinkkel és tapasztalt sofőreinkkel.

Szolgáltatások
Egyéb személyszállítás

Személyszállítás

Rendezvények, üzleti utak és egyedi igények kiszolgálása prémium színvonalon.

Személyre szabott utazási típusok

Nálunk mindenki megtalálja a számítását. Kedvező árú gyűjtőjárataink, exkluzív privát transzferjeink és családi kedvezményeink biztosítják, hogy az utazás ne csak kényelmes, de gazdaságos is legyen.

Csomagok megismerése
Family Packages

Családi Csomagok

Kedvezményes árak családoknak és csoportoknak, tágas gépjárművekkel.

Több mint 10 év szakmai tapasztalat

Több mint 10 éve vagyunk jelen a piacon. Megbízható, tapasztalt, képzett sofőreink és folyamatosan karbantartott flottánk a garancia arra, hogy Ön időben és biztonságban érkezzen meg úticéljához.

Security and Comfort

Prémium Kényelem

Tapasztalt sofőrök, modern flotta és teljes körű utasbiztosítás.

Villámgyors online rendszer

Modern foglalási felületünkön percek alatt rögzítheti utazását. Azonnali visszaigazolást kap arról, hogy megrendelését sikeresen leadta. Visszaigazolást, minden részlettel együtt legfeljebb 2 munkanapon belül küldjük az Ön által megadott email címre, szabad kapacitás függvényében. Nincs rejtett költség, nincs apróbetű, a visszaigazolásban minden vállalási feltételt megtalál. (időpont, viteldíj, lemondás, módosítás, gép késés stb.)

Online Árajánlat
Online booking

Gyors Foglalás

Egyszerű, 2 perces online foglalás, azonnali visszaigazolás a foglalás rendszerünkbe érkezéséről.

Modern, kényelmes járműpark

Járműveink a legmagasabb kényelmi és biztonsági igényeknek is megfelelnek. Legyen szó egyéni utazásról vagy 50 fős csoportról, partnerünkkel együttműködve minden létszámra van megoldásunk.

Flotta megtekintése
Our Fleet

Modern Flotta

Kényelmes személyautók és tágas mikrobuszok minden igényre.

Bármikor elérhető segítség

Ügyfélszolgálatunk a nap 24 órájában az Ön rendelkezésére áll. Kérdése van a szolgáltatással kapcsolatban? Hívja irodánkat munkaidőben Hétfőtől - Péntekig 08:00-16:00-ig, vagy küldjön email-t. Munkaidőn kívül pedig ügyeletes kollégánk áll a rendelkezésre SOS kérdések, határidőn túli módosítások, megrendelések esetére.

Non-stop help

0-24 Ügyfélszolgálat

Aktuális

Használja ki közösségi média akcióinkat és utazzon még kedvezőbb áron! Facebook, Google vagy TikTok aktivitásért cserébe extra engedményt biztosítunk.

Special Discounts

Facebook & Google

Kövessen minket Facebookon vagy értékeljen a Google-ön az 5% extra kedvezményért.

Részletek és igénylés

TikTok Akció

Likeolja a kijelölt videónkat a TikTokon és utazzon a 2025-ös árakon!

Részletek és igénylés

SkyFly Travel

Prémium reptéri transzfer és személyszállítás

Stresszmentes utazás a SkyFly Travellel

A repülős utazás megannyi kihívást és stresszhelyzetet tartogat, az előkészületektől egészen a megérkezésig. A reptérre történő kijutás nem kell, hogy ezek közé tartozzon. A SkyFly Travel repülőtéri transzfer szolgáltatása leveszi a válláról a terhet: bízza ránk a fuvarszervezést, és élvezze a felhőtlen utazás élményét Győr, Budapest, Bécs (Schwechat) vagy Pozsony irányába.

Garantáljuk a kényelmet és a biztonságot, legyen szó indulásról vagy hazaérkezésről. Transzfer szolgáltatásunk révén Önnek semmi mással nem kell foglalkoznia, csak az előtte álló útra koncentrálni. Tapasztalt sofőrjeink és modern autóparkunk gondoskodik a pontos érkezésről.

Célunk, hogy valamennyi utasunk megtalálja a számára legmegfelelőbb transzfer típust, ezért különböző szolgáltatási csomagokkal állunk rendelkezésre: Gyűjtő (kedvezőbb ár, más utasokhoz alkalmazkodva), Private (exkluzív, várakozás nélkül), Családi (egyedi kedvezmények családoknak) és buszos személyszállítás.

A reptéri fuvarokon túl professzionális személyszállítást biztosítunk rendezvényekre, kirándulásokra és üzleti utakra is. Ismerje meg a SkyFly Travel nyújtotta lehetőségeket, és utazzon velünk – garantáljuk, hogy döntését nem fogja megbánni!

Készen áll az indulásra?

Csatlakozzon elégedett utasaink ezreihez és válassza a kényelmet.

Ügyfél vélemények
5.0
0 Ügyfél elégedettség
FacebookX (Twitter)BlogspotInstagram
2026 SkyFly Travel. Minden jog fenntartva.
Reptéri transzfer, transzfer Győr, Budapest, Bécs Schwechat, Pozsony - Airport shuttle - Airport taxi - Reptéri járatok - Repülőtéri transzfer - Budapest repülőtér - Pozsony repülőtér ? Bécs repülőtér (Vienna Airport) - Transzfer Budapest Airport - Transzfer Vienna Airport - Budapest Liszt Ferenc (Ferihegy)
\ No newline at end of file diff --git a/out/index.txt b/out/index.txt index 79ad605..f12a7f5 100644 --- a/out/index.txt +++ b/out/index.txt @@ -16,7 +16,7 @@ f:"$Sreact.suspense" 15:I[68027,[],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"SrJfr2gpwQrx3SSgHRI8k","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/c045e4aa8df0741f.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} +0:{"P":null,"b":"XTogiP1ElaQRl870JimWE","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/c045e4aa8df0741f.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} c:{} d:"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params" 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/out/kapcsolat/__next._full.txt b/out/kapcsolat/__next._full.txt index b96328c..41cf85d 100644 --- a/out/kapcsolat/__next._full.txt +++ b/out/kapcsolat/__next._full.txt @@ -16,7 +16,7 @@ f:"$Sreact.suspense" 15:I[68027,[],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"SrJfr2gpwQrx3SSgHRI8k","c":["","kapcsolat",""],"q":"","i":false,"f":[[["",{"children":["kapcsolat",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/58a088007580aeb6.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} +0:{"P":null,"b":"XTogiP1ElaQRl870JimWE","c":["","kapcsolat",""],"q":"","i":false,"f":[[["",{"children":["kapcsolat",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/58a088007580aeb6.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} c:{} d:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/out/kapcsolat/__next._head.txt b/out/kapcsolat/__next._head.txt index e21804d..f91702b 100644 --- a/out/kapcsolat/__next._head.txt +++ b/out/kapcsolat/__next._head.txt @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"IconMark"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Kapcsolat - Foglalás és információ | SkyFly Travel"}],["$","meta","1",{"name":"description","content":"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."}],["$","meta","2",{"name":"keywords","content":"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 reptér, Bécs reptér (Vienna Airport), Transfer Budapest airport, Transfer Vienna Airport"}],["$","link","3",{"rel":"canonical","href":"https://skyflytravel.hu/kapcsolat/"}],["$","meta","4",{"property":"og:title","content":"Kapcsolat - Foglalás és információ | SkyFly Travel"}],["$","meta","5",{"property":"og:description","content":"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."}],["$","meta","6",{"property":"og:url","content":"https://skyflytravel.hu/kapcsolat/"}],["$","meta","7",{"property":"og:site_name","content":"SkyFly Travel"}],["$","meta","8",{"property":"og:locale","content":"hu_HU"}],["$","meta","9",{"property":"og:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","meta","10",{"property":"og:image:width","content":"1200"}],["$","meta","11",{"property":"og:image:height","content":"630"}],["$","meta","12",{"property":"og:image:alt","content":"SkyFly Travel - Kapcsolat"}],["$","meta","13",{"property":"og:type","content":"website"}],["$","meta","14",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","15",{"name":"twitter:title","content":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","16",{"name":"twitter:description","content":"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)"}],["$","meta","17",{"name":"twitter:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.bd9a44f8.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","19",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Kapcsolat - Foglalás és információ | SkyFly Travel"}],["$","meta","1",{"name":"description","content":"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."}],["$","meta","2",{"name":"keywords","content":"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 reptér, Bécs reptér (Vienna Airport), Transfer Budapest airport, Transfer Vienna Airport"}],["$","link","3",{"rel":"canonical","href":"https://skyflytravel.hu/kapcsolat/"}],["$","meta","4",{"property":"og:title","content":"Kapcsolat - Foglalás és információ | SkyFly Travel"}],["$","meta","5",{"property":"og:description","content":"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."}],["$","meta","6",{"property":"og:url","content":"https://skyflytravel.hu/kapcsolat/"}],["$","meta","7",{"property":"og:site_name","content":"SkyFly Travel"}],["$","meta","8",{"property":"og:locale","content":"hu_HU"}],["$","meta","9",{"property":"og:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","meta","10",{"property":"og:image:width","content":"1200"}],["$","meta","11",{"property":"og:image:height","content":"630"}],["$","meta","12",{"property":"og:image:alt","content":"SkyFly Travel - Kapcsolat"}],["$","meta","13",{"property":"og:type","content":"website"}],["$","meta","14",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","15",{"name":"twitter:title","content":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","16",{"name":"twitter:description","content":"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)"}],["$","meta","17",{"name":"twitter:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.bd9a44f8.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","19",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} diff --git a/out/kapcsolat/__next._index.txt b/out/kapcsolat/__next._index.txt index 6de19c9..d0e144e 100644 --- a/out/kapcsolat/__next._index.txt +++ b/out/kapcsolat/__next._index.txt @@ -8,4 +8,4 @@ 8:I[36768,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js","/_next/static/chunks/d923f90fc26f0411.js"],"default"] 9:I[34581,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js"],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[["$","$L8",null,{}],[]]}]}],["$","$L9",null,{}]]}]]}]]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[["$","$L8",null,{}],[]]}]}],["$","$L9",null,{}]]}]]}]]}]]}],"loading":null,"isPartial":false} diff --git a/out/kapcsolat/__next._tree.txt b/out/kapcsolat/__next._tree.txt index 790566b..93394c1 100644 --- a/out/kapcsolat/__next._tree.txt +++ b/out/kapcsolat/__next._tree.txt @@ -1,3 +1,3 @@ :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"kapcsolat","paramType":null,"paramKey":"kapcsolat","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300} +0:{"buildId":"XTogiP1ElaQRl870JimWE","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"kapcsolat","paramType":null,"paramKey":"kapcsolat","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300} diff --git a/out/kapcsolat/__next.kapcsolat.txt b/out/kapcsolat/__next.kapcsolat.txt index 82057b7..0c3ddd6 100644 --- a/out/kapcsolat/__next.kapcsolat.txt +++ b/out/kapcsolat/__next.kapcsolat.txt @@ -1,4 +1,4 @@ 1:"$Sreact.fragment" 2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} diff --git a/out/kapcsolat/__next.kapcsolat/__PAGE__.txt b/out/kapcsolat/__next.kapcsolat/__PAGE__.txt index b15e29f..8f5b8fc 100644 --- a/out/kapcsolat/__next.kapcsolat/__PAGE__.txt +++ b/out/kapcsolat/__next.kapcsolat/__PAGE__.txt @@ -3,7 +3,7 @@ 3:I[43114,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js","/_next/static/chunks/58a088007580aeb6.js","/_next/static/chunks/6ef51f8b2003e256.js"],"default"] 6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/58a088007580aeb6.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/58a088007580aeb6.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} 4:{} 5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 8:null diff --git a/out/kapcsolat/index.html b/out/kapcsolat/index.html index a444ea9..d98c046 100644 --- a/out/kapcsolat/index.html +++ b/out/kapcsolat/index.html @@ -1 +1 @@ -Kapcsolat - Foglalás és információ | SkyFly TravelUgrás a tartalomra
Vissza a kezdőlapra

Elérhetőségek
Kapcsolat

Kérdése van? Keressen minket bizalommal az alábbi elérhetőségeinken vagy küldjön üzenetet.

Info vonal (iroda munkanapokon 08:00-16:00ig):

0-24 ügyelet: Megrendelt fuvarokra, SOS kérdések, határidőn túli megrendelések esetére:

Gyors üzenetküldés

Írjon nekünk közvetlenül, és kollégáink hamarosan válaszolnak!

A weboldalt reCAPTCHA v3 védi.
Céginformáció

Üzemeltető: Z+T BT.

Székhely: 9023 Győr, Ipar u. 78.

Adószám: 22426127-2-08

Bankszámla szám: OTP Bank 11737007-20749745

Tel.: +36 30 5543838 (0-24 ügyelet megrendelt fuvarokra)

Info vonal: +36 96 283676, +36 30 5543838 (iroda munkanapokon 08:00-16:00-ig)

E-mail: info@skyflytravel.hu

Jogi képviselőnk

Dr. Zsédely Andrea

12. számú ügyvédi iroda

9024 Győr Zrínyi utca 23. I/2

Web: www.12gyoriugyvediiroda.hu

Tel/Fax: +36 96 335 605

Készen áll az indulásra?

Csatlakozzon elégedett utasaink ezreihez és válassza a kényelmet.

Ügyfél vélemények
5.0
0 Ügyfél elégedettség
FacebookX (Twitter)BlogspotInstagram
2026 SkyFly Travel. Minden jog fenntartva.
Reptéri transzfer, transzfer Győr, Budapest, Bécs Schwechat, Pozsony - Airport shuttle - Airport taxi - Reptéri járatok - Repülőtéri transzfer - Budapest repülőtér - Pozsony repülőtér ? Bécs repülőtér (Vienna Airport) - Transzfer Budapest Airport - Transzfer Vienna Airport - Budapest Liszt Ferenc (Ferihegy)
\ No newline at end of file +Kapcsolat - Foglalás és információ | SkyFly TravelUgrás a tartalomra
Vissza a kezdőlapra

Elérhetőségek
Kapcsolat

Kérdése van? Keressen minket bizalommal az alábbi elérhetőségeinken vagy küldjön üzenetet.

Info vonal (iroda munkanapokon 08:00-16:00ig):

0-24 ügyelet: Megrendelt fuvarokra, SOS kérdések, határidőn túli megrendelések esetére:

Gyors üzenetküldés

Írjon nekünk közvetlenül, és kollégáink hamarosan válaszolnak!

A weboldalt reCAPTCHA v3 védi.
Céginformáció

Üzemeltető: Z+T BT.

Székhely: 9023 Győr, Ipar u. 78.

Adószám: 22426127-2-08

Bankszámla szám: OTP Bank 11737007-20749745

Tel.: +36 30 5543838 (0-24 ügyelet megrendelt fuvarokra)

Info vonal: +36 96 283676, +36 30 5543838 (iroda munkanapokon 08:00-16:00-ig)

E-mail: info@skyflytravel.hu

Jogi képviselőnk

Dr. Zsédely Andrea

12. számú ügyvédi iroda

9024 Győr Zrínyi utca 23. I/2

Web: www.12gyoriugyvediiroda.hu

Tel/Fax: +36 96 335 605

Készen áll az indulásra?

Csatlakozzon elégedett utasaink ezreihez és válassza a kényelmet.

Ügyfél vélemények
5.0
0 Ügyfél elégedettség
FacebookX (Twitter)BlogspotInstagram
2026 SkyFly Travel. Minden jog fenntartva.
Reptéri transzfer, transzfer Győr, Budapest, Bécs Schwechat, Pozsony - Airport shuttle - Airport taxi - Reptéri járatok - Repülőtéri transzfer - Budapest repülőtér - Pozsony repülőtér ? Bécs repülőtér (Vienna Airport) - Transzfer Budapest Airport - Transzfer Vienna Airport - Budapest Liszt Ferenc (Ferihegy)
\ No newline at end of file diff --git a/out/kapcsolat/index.txt b/out/kapcsolat/index.txt index b96328c..41cf85d 100644 --- a/out/kapcsolat/index.txt +++ b/out/kapcsolat/index.txt @@ -16,7 +16,7 @@ f:"$Sreact.suspense" 15:I[68027,[],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"SrJfr2gpwQrx3SSgHRI8k","c":["","kapcsolat",""],"q":"","i":false,"f":[[["",{"children":["kapcsolat",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/58a088007580aeb6.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} +0:{"P":null,"b":"XTogiP1ElaQRl870JimWE","c":["","kapcsolat",""],"q":"","i":false,"f":[[["",{"children":["kapcsolat",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/58a088007580aeb6.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} c:{} d:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/out/szolgaltatasok/__next._full.txt b/out/szolgaltatasok/__next._full.txt index 2c9ee55..a4e7062 100644 --- a/out/szolgaltatasok/__next._full.txt +++ b/out/szolgaltatasok/__next._full.txt @@ -16,7 +16,7 @@ f:"$Sreact.suspense" 15:I[68027,[],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"SrJfr2gpwQrx3SSgHRI8k","c":["","szolgaltatasok",""],"q":"","i":false,"f":[[["",{"children":["szolgaltatasok",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/45f5e87ccb053c90.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} +0:{"P":null,"b":"XTogiP1ElaQRl870JimWE","c":["","szolgaltatasok",""],"q":"","i":false,"f":[[["",{"children":["szolgaltatasok",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/45f5e87ccb053c90.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} c:{} d:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/out/szolgaltatasok/__next._head.txt b/out/szolgaltatasok/__next._head.txt index e8b1e4a..c77f500 100644 --- a/out/szolgaltatasok/__next._head.txt +++ b/out/szolgaltatasok/__next._head.txt @@ -3,4 +3,4 @@ 3:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 4:"$Sreact.suspense" 5:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"IconMark"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Szolgáltatások - Személyre szabott transzfer megoldások | SkyFly Travel"}],["$","meta","1",{"name":"description","content":"Gyűjtő, privát és családi transzfer csomagok minden igényre. Háztól házig szolgáltatás több mint 10 év tapasztalattal."}],["$","meta","2",{"name":"keywords","content":"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 reptér, Bécs reptér (Vienna Airport), Transfer Budapest airport, Transfer Vienna Airport"}],["$","link","3",{"rel":"canonical","href":"https://skyflytravel.hu/szolgaltatasok/"}],["$","meta","4",{"property":"og:title","content":"Szolgáltatások - Személyre szabott transzfer megoldások | SkyFly Travel"}],["$","meta","5",{"property":"og:description","content":"Gyűjtő, privát és családi transzfer csomagok minden igényre. Háztól házig szolgáltatás több mint 10 év tapasztalattal."}],["$","meta","6",{"property":"og:url","content":"https://skyflytravel.hu/szolgaltatasok/"}],["$","meta","7",{"property":"og:site_name","content":"SkyFly Travel"}],["$","meta","8",{"property":"og:locale","content":"hu_HU"}],["$","meta","9",{"property":"og:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","meta","10",{"property":"og:image:width","content":"1200"}],["$","meta","11",{"property":"og:image:height","content":"630"}],["$","meta","12",{"property":"og:image:alt","content":"SkyFly Travel - Szolgáltatási csomagok"}],["$","meta","13",{"property":"og:type","content":"website"}],["$","meta","14",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","15",{"name":"twitter:title","content":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","16",{"name":"twitter:description","content":"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)"}],["$","meta","17",{"name":"twitter:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.bd9a44f8.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","19",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Szolgáltatások - Személyre szabott transzfer megoldások | SkyFly Travel"}],["$","meta","1",{"name":"description","content":"Gyűjtő, privát és családi transzfer csomagok minden igényre. Háztól házig szolgáltatás több mint 10 év tapasztalattal."}],["$","meta","2",{"name":"keywords","content":"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 reptér, Bécs reptér (Vienna Airport), Transfer Budapest airport, Transfer Vienna Airport"}],["$","link","3",{"rel":"canonical","href":"https://skyflytravel.hu/szolgaltatasok/"}],["$","meta","4",{"property":"og:title","content":"Szolgáltatások - Személyre szabott transzfer megoldások | SkyFly Travel"}],["$","meta","5",{"property":"og:description","content":"Gyűjtő, privát és családi transzfer csomagok minden igényre. Háztól házig szolgáltatás több mint 10 év tapasztalattal."}],["$","meta","6",{"property":"og:url","content":"https://skyflytravel.hu/szolgaltatasok/"}],["$","meta","7",{"property":"og:site_name","content":"SkyFly Travel"}],["$","meta","8",{"property":"og:locale","content":"hu_HU"}],["$","meta","9",{"property":"og:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","meta","10",{"property":"og:image:width","content":"1200"}],["$","meta","11",{"property":"og:image:height","content":"630"}],["$","meta","12",{"property":"og:image:alt","content":"SkyFly Travel - Szolgáltatási csomagok"}],["$","meta","13",{"property":"og:type","content":"website"}],["$","meta","14",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","15",{"name":"twitter:title","content":"SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!"}],["$","meta","16",{"name":"twitter:description","content":"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)"}],["$","meta","17",{"name":"twitter:image","content":"https://skyflytravel.hu/images/hero-main.jpg"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.bd9a44f8.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","19",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} diff --git a/out/szolgaltatasok/__next._index.txt b/out/szolgaltatasok/__next._index.txt index 6de19c9..d0e144e 100644 --- a/out/szolgaltatasok/__next._index.txt +++ b/out/szolgaltatasok/__next._index.txt @@ -8,4 +8,4 @@ 8:I[36768,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js","/_next/static/chunks/d923f90fc26f0411.js"],"default"] 9:I[34581,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js"],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[["$","$L8",null,{}],[]]}]}],["$","$L9",null,{}]]}]]}]]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[["$","$L8",null,{}],[]]}]}],["$","$L9",null,{}]]}]]}]]}]]}],"loading":null,"isPartial":false} diff --git a/out/szolgaltatasok/__next._tree.txt b/out/szolgaltatasok/__next._tree.txt index b1960ee..0219d64 100644 --- a/out/szolgaltatasok/__next._tree.txt +++ b/out/szolgaltatasok/__next._tree.txt @@ -1,3 +1,3 @@ :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"szolgaltatasok","paramType":null,"paramKey":"szolgaltatasok","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300} +0:{"buildId":"XTogiP1ElaQRl870JimWE","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"szolgaltatasok","paramType":null,"paramKey":"szolgaltatasok","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300} diff --git a/out/szolgaltatasok/__next.szolgaltatasok.txt b/out/szolgaltatasok/__next.szolgaltatasok.txt index 82057b7..0c3ddd6 100644 --- a/out/szolgaltatasok/__next.szolgaltatasok.txt +++ b/out/szolgaltatasok/__next.szolgaltatasok.txt @@ -1,4 +1,4 @@ 1:"$Sreact.fragment" 2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} diff --git a/out/szolgaltatasok/__next.szolgaltatasok/__PAGE__.txt b/out/szolgaltatasok/__next.szolgaltatasok/__PAGE__.txt index 36df6b4..19261c3 100644 --- a/out/szolgaltatasok/__next.szolgaltatasok/__PAGE__.txt +++ b/out/szolgaltatasok/__next.szolgaltatasok/__PAGE__.txt @@ -3,7 +3,7 @@ 3:I[3339,["/_next/static/chunks/d7ebb72c9f90e45f.js","/_next/static/chunks/8c52dd8cded69e77.js","/_next/static/chunks/3b86e8857d5e581a.js","/_next/static/chunks/45f5e87ccb053c90.js","/_next/static/chunks/6ef51f8b2003e256.js"],"default"] 6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"buildId":"SrJfr2gpwQrx3SSgHRI8k","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/45f5e87ccb053c90.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"XTogiP1ElaQRl870JimWE","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/45f5e87ccb053c90.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} 4:{} 5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 8:null diff --git a/out/szolgaltatasok/index.html b/out/szolgaltatasok/index.html index d75530e..7d1e1d4 100644 --- a/out/szolgaltatasok/index.html +++ b/out/szolgaltatasok/index.html @@ -1 +1 @@ -Szolgáltatások - Személyre szabott transzfer megoldások | SkyFly TravelUgrás a tartalomra
Vissza a kezdőlapra

Szolgáltatási
Csomagok

Ismerje meg részletesen szolgáltatásainkat. Legyen szó egyéni utazásról vagy családi kiruccanásról, minden igényre van megoldásunk.

Gyűjtő járatok közös jellemzői:

Város - Reptér útvonal:
Reptérre érkezés 1,5 - 2 órával a gép indulása előtt, utas felvételi időpontot mi adjuk meg.
Reptér - Város útvonal:
Összeültetésnél a viszonyítási alap: Tervezett leszállás + 20-30 perc csomagfelvétel.

Egyedi jellemző "Gyűjtő EXPRESS":

Gyűjtő EXPRESS

Igazodva más utasokhoz, szabad kapacitás függvényében. Gyorsabb kijutás, kevesebb várakozás.

Város - Reptér útvonal:

Az ideális utas felvételhez képest max. 60 perccel korábbi indulás.

Reptér - Város útvonal:

Tervezett leszállás, csomagfelvétel után max. 60 perccel későbbi indulás.

Egyedi jellemző "PRIVATE":

PRIVATE

Időben és térben nem kell más utashoz igazodni.

Város - Reptér útvonal:

Az utas felvételi időpont az utas számára legideálisabb időpontban.

Reptér - Város útvonal:

Nincs várakozás.

Egyedi jellemző "CSALÁDI":

CSALÁDI

Időben és térben nem kell más utashoz igazodni. Teljesítés: egyterű személygépjárművel, feltétele: min. 1 gyerek (0-14 éves), max. 3 normál bőrönd, és 3 kézipoggyász.

Város - Reptér útvonal:

Az utas felvételi időpont az utas számára legideálisabb időpontban.

Reptér - Város útvonal:

Nincs várakozás.

Egyedi jellemző "Nagy" CSALÁDI:

NAGY CSALÁDI

Időben és térben nem kell más utashoz igazodni. Teljesítés: kisbusszal, feltétele: min. 1 gyerek (0-14 éves), max. 6 normál bőrönd, és 6 kézipoggyász.

Város - Reptér útvonal:

Az utas felvételi időpont az utas számára legideálisabb időpontban.

Reptér - Város útvonal:

Nincs várakozás.

Miért Mi?

Rugalmas, pontos, precíz csapat
Autóink tisztaságára, műszaki állapotára nagy hangsúlyt fektetünk.
A flottához tartozó gépkocsikat tervezett rendszerességgel cseréljük, hogy folyamatosan új autókkal álljunk utasaink rendelkezésére.
A SkyFly Travel rendelkezik minden hatályos jogszabály által előírt személyszállítói engedéllyel.
NON-STOP ügyelet megrendelt fuvarokra (+36 30 5543838)
Háztól – Házig szállítjuk (Ön által megadott címről/címre)

Nálunk díjmentes:

Transzfer módosítása, lemondása (legkésőbb utazás előtti munkanap 12:00-ig)
0-6 éves korig egy gyermek utazása szülői felügyelet mellett
Kortól függően gyerekülést biztosítunk

Kedvezményeink:

Viteldíjakból -5% Facebook kedvezmény! Részletek itt!

Részletek itt!

Törzsutas program: rendszeresen utaztató cégek részére egyedi kedvezményeket kínálunk.

Hotline 0-24

+36 30 554 3838

Készen áll az indulásra?

Csatlakozzon elégedett utasaink ezreihez és válassza a kényelmet.

Ügyfél vélemények
5.0
0 Ügyfél elégedettség
FacebookX (Twitter)BlogspotInstagram
2026 SkyFly Travel. Minden jog fenntartva.
Reptéri transzfer, transzfer Győr, Budapest, Bécs Schwechat, Pozsony - Airport shuttle - Airport taxi - Reptéri járatok - Repülőtéri transzfer - Budapest repülőtér - Pozsony repülőtér ? Bécs repülőtér (Vienna Airport) - Transzfer Budapest Airport - Transzfer Vienna Airport - Budapest Liszt Ferenc (Ferihegy)
\ No newline at end of file +Szolgáltatások - Személyre szabott transzfer megoldások | SkyFly TravelUgrás a tartalomra
Vissza a kezdőlapra

Szolgáltatási
Csomagok

Ismerje meg részletesen szolgáltatásainkat. Legyen szó egyéni utazásról vagy családi kiruccanásról, minden igényre van megoldásunk.

Gyűjtő járatok közös jellemzői:

Város - Reptér útvonal:
Reptérre érkezés 1,5 - 2 órával a gép indulása előtt, utas felvételi időpontot mi adjuk meg.
Reptér - Város útvonal:
Összeültetésnél a viszonyítási alap: Tervezett leszállás + 20-30 perc csomagfelvétel.

Egyedi jellemző "Gyűjtő EXPRESS":

Gyűjtő EXPRESS

Igazodva más utasokhoz, szabad kapacitás függvényében. Gyorsabb kijutás, kevesebb várakozás.

Város - Reptér útvonal:

Az ideális utas felvételhez képest max. 60 perccel korábbi indulás.

Reptér - Város útvonal:

Tervezett leszállás, csomagfelvétel után max. 60 perccel későbbi indulás.

Egyedi jellemző "PRIVATE":

PRIVATE

Időben és térben nem kell más utashoz igazodni.

Város - Reptér útvonal:

Az utas felvételi időpont az utas számára legideálisabb időpontban.

Reptér - Város útvonal:

Nincs várakozás.

Egyedi jellemző "CSALÁDI":

CSALÁDI

Időben és térben nem kell más utashoz igazodni. Teljesítés: egyterű személygépjárművel, feltétele: min. 1 gyerek (0-14 éves), max. 3 normál bőrönd, és 3 kézipoggyász.

Város - Reptér útvonal:

Az utas felvételi időpont az utas számára legideálisabb időpontban.

Reptér - Város útvonal:

Nincs várakozás.

Egyedi jellemző "Nagy" CSALÁDI:

NAGY CSALÁDI

Időben és térben nem kell más utashoz igazodni. Teljesítés: kisbusszal, feltétele: min. 1 gyerek (0-14 éves), max. 6 normál bőrönd, és 6 kézipoggyász.

Város - Reptér útvonal:

Az utas felvételi időpont az utas számára legideálisabb időpontban.

Reptér - Város útvonal:

Nincs várakozás.

Miért Mi?

Rugalmas, pontos, precíz csapat
Autóink tisztaságára, műszaki állapotára nagy hangsúlyt fektetünk.
A flottához tartozó gépkocsikat tervezett rendszerességgel cseréljük, hogy folyamatosan új autókkal álljunk utasaink rendelkezésére.
A SkyFly Travel rendelkezik minden hatályos jogszabály által előírt személyszállítói engedéllyel.
NON-STOP ügyelet megrendelt fuvarokra (+36 30 5543838)
Háztól – Házig szállítjuk (Ön által megadott címről/címre)

Nálunk díjmentes:

Transzfer módosítása, lemondása (legkésőbb utazás előtti munkanap 12:00-ig)
0-6 éves korig egy gyermek utazása szülői felügyelet mellett
Kortól függően gyerekülést biztosítunk

Kedvezményeink:

Viteldíjakból -5% Facebook kedvezmény! Részletek itt!

Részletek itt!

Törzsutas program: rendszeresen utaztató cégek részére egyedi kedvezményeket kínálunk.

Hotline 0-24

+36 30 554 3838

Készen áll az indulásra?

Csatlakozzon elégedett utasaink ezreihez és válassza a kényelmet.

Ügyfél vélemények
5.0
0 Ügyfél elégedettség
FacebookX (Twitter)BlogspotInstagram
2026 SkyFly Travel. Minden jog fenntartva.
Reptéri transzfer, transzfer Győr, Budapest, Bécs Schwechat, Pozsony - Airport shuttle - Airport taxi - Reptéri járatok - Repülőtéri transzfer - Budapest repülőtér - Pozsony repülőtér ? Bécs repülőtér (Vienna Airport) - Transzfer Budapest Airport - Transzfer Vienna Airport - Budapest Liszt Ferenc (Ferihegy)
\ No newline at end of file diff --git a/out/szolgaltatasok/index.txt b/out/szolgaltatasok/index.txt index 2c9ee55..a4e7062 100644 --- a/out/szolgaltatasok/index.txt +++ b/out/szolgaltatasok/index.txt @@ -16,7 +16,7 @@ f:"$Sreact.suspense" 15:I[68027,[],"default"] :HL["/_next/static/chunks/6732829cffe4abb3.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"SrJfr2gpwQrx3SSgHRI8k","c":["","szolgaltatasok",""],"q":"","i":false,"f":[[["",{"children":["szolgaltatasok",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/45f5e87ccb053c90.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} +0:{"P":null,"b":"XTogiP1ElaQRl870JimWE","c":["","szolgaltatasok",""],"q":"","i":false,"f":[[["",{"children":["szolgaltatasok",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/6732829cffe4abb3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d7ebb72c9f90e45f.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/8c52dd8cded69e77.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/3b86e8857d5e581a.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":[["$","$L2",null,{"gtmId":"GTM-MSGML3M2"}],["$","$L3",null,{"gaId":"G-Q36J1P7SJJ"}],["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:fixed focus:top-4 focus:left-4 focus:z-[100] focus:bg-primary focus:text-white focus:px-6 focus:py-3 focus:rounded-full focus:font-bold focus:shadow-2xl transition-all","children":"Ugrás a tartalomra"}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","main",null,{"id":"main-content","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L8",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L9",null,{}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$La",null,{"Component":"$b","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@c","$@d"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/45f5e87ccb053c90.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6ef51f8b2003e256.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[]],"S":true} c:{} d:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/package-lock.json b/package-lock.json index 5d580eb..548323e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,14 +10,12 @@ "dependencies": { "@next/third-parties": "^16.2.1", "@radix-ui/react-slot": "^1.2.4", - "@types/nodemailer": "^7.0.5", "@types/react-google-recaptcha": "^2.1.9", "class-variance-authority": "^0.7.1", "clsx": "^2.1.1", "framer-motion": "^12.29.2", "lucide-react": "^0.563.0", "next": "16.1.4", - "nodemailer": "^7.0.12", "react": "19.2.3", "react-dom": "19.2.3", "react-google-recaptcha": "^3.1.0", @@ -49,790 +47,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@aws-crypto/sha256-browser": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz", - "integrity": "sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==", - "license": "Apache-2.0", - "dependencies": { - "@aws-crypto/sha256-js": "^5.2.0", - "@aws-crypto/supports-web-crypto": "^5.2.0", - "@aws-crypto/util": "^5.2.0", - "@aws-sdk/types": "^3.222.0", - "@aws-sdk/util-locate-window": "^3.0.0", - "@smithy/util-utf8": "^2.0.0", - "tslib": "^2.6.2" - } - }, - "node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz", - "integrity": "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz", - "integrity": "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/is-array-buffer": "^2.2.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.3.0.tgz", - "integrity": "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/util-buffer-from": "^2.2.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@aws-crypto/sha256-js": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz", - "integrity": "sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==", - "license": "Apache-2.0", - "dependencies": { - "@aws-crypto/util": "^5.2.0", - "@aws-sdk/types": "^3.222.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-crypto/supports-web-crypto": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz", - "integrity": "sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - } - }, - "node_modules/@aws-crypto/util": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/@aws-crypto/util/-/util-5.2.0.tgz", - "integrity": "sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/types": "^3.222.0", - "@smithy/util-utf8": "^2.0.0", - "tslib": "^2.6.2" - } - }, - "node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz", - "integrity": "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz", - "integrity": "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/is-array-buffer": "^2.2.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.3.0.tgz", - "integrity": "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/util-buffer-from": "^2.2.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@aws-sdk/client-sesv2": { - "version": "3.975.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sesv2/-/client-sesv2-3.975.0.tgz", - "integrity": "sha512-4R+hR6N2LbvTIf6Y2e9b9PQlVkAD5WmSRMAGslul5L/jCE0LzOYC+4RQ7u5EOv0mERozcYleLPK2Zc0jTn4gTg==", - "license": "Apache-2.0", - "dependencies": { - "@aws-crypto/sha256-browser": "5.2.0", - "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/core": "^3.973.1", - "@aws-sdk/credential-provider-node": "^3.972.1", - "@aws-sdk/middleware-host-header": "^3.972.1", - "@aws-sdk/middleware-logger": "^3.972.1", - "@aws-sdk/middleware-recursion-detection": "^3.972.1", - "@aws-sdk/middleware-user-agent": "^3.972.2", - "@aws-sdk/region-config-resolver": "^3.972.1", - "@aws-sdk/signature-v4-multi-region": "3.972.0", - "@aws-sdk/types": "^3.973.0", - "@aws-sdk/util-endpoints": "3.972.0", - "@aws-sdk/util-user-agent-browser": "^3.972.1", - "@aws-sdk/util-user-agent-node": "^3.972.1", - "@smithy/config-resolver": "^4.4.6", - "@smithy/core": "^3.21.1", - "@smithy/fetch-http-handler": "^5.3.9", - "@smithy/hash-node": "^4.2.8", - "@smithy/invalid-dependency": "^4.2.8", - "@smithy/middleware-content-length": "^4.2.8", - "@smithy/middleware-endpoint": "^4.4.11", - "@smithy/middleware-retry": "^4.4.27", - "@smithy/middleware-serde": "^4.2.9", - "@smithy/middleware-stack": "^4.2.8", - "@smithy/node-config-provider": "^4.3.8", - "@smithy/node-http-handler": "^4.4.8", - "@smithy/protocol-http": "^5.3.8", - "@smithy/smithy-client": "^4.10.12", - "@smithy/types": "^4.12.0", - "@smithy/url-parser": "^4.2.8", - "@smithy/util-base64": "^4.3.0", - "@smithy/util-body-length-browser": "^4.2.0", - "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.26", - "@smithy/util-defaults-mode-node": "^4.2.29", - "@smithy/util-endpoints": "^3.2.8", - "@smithy/util-middleware": "^4.2.8", - "@smithy/util-retry": "^4.2.8", - "@smithy/util-utf8": "^4.2.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/client-sso": { - "version": "3.974.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.974.0.tgz", - "integrity": "sha512-ci+GiM0c4ULo4D79UMcY06LcOLcfvUfiyt8PzNY0vbt5O8BfCPYf4QomwVgkNcLLCYmroO4ge2Yy1EsLUlcD6g==", - "license": "Apache-2.0", - "dependencies": { - "@aws-crypto/sha256-browser": "5.2.0", - "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/core": "^3.973.0", - "@aws-sdk/middleware-host-header": "^3.972.1", - "@aws-sdk/middleware-logger": "^3.972.1", - "@aws-sdk/middleware-recursion-detection": "^3.972.1", - "@aws-sdk/middleware-user-agent": "^3.972.1", - "@aws-sdk/region-config-resolver": "^3.972.1", - "@aws-sdk/types": "^3.973.0", - "@aws-sdk/util-endpoints": "3.972.0", - "@aws-sdk/util-user-agent-browser": "^3.972.1", - "@aws-sdk/util-user-agent-node": "^3.972.1", - "@smithy/config-resolver": "^4.4.6", - "@smithy/core": "^3.21.0", - "@smithy/fetch-http-handler": "^5.3.9", - "@smithy/hash-node": "^4.2.8", - "@smithy/invalid-dependency": "^4.2.8", - "@smithy/middleware-content-length": "^4.2.8", - "@smithy/middleware-endpoint": "^4.4.10", - "@smithy/middleware-retry": "^4.4.26", - "@smithy/middleware-serde": "^4.2.9", - "@smithy/middleware-stack": "^4.2.8", - "@smithy/node-config-provider": "^4.3.8", - "@smithy/node-http-handler": "^4.4.8", - "@smithy/protocol-http": "^5.3.8", - "@smithy/smithy-client": "^4.10.11", - "@smithy/types": "^4.12.0", - "@smithy/url-parser": "^4.2.8", - "@smithy/util-base64": "^4.3.0", - "@smithy/util-body-length-browser": "^4.2.0", - "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.25", - "@smithy/util-defaults-mode-node": "^4.2.28", - "@smithy/util-endpoints": "^3.2.8", - "@smithy/util-middleware": "^4.2.8", - "@smithy/util-retry": "^4.2.8", - "@smithy/util-utf8": "^4.2.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/core": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.973.1.tgz", - "integrity": "sha512-Ocubx42QsMyVs9ANSmFpRm0S+hubWljpPLjOi9UFrtcnVJjrVJTzQ51sN0e5g4e8i8QZ7uY73zosLmgYL7kZTQ==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/types": "^3.973.0", - "@aws-sdk/xml-builder": "^3.972.1", - "@smithy/core": "^3.21.1", - "@smithy/node-config-provider": "^4.3.8", - "@smithy/property-provider": "^4.2.8", - "@smithy/protocol-http": "^5.3.8", - "@smithy/signature-v4": "^5.3.8", - "@smithy/smithy-client": "^4.10.12", - "@smithy/types": "^4.12.0", - "@smithy/util-base64": "^4.3.0", - "@smithy/util-middleware": "^4.2.8", - "@smithy/util-utf8": "^4.2.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/credential-provider-env": { - "version": "3.972.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.972.1.tgz", - "integrity": "sha512-/etNHqnx96phy/SjI0HRC588o4vKH5F0xfkZ13yAATV7aNrb+5gYGNE6ePWafP+FuZ3HkULSSlJFj0AxgrAqYw==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/core": "^3.973.0", - "@aws-sdk/types": "^3.973.0", - "@smithy/property-provider": "^4.2.8", - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/credential-provider-http": { - "version": "3.972.2", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.972.2.tgz", - "integrity": "sha512-mXgdaUfe5oM+tWKyeZ7Vh/iQ94FrkMky1uuzwTOmFADiRcSk5uHy/e3boEFedXiT/PRGzgBmqvJVK4F6lUISCg==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/core": "^3.973.1", - "@aws-sdk/types": "^3.973.0", - "@smithy/fetch-http-handler": "^5.3.9", - "@smithy/node-http-handler": "^4.4.8", - "@smithy/property-provider": "^4.2.8", - "@smithy/protocol-http": "^5.3.8", - "@smithy/smithy-client": "^4.10.12", - "@smithy/types": "^4.12.0", - "@smithy/util-stream": "^4.5.10", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/credential-provider-ini": { - "version": "3.972.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.972.1.tgz", - "integrity": "sha512-OdbJA3v+XlNDsrYzNPRUwr8l7gw1r/nR8l4r96MDzSBDU8WEo8T6C06SvwaXR8SpzsjO3sq5KMP86wXWg7Rj4g==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/core": "^3.973.0", - "@aws-sdk/credential-provider-env": "^3.972.1", - "@aws-sdk/credential-provider-http": "^3.972.1", - "@aws-sdk/credential-provider-login": "^3.972.1", - "@aws-sdk/credential-provider-process": "^3.972.1", - "@aws-sdk/credential-provider-sso": "^3.972.1", - "@aws-sdk/credential-provider-web-identity": "^3.972.1", - "@aws-sdk/nested-clients": "3.974.0", - "@aws-sdk/types": "^3.973.0", - "@smithy/credential-provider-imds": "^4.2.8", - "@smithy/property-provider": "^4.2.8", - "@smithy/shared-ini-file-loader": "^4.4.3", - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/credential-provider-login": { - "version": "3.972.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-login/-/credential-provider-login-3.972.1.tgz", - "integrity": "sha512-CccqDGL6ZrF3/EFWZefvKW7QwwRdxlHUO8NVBKNVcNq6womrPDvqB6xc9icACtE0XB0a7PLoSTkAg8bQVkTO2w==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/core": "^3.973.0", - "@aws-sdk/nested-clients": "3.974.0", - "@aws-sdk/types": "^3.973.0", - "@smithy/property-provider": "^4.2.8", - "@smithy/protocol-http": "^5.3.8", - "@smithy/shared-ini-file-loader": "^4.4.3", - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/credential-provider-node": { - "version": "3.972.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.972.1.tgz", - "integrity": "sha512-DwXPk9GfuU/xG9tmCyXFVkCr6X3W8ZCoL5Ptb0pbltEx1/LCcg7T+PBqDlPiiinNCD6ilIoMJDWsnJ8ikzZA7Q==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/credential-provider-env": "^3.972.1", - "@aws-sdk/credential-provider-http": "^3.972.1", - "@aws-sdk/credential-provider-ini": "^3.972.1", - "@aws-sdk/credential-provider-process": "^3.972.1", - "@aws-sdk/credential-provider-sso": "^3.972.1", - "@aws-sdk/credential-provider-web-identity": "^3.972.1", - "@aws-sdk/types": "^3.973.0", - "@smithy/credential-provider-imds": "^4.2.8", - "@smithy/property-provider": "^4.2.8", - "@smithy/shared-ini-file-loader": "^4.4.3", - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/credential-provider-process": { - "version": "3.972.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.972.1.tgz", - "integrity": "sha512-bi47Zigu3692SJwdBvo8y1dEwE6B61stCwCFnuRWJVTfiM84B+VTSCV661CSWJmIZzmcy7J5J3kWyxL02iHj0w==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/core": "^3.973.0", - "@aws-sdk/types": "^3.973.0", - "@smithy/property-provider": "^4.2.8", - "@smithy/shared-ini-file-loader": "^4.4.3", - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/credential-provider-sso": { - "version": "3.972.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.972.1.tgz", - "integrity": "sha512-dLZVNhM7wSgVUFsgVYgI5hb5Z/9PUkT46pk/SHrSmUqfx6YDvoV4YcPtaiRqviPpEGGiRtdQMEadyOKIRqulUQ==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/client-sso": "3.974.0", - "@aws-sdk/core": "^3.973.0", - "@aws-sdk/token-providers": "3.974.0", - "@aws-sdk/types": "^3.973.0", - "@smithy/property-provider": "^4.2.8", - "@smithy/shared-ini-file-loader": "^4.4.3", - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/credential-provider-web-identity": { - "version": "3.972.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.972.1.tgz", - "integrity": "sha512-YMDeYgi0u687Ay0dAq/pFPKuijrlKTgsaB/UATbxCs/FzZfMiG4If5ksywHmmW7MiYUF8VVv+uou3TczvLrN4w==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/core": "^3.973.0", - "@aws-sdk/nested-clients": "3.974.0", - "@aws-sdk/types": "^3.973.0", - "@smithy/property-provider": "^4.2.8", - "@smithy/shared-ini-file-loader": "^4.4.3", - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/middleware-host-header": { - "version": "3.972.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.972.1.tgz", - "integrity": "sha512-/R82lXLPmZ9JaUGSUdKtBp2k/5xQxvBT3zZWyKiBOhyulFotlfvdlrO8TnqstBimsl4lYEYySDL+W6ldFh6ALg==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/types": "^3.973.0", - "@smithy/protocol-http": "^5.3.8", - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/middleware-logger": { - "version": "3.972.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.972.1.tgz", - "integrity": "sha512-JGgFl6cHg9G2FHu4lyFIzmFN8KESBiRr84gLC3Aeni0Gt1nKm+KxWLBuha/RPcXxJygGXCcMM4AykkIwxor8RA==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/types": "^3.973.0", - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/middleware-recursion-detection": { - "version": "3.972.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.972.1.tgz", - "integrity": "sha512-taGzNRe8vPHjnliqXIHp9kBgIemLE/xCaRTMH1NH0cncHeaPcjxtnCroAAM9aOlPuKvBe2CpZESyvM1+D8oI7Q==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/types": "^3.973.0", - "@aws/lambda-invoke-store": "^0.2.2", - "@smithy/protocol-http": "^5.3.8", - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/middleware-sdk-s3": { - "version": "3.972.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.972.0.tgz", - "integrity": "sha512-0bcKFXWx+NZ7tIlOo7KjQ+O2rydiHdIQahrq+fN6k9Osky29v17guy68urUKfhTobR6iY6KvxkroFWaFtTgS5w==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/core": "3.972.0", - "@aws-sdk/types": "3.972.0", - "@aws-sdk/util-arn-parser": "3.972.0", - "@smithy/core": "^3.20.6", - "@smithy/node-config-provider": "^4.3.8", - "@smithy/protocol-http": "^5.3.8", - "@smithy/signature-v4": "^5.3.8", - "@smithy/smithy-client": "^4.10.8", - "@smithy/types": "^4.12.0", - "@smithy/util-config-provider": "^4.2.0", - "@smithy/util-middleware": "^4.2.8", - "@smithy/util-stream": "^4.5.10", - "@smithy/util-utf8": "^4.2.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/middleware-sdk-s3/node_modules/@aws-sdk/core": { - "version": "3.972.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.972.0.tgz", - "integrity": "sha512-nEeUW2M9F+xdIaD98F5MBcQ4ITtykj3yKbgFZ6J0JtL3bq+Z90szQ6Yy8H/BLPYXTs3V4n9ifnBo8cprRDiE6A==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/types": "3.972.0", - "@aws-sdk/xml-builder": "3.972.0", - "@smithy/core": "^3.20.6", - "@smithy/node-config-provider": "^4.3.8", - "@smithy/property-provider": "^4.2.8", - "@smithy/protocol-http": "^5.3.8", - "@smithy/signature-v4": "^5.3.8", - "@smithy/smithy-client": "^4.10.8", - "@smithy/types": "^4.12.0", - "@smithy/util-base64": "^4.3.0", - "@smithy/util-middleware": "^4.2.8", - "@smithy/util-utf8": "^4.2.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/middleware-sdk-s3/node_modules/@aws-sdk/types": { - "version": "3.972.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.972.0.tgz", - "integrity": "sha512-U7xBIbLSetONxb2bNzHyDgND3oKGoIfmknrEVnoEU4GUSs+0augUOIn9DIWGUO2ETcRFdsRUnmx9KhPT9Ojbug==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/middleware-sdk-s3/node_modules/@aws-sdk/xml-builder": { - "version": "3.972.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.972.0.tgz", - "integrity": "sha512-POaGMcXnozzqBUyJM3HLUZ9GR6OKJWPGJEmhtTnxZXt8B6JcJ/6K3xRJ5H/j8oovVLz8Wg6vFxAHv8lvuASxMg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "fast-xml-parser": "5.2.5", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/middleware-user-agent": { - "version": "3.972.2", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.972.2.tgz", - "integrity": "sha512-d+Exq074wy0X6wvShg/kmZVtkah+28vMuqCtuY3cydg8LUZOJBtbAolCpEJizSyb8mJJZF9BjWaTANXL4OYnkg==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/core": "^3.973.1", - "@aws-sdk/types": "^3.973.0", - "@aws-sdk/util-endpoints": "3.972.0", - "@smithy/core": "^3.21.1", - "@smithy/protocol-http": "^5.3.8", - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/nested-clients": { - "version": "3.974.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.974.0.tgz", - "integrity": "sha512-k3dwdo/vOiHMJc9gMnkPl1BA5aQfTrZbz+8fiDkWrPagqAioZgmo5oiaOaeX0grObfJQKDtcpPFR4iWf8cgl8Q==", - "license": "Apache-2.0", - "dependencies": { - "@aws-crypto/sha256-browser": "5.2.0", - "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/core": "^3.973.0", - "@aws-sdk/middleware-host-header": "^3.972.1", - "@aws-sdk/middleware-logger": "^3.972.1", - "@aws-sdk/middleware-recursion-detection": "^3.972.1", - "@aws-sdk/middleware-user-agent": "^3.972.1", - "@aws-sdk/region-config-resolver": "^3.972.1", - "@aws-sdk/types": "^3.973.0", - "@aws-sdk/util-endpoints": "3.972.0", - "@aws-sdk/util-user-agent-browser": "^3.972.1", - "@aws-sdk/util-user-agent-node": "^3.972.1", - "@smithy/config-resolver": "^4.4.6", - "@smithy/core": "^3.21.0", - "@smithy/fetch-http-handler": "^5.3.9", - "@smithy/hash-node": "^4.2.8", - "@smithy/invalid-dependency": "^4.2.8", - "@smithy/middleware-content-length": "^4.2.8", - "@smithy/middleware-endpoint": "^4.4.10", - "@smithy/middleware-retry": "^4.4.26", - "@smithy/middleware-serde": "^4.2.9", - "@smithy/middleware-stack": "^4.2.8", - "@smithy/node-config-provider": "^4.3.8", - "@smithy/node-http-handler": "^4.4.8", - "@smithy/protocol-http": "^5.3.8", - "@smithy/smithy-client": "^4.10.11", - "@smithy/types": "^4.12.0", - "@smithy/url-parser": "^4.2.8", - "@smithy/util-base64": "^4.3.0", - "@smithy/util-body-length-browser": "^4.2.0", - "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.25", - "@smithy/util-defaults-mode-node": "^4.2.28", - "@smithy/util-endpoints": "^3.2.8", - "@smithy/util-middleware": "^4.2.8", - "@smithy/util-retry": "^4.2.8", - "@smithy/util-utf8": "^4.2.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/region-config-resolver": { - "version": "3.972.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.972.1.tgz", - "integrity": "sha512-voIY8RORpxLAEgEkYaTFnkaIuRwVBEc+RjVZYcSSllPV+ZEKAacai6kNhJeE3D70Le+JCfvRb52tng/AVHY+jQ==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/types": "^3.973.0", - "@smithy/config-resolver": "^4.4.6", - "@smithy/node-config-provider": "^4.3.8", - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/signature-v4-multi-region": { - "version": "3.972.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.972.0.tgz", - "integrity": "sha512-2udiRijmjpN81Pvajje4TsjbXDZNP6K9bYUanBYH8hXa/tZG5qfGCySD+TyX0sgDxCQmEDMg3LaQdfjNHBDEgQ==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/middleware-sdk-s3": "3.972.0", - "@aws-sdk/types": "3.972.0", - "@smithy/protocol-http": "^5.3.8", - "@smithy/signature-v4": "^5.3.8", - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types": { - "version": "3.972.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.972.0.tgz", - "integrity": "sha512-U7xBIbLSetONxb2bNzHyDgND3oKGoIfmknrEVnoEU4GUSs+0augUOIn9DIWGUO2ETcRFdsRUnmx9KhPT9Ojbug==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/token-providers": { - "version": "3.974.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.974.0.tgz", - "integrity": "sha512-cBykL0LiccKIgNhGWvQRTPvsBLPZxnmJU3pYxG538jpFX8lQtrCy1L7mmIHNEdxIdIGEPgAEHF8/JQxgBToqUQ==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/core": "^3.973.0", - "@aws-sdk/nested-clients": "3.974.0", - "@aws-sdk/types": "^3.973.0", - "@smithy/property-provider": "^4.2.8", - "@smithy/shared-ini-file-loader": "^4.4.3", - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/types": { - "version": "3.973.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.0.tgz", - "integrity": "sha512-jYIdB7a7jhRTvyb378nsjyvJh1Si+zVduJ6urMNGpz8RjkmHZ+9vM2H07XaIB2Cfq0GhJRZYOfUCH8uqQhqBkQ==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/util-arn-parser": { - "version": "3.972.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-arn-parser/-/util-arn-parser-3.972.0.tgz", - "integrity": "sha512-RM5Mmo/KJ593iMSrALlHEOcc9YOIyOsDmS5x2NLOMdEmzv1o00fcpAkCQ02IGu1eFneBFT7uX0Mpag0HI+Cz2g==", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/util-endpoints": { - "version": "3.972.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.972.0.tgz", - "integrity": "sha512-6JHsl1V/a1ZW8D8AFfd4R52fwZPnZ5H4U6DS8m/bWT8qad72NvbOFAC7U2cDtFs2TShqUO3TEiX/EJibtY3ijg==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/types": "3.972.0", - "@smithy/types": "^4.12.0", - "@smithy/url-parser": "^4.2.8", - "@smithy/util-endpoints": "^3.2.8", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/util-endpoints/node_modules/@aws-sdk/types": { - "version": "3.972.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.972.0.tgz", - "integrity": "sha512-U7xBIbLSetONxb2bNzHyDgND3oKGoIfmknrEVnoEU4GUSs+0augUOIn9DIWGUO2ETcRFdsRUnmx9KhPT9Ojbug==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/util-locate-window": { - "version": "3.965.3", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.965.3.tgz", - "integrity": "sha512-FNUqAjlKAGA7GM05kywE99q8wiPHPZqrzhq3wXRga6PRD6A0kzT85Pb0AzYBVTBRpSrKyyr6M92Y6bnSBVp2BA==", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/util-user-agent-browser": { - "version": "3.972.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.972.1.tgz", - "integrity": "sha512-IgF55NFmJX8d9Wql9M0nEpk2eYbuD8G4781FN4/fFgwTXBn86DvlZJuRWDCMcMqZymnBVX7HW9r+3r9ylqfW0w==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/types": "^3.973.0", - "@smithy/types": "^4.12.0", - "bowser": "^2.11.0", - "tslib": "^2.6.2" - } - }, - "node_modules/@aws-sdk/util-user-agent-node": { - "version": "3.972.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.972.1.tgz", - "integrity": "sha512-oIs4JFcADzoZ0c915R83XvK2HltWupxNsXUIuZse2rgk7b97zTpkxaqXiH0h9ylh31qtgo/t8hp4tIqcsMrEbQ==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/middleware-user-agent": "^3.972.1", - "@aws-sdk/types": "^3.973.0", - "@smithy/node-config-provider": "^4.3.8", - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - }, - "peerDependencies": { - "aws-crt": ">=1.0.0" - }, - "peerDependenciesMeta": { - "aws-crt": { - "optional": true - } - } - }, - "node_modules/@aws-sdk/xml-builder": { - "version": "3.972.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.972.1.tgz", - "integrity": "sha512-6zZGlPOqn7Xb+25MAXGb1JhgvaC5HjZj6GzszuVrnEgbhvzBRFGKYemuHBV4bho+dtqeYKPgaZUv7/e80hIGNg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "fast-xml-parser": "5.2.5", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws/lambda-invoke-store": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@aws/lambda-invoke-store/-/lambda-invoke-store-0.2.3.tgz", - "integrity": "sha512-oLvsaPMTBejkkmHhjf09xTgk71mOqyr/409NKhRIL08If7AhVfUsJhVsx386uJaqNd42v9kWamQ9lFbkoC2dYw==", - "license": "Apache-2.0", - "engines": { - "node": ">=18.0.0" - } - }, "node_modules/@babel/code-frame": { "version": "7.28.6", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.28.6.tgz", @@ -2075,586 +1289,6 @@ "dev": true, "license": "MIT" }, - "node_modules/@smithy/abort-controller": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-4.2.8.tgz", - "integrity": "sha512-peuVfkYHAmS5ybKxWcfraK7WBBP0J+rkfUcbHJJKQ4ir3UAUNQI+Y4Vt/PqSzGqgloJ5O1dk7+WzNL8wcCSXbw==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/config-resolver": { - "version": "4.4.6", - "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-4.4.6.tgz", - "integrity": "sha512-qJpzYC64kaj3S0fueiu3kXm8xPrR3PcXDPEgnaNMRn0EjNSZFoFjvbUp0YUDsRhN1CB90EnHJtbxWKevnH99UQ==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/node-config-provider": "^4.3.8", - "@smithy/types": "^4.12.0", - "@smithy/util-config-provider": "^4.2.0", - "@smithy/util-endpoints": "^3.2.8", - "@smithy/util-middleware": "^4.2.8", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/core": { - "version": "3.21.1", - "resolved": "https://registry.npmjs.org/@smithy/core/-/core-3.21.1.tgz", - "integrity": "sha512-NUH8R4O6FkN8HKMojzbGg/5pNjsfTjlMmeFclyPfPaXXUrbr5TzhWgbf7t92wfrpCHRgpjyz7ffASIS3wX28aA==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/middleware-serde": "^4.2.9", - "@smithy/protocol-http": "^5.3.8", - "@smithy/types": "^4.12.0", - "@smithy/util-base64": "^4.3.0", - "@smithy/util-body-length-browser": "^4.2.0", - "@smithy/util-middleware": "^4.2.8", - "@smithy/util-stream": "^4.5.10", - "@smithy/util-utf8": "^4.2.0", - "@smithy/uuid": "^1.1.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/credential-provider-imds": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-4.2.8.tgz", - "integrity": "sha512-FNT0xHS1c/CPN8upqbMFP83+ul5YgdisfCfkZ86Jh2NSmnqw/AJ6x5pEogVCTVvSm7j9MopRU89bmDelxuDMYw==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/node-config-provider": "^4.3.8", - "@smithy/property-provider": "^4.2.8", - "@smithy/types": "^4.12.0", - "@smithy/url-parser": "^4.2.8", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/fetch-http-handler": { - "version": "5.3.9", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-5.3.9.tgz", - "integrity": "sha512-I4UhmcTYXBrct03rwzQX1Y/iqQlzVQaPxWjCjula++5EmWq9YGBrx6bbGqluGc1f0XEfhSkiY4jhLgbsJUMKRA==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/protocol-http": "^5.3.8", - "@smithy/querystring-builder": "^4.2.8", - "@smithy/types": "^4.12.0", - "@smithy/util-base64": "^4.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/hash-node": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-4.2.8.tgz", - "integrity": "sha512-7ZIlPbmaDGxVoxErDZnuFG18WekhbA/g2/i97wGj+wUBeS6pcUeAym8u4BXh/75RXWhgIJhyC11hBzig6MljwA==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "@smithy/util-buffer-from": "^4.2.0", - "@smithy/util-utf8": "^4.2.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/invalid-dependency": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-4.2.8.tgz", - "integrity": "sha512-N9iozRybwAQ2dn9Fot9kI6/w9vos2oTXLhtK7ovGqwZjlOcxu6XhPlpLpC+INsxktqHinn5gS2DXDjDF2kG5sQ==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/is-array-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-4.2.0.tgz", - "integrity": "sha512-DZZZBvC7sjcYh4MazJSGiWMI2L7E0oCiRHREDzIxi/M2LY79/21iXt6aPLHge82wi5LsuRF5A06Ds3+0mlh6CQ==", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/middleware-content-length": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-4.2.8.tgz", - "integrity": "sha512-RO0jeoaYAB1qBRhfVyq0pMgBoUK34YEJxVxyjOWYZiOKOq2yMZ4MnVXMZCUDenpozHue207+9P5ilTV1zeda0A==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/protocol-http": "^5.3.8", - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/middleware-endpoint": { - "version": "4.4.11", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-4.4.11.tgz", - "integrity": "sha512-/WqsrycweGGfb9sSzME4CrsuayjJF6BueBmkKlcbeU5q18OhxRrvvKlmfw3tpDsK5ilx2XUJvoukwxHB0nHs/Q==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/core": "^3.21.1", - "@smithy/middleware-serde": "^4.2.9", - "@smithy/node-config-provider": "^4.3.8", - "@smithy/shared-ini-file-loader": "^4.4.3", - "@smithy/types": "^4.12.0", - "@smithy/url-parser": "^4.2.8", - "@smithy/util-middleware": "^4.2.8", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/middleware-retry": { - "version": "4.4.27", - "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-4.4.27.tgz", - "integrity": "sha512-xFUYCGRVsfgiN5EjsJJSzih9+yjStgMTCLANPlf0LVQkPDYCe0hz97qbdTZosFOiYlGBlHYityGRxrQ/hxhfVQ==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/node-config-provider": "^4.3.8", - "@smithy/protocol-http": "^5.3.8", - "@smithy/service-error-classification": "^4.2.8", - "@smithy/smithy-client": "^4.10.12", - "@smithy/types": "^4.12.0", - "@smithy/util-middleware": "^4.2.8", - "@smithy/util-retry": "^4.2.8", - "@smithy/uuid": "^1.1.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/middleware-serde": { - "version": "4.2.9", - "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-4.2.9.tgz", - "integrity": "sha512-eMNiej0u/snzDvlqRGSN3Vl0ESn3838+nKyVfF2FKNXFbi4SERYT6PR392D39iczngbqqGG0Jl1DlCnp7tBbXQ==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/protocol-http": "^5.3.8", - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/middleware-stack": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-4.2.8.tgz", - "integrity": "sha512-w6LCfOviTYQjBctOKSwy6A8FIkQy7ICvglrZFl6Bw4FmcQ1Z420fUtIhxaUZZshRe0VCq4kvDiPiXrPZAe8oRA==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/node-config-provider": { - "version": "4.3.8", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-4.3.8.tgz", - "integrity": "sha512-aFP1ai4lrbVlWjfpAfRSL8KFcnJQYfTl5QxLJXY32vghJrDuFyPZ6LtUL+JEGYiFRG1PfPLHLoxj107ulncLIg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/property-provider": "^4.2.8", - "@smithy/shared-ini-file-loader": "^4.4.3", - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/node-http-handler": { - "version": "4.4.8", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-4.4.8.tgz", - "integrity": "sha512-q9u+MSbJVIJ1QmJ4+1u+cERXkrhuILCBDsJUBAW1MPE6sFonbCNaegFuwW9ll8kh5UdyY3jOkoOGlc7BesoLpg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/abort-controller": "^4.2.8", - "@smithy/protocol-http": "^5.3.8", - "@smithy/querystring-builder": "^4.2.8", - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/property-provider": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-4.2.8.tgz", - "integrity": "sha512-EtCTbyIveCKeOXDSWSdze3k612yCPq1YbXsbqX3UHhkOSW8zKsM9NOJG5gTIya0vbY2DIaieG8pKo1rITHYL0w==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/protocol-http": { - "version": "5.3.8", - "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-5.3.8.tgz", - "integrity": "sha512-QNINVDhxpZ5QnP3aviNHQFlRogQZDfYlCkQT+7tJnErPQbDhysondEjhikuANxgMsZrkGeiAxXy4jguEGsDrWQ==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/querystring-builder": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-4.2.8.tgz", - "integrity": "sha512-Xr83r31+DrE8CP3MqPgMJl+pQlLLmOfiEUnoyAlGzzJIrEsbKsPy1hqH0qySaQm4oWrCBlUqRt+idEgunKB+iw==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "@smithy/util-uri-escape": "^4.2.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/querystring-parser": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-4.2.8.tgz", - "integrity": "sha512-vUurovluVy50CUlazOiXkPq40KGvGWSdmusa3130MwrR1UNnNgKAlj58wlOe61XSHRpUfIIh6cE0zZ8mzKaDPA==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/service-error-classification": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-4.2.8.tgz", - "integrity": "sha512-mZ5xddodpJhEt3RkCjbmUQuXUOaPNTkbMGR0bcS8FE0bJDLMZlhmpgrvPNCYglVw5rsYTpSnv19womw9WWXKQQ==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/shared-ini-file-loader": { - "version": "4.4.3", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-4.4.3.tgz", - "integrity": "sha512-DfQjxXQnzC5UbCUPeC3Ie8u+rIWZTvuDPAGU/BxzrOGhRvgUanaP68kDZA+jaT3ZI+djOf+4dERGlm9mWfFDrg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/signature-v4": { - "version": "5.3.8", - "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-5.3.8.tgz", - "integrity": "sha512-6A4vdGj7qKNRF16UIcO8HhHjKW27thsxYci+5r/uVRkdcBEkOEiY8OMPuydLX4QHSrJqGHPJzPRwwVTqbLZJhg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/is-array-buffer": "^4.2.0", - "@smithy/protocol-http": "^5.3.8", - "@smithy/types": "^4.12.0", - "@smithy/util-hex-encoding": "^4.2.0", - "@smithy/util-middleware": "^4.2.8", - "@smithy/util-uri-escape": "^4.2.0", - "@smithy/util-utf8": "^4.2.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/smithy-client": { - "version": "4.10.12", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-4.10.12.tgz", - "integrity": "sha512-VKO/HKoQ5OrSHW6AJUmEnUKeXI1/5LfCwO9cwyao7CmLvGnZeM1i36Lyful3LK1XU7HwTVieTqO1y2C/6t3qtA==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/core": "^3.21.1", - "@smithy/middleware-endpoint": "^4.4.11", - "@smithy/middleware-stack": "^4.2.8", - "@smithy/protocol-http": "^5.3.8", - "@smithy/types": "^4.12.0", - "@smithy/util-stream": "^4.5.10", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/types": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/@smithy/types/-/types-4.12.0.tgz", - "integrity": "sha512-9YcuJVTOBDjg9LWo23Qp0lTQ3D7fQsQtwle0jVfpbUHy9qBwCEgKuVH4FqFB3VYu0nwdHKiEMA+oXz7oV8X1kw==", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/url-parser": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-4.2.8.tgz", - "integrity": "sha512-NQho9U68TGMEU639YkXnVMV3GEFFULmmaWdlu1E9qzyIePOHsoSnagTGSDv1Zi8DCNN6btxOSdgmy5E/hsZwhA==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/querystring-parser": "^4.2.8", - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/util-base64": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/@smithy/util-base64/-/util-base64-4.3.0.tgz", - "integrity": "sha512-GkXZ59JfyxsIwNTWFnjmFEI8kZpRNIBfxKjv09+nkAWPt/4aGaEWMM04m4sxgNVWkbt2MdSvE3KF/PfX4nFedQ==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/util-buffer-from": "^4.2.0", - "@smithy/util-utf8": "^4.2.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/util-body-length-browser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@smithy/util-body-length-browser/-/util-body-length-browser-4.2.0.tgz", - "integrity": "sha512-Fkoh/I76szMKJnBXWPdFkQJl2r9SjPt3cMzLdOB6eJ4Pnpas8hVoWPYemX/peO0yrrvldgCUVJqOAjUrOLjbxg==", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/util-body-length-node": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@smithy/util-body-length-node/-/util-body-length-node-4.2.1.tgz", - "integrity": "sha512-h53dz/pISVrVrfxV1iqXlx5pRg3V2YWFcSQyPyXZRrZoZj4R4DeWRDo1a7dd3CPTcFi3kE+98tuNyD2axyZReA==", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/util-buffer-from": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-4.2.0.tgz", - "integrity": "sha512-kAY9hTKulTNevM2nlRtxAG2FQ3B2OR6QIrPY3zE5LqJy1oxzmgBGsHLWTcNhWXKchgA0WHW+mZkQrng/pgcCew==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/is-array-buffer": "^4.2.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/util-config-provider": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@smithy/util-config-provider/-/util-config-provider-4.2.0.tgz", - "integrity": "sha512-YEjpl6XJ36FTKmD+kRJJWYvrHeUvm5ykaUS5xK+6oXffQPHeEM4/nXlZPe+Wu0lsgRUcNZiliYNh/y7q9c2y6Q==", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/util-defaults-mode-browser": { - "version": "4.3.26", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.3.26.tgz", - "integrity": "sha512-vva0dzYUTgn7DdE0uaha10uEdAgmdLnNFowKFjpMm6p2R0XDk5FHPX3CBJLzWQkQXuEprsb0hGz9YwbicNWhjw==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/property-provider": "^4.2.8", - "@smithy/smithy-client": "^4.10.12", - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/util-defaults-mode-node": { - "version": "4.2.29", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.2.29.tgz", - "integrity": "sha512-c6D7IUBsZt/aNnTBHMTf+OVh+h/JcxUUgfTcIJaWRe6zhOum1X+pNKSZtZ+7fbOn5I99XVFtmrnXKv8yHHErTQ==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/config-resolver": "^4.4.6", - "@smithy/credential-provider-imds": "^4.2.8", - "@smithy/node-config-provider": "^4.3.8", - "@smithy/property-provider": "^4.2.8", - "@smithy/smithy-client": "^4.10.12", - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/util-endpoints": { - "version": "3.2.8", - "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-3.2.8.tgz", - "integrity": "sha512-8JaVTn3pBDkhZgHQ8R0epwWt+BqPSLCjdjXXusK1onwJlRuN69fbvSK66aIKKO7SwVFM6x2J2ox5X8pOaWcUEw==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/node-config-provider": "^4.3.8", - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/util-hex-encoding": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@smithy/util-hex-encoding/-/util-hex-encoding-4.2.0.tgz", - "integrity": "sha512-CCQBwJIvXMLKxVbO88IukazJD9a4kQ9ZN7/UMGBjBcJYvatpWk+9g870El4cB8/EJxfe+k+y0GmR9CAzkF+Nbw==", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/util-middleware": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-4.2.8.tgz", - "integrity": "sha512-PMqfeJxLcNPMDgvPbbLl/2Vpin+luxqTGPpW3NAQVLbRrFRzTa4rNAASYeIGjRV9Ytuhzny39SpyU04EQreF+A==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/util-retry": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-4.2.8.tgz", - "integrity": "sha512-CfJqwvoRY0kTGe5AkQokpURNCT1u/MkRzMTASWMPPo2hNSnKtF1D45dQl3DE2LKLr4m+PW9mCeBMJr5mCAVThg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/service-error-classification": "^4.2.8", - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/util-stream": { - "version": "4.5.10", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-4.5.10.tgz", - "integrity": "sha512-jbqemy51UFSZSp2y0ZmRfckmrzuKww95zT9BYMmuJ8v3altGcqjwoV1tzpOwuHaKrwQrCjIzOib499ymr2f98g==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/fetch-http-handler": "^5.3.9", - "@smithy/node-http-handler": "^4.4.8", - "@smithy/types": "^4.12.0", - "@smithy/util-base64": "^4.3.0", - "@smithy/util-buffer-from": "^4.2.0", - "@smithy/util-hex-encoding": "^4.2.0", - "@smithy/util-utf8": "^4.2.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/util-uri-escape": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@smithy/util-uri-escape/-/util-uri-escape-4.2.0.tgz", - "integrity": "sha512-igZpCKV9+E/Mzrpq6YacdTQ0qTiLm85gD6N/IrmyDvQFA4UnU3d5g3m8tMT/6zG/vVkWSU+VxeUyGonL62DuxA==", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/util-utf8": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-4.2.0.tgz", - "integrity": "sha512-zBPfuzoI8xyBtR2P6WQj63Rz8i3AmfAaJLuNG8dWsfvPe8lO4aCPYLn879mEgHndZH1zQ2oXmG8O1GGzzaoZiw==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/util-buffer-from": "^4.2.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@smithy/uuid": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@smithy/uuid/-/uuid-1.1.0.tgz", - "integrity": "sha512-4aUIteuyxtBUhVdiQqcDhKFitwfd9hqoSDYY2KRXiWtgoWJ9Bmise+KfEPDiVHWeJepvF8xJO9/9+WDIciMFFw==", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, "node_modules/@swc/helpers": { "version": "0.5.15", "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz", @@ -2971,21 +1605,12 @@ "version": "20.19.30", "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.30.tgz", "integrity": "sha512-WJtwWJu7UdlvzEAUm484QNg5eAoq5QR08KDNx7g45Usrs2NtOPiX8ugDqmKdXkyL03rBqU5dYNYVQetEpBHq2g==", + "dev": true, "license": "MIT", "dependencies": { "undici-types": "~6.21.0" } }, - "node_modules/@types/nodemailer": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/@types/nodemailer/-/nodemailer-7.0.5.tgz", - "integrity": "sha512-7WtR4MFJUNN2UFy0NIowBRJswj5KXjXDhlZY43Hmots5eGu5q/dTeFd/I6GgJA/qj3RqO6dDy4SvfcV3fOVeIA==", - "license": "MIT", - "dependencies": { - "@aws-sdk/client-sesv2": "^3.839.0", - "@types/node": "*" - } - }, "node_modules/@types/react": { "version": "19.2.9", "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.9.tgz", @@ -3854,12 +2479,6 @@ "baseline-browser-mapping": "dist/cli.js" } }, - "node_modules/bowser": { - "version": "2.13.1", - "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.13.1.tgz", - "integrity": "sha512-OHawaAbjwx6rqICCKgSG0SAnT05bzd7ppyKLVUITZpANBaaMFBAsaNkto3LoQ31tyFP5kNujE8Cdx85G9VzOkw==", - "license": "MIT" - }, "node_modules/brace-expansion": { "version": "1.1.12", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", @@ -4959,24 +3578,6 @@ "dev": true, "license": "MIT" }, - "node_modules/fast-xml-parser": { - "version": "5.2.5", - "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.2.5.tgz", - "integrity": "sha512-pfX9uG9Ki0yekDHx2SiuRIyFdyAr1kMIMitPvb0YBo8SUfKvia7w7FIyd/l6av85pFYRhZscS75MwMnbvY+hcQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/NaturalIntelligence" - } - ], - "license": "MIT", - "dependencies": { - "strnum": "^2.1.0" - }, - "bin": { - "fxparser": "src/cli/cli.js" - } - }, "node_modules/fastq": { "version": "1.20.1", "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz", @@ -6576,15 +5177,6 @@ "dev": true, "license": "MIT" }, - "node_modules/nodemailer": { - "version": "7.0.12", - "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-7.0.12.tgz", - "integrity": "sha512-H+rnK5bX2Pi/6ms3sN4/jRQvYSMltV6vqup/0SFOrxYYY/qoNvhXPlYq3e+Pm9RFJRwrMGbMIwi81M4dxpomhA==", - "license": "MIT-0", - "engines": { - "node": ">=6.0.0" - } - }, "node_modules/object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", @@ -7539,18 +6131,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/strnum": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/strnum/-/strnum-2.1.2.tgz", - "integrity": "sha512-l63NF9y/cLROq/yqKXSLtcMeeyOfnSQlfMSlzFt/K73oIaD8DGaQWd7Z34X9GPiKqP5rbSh84Hl4bOlLcjiSrQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/NaturalIntelligence" - } - ], - "license": "MIT" - }, "node_modules/styled-jsx": { "version": "5.1.6", "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz", @@ -7903,6 +6483,7 @@ "version": "6.21.0", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "dev": true, "license": "MIT" }, "node_modules/unrs-resolver": { diff --git a/package.json b/package.json index 793f9b7..1508360 100644 --- a/package.json +++ b/package.json @@ -13,14 +13,12 @@ "dependencies": { "@next/third-parties": "^16.2.1", "@radix-ui/react-slot": "^1.2.4", - "@types/nodemailer": "^7.0.5", "@types/react-google-recaptcha": "^2.1.9", "class-variance-authority": "^0.7.1", "clsx": "^2.1.1", "framer-motion": "^12.29.2", "lucide-react": "^0.563.0", "next": "16.1.4", - "nodemailer": "^7.0.12", "react": "19.2.3", "react-dom": "19.2.3", "react-google-recaptcha": "^3.1.0", diff --git a/public/images/Mercedes Vito_.JPG b/public/images/Mercedes Vito_.JPG index 8267a5d..c62b54f 100644 Binary files a/public/images/Mercedes Vito_.JPG and b/public/images/Mercedes Vito_.JPG differ diff --git a/public/images/gallery/minibus/Új matricás Trafic (1).JPG b/public/images/gallery/minibus/Új matricás Trafic (1).JPG index 2ed3af8..35b99ed 100644 Binary files a/public/images/gallery/minibus/Új matricás Trafic (1).JPG and b/public/images/gallery/minibus/Új matricás Trafic (1).JPG differ diff --git a/public/images/gallery/personal/Scenic_1.jpg b/public/images/gallery/personal/Scenic_1.jpg index 99bf48c..485d0d2 100644 Binary files a/public/images/gallery/personal/Scenic_1.jpg and b/public/images/gallery/personal/Scenic_1.jpg differ diff --git a/public/images/gallery/personal/Skoda Enyaq_1.JPG b/public/images/gallery/personal/Skoda Enyaq_1.JPG index 2763427..8508c37 100644 Binary files a/public/images/gallery/personal/Skoda Enyaq_1.JPG and b/public/images/gallery/personal/Skoda Enyaq_1.JPG differ diff --git a/public/images/gallery/personal/Skoda SuperB-inside.jpeg b/public/images/gallery/personal/Skoda SuperB-inside.jpeg index b1d366d..1fe6f36 100644 Binary files a/public/images/gallery/personal/Skoda SuperB-inside.jpeg and b/public/images/gallery/personal/Skoda SuperB-inside.jpeg differ diff --git a/public/images/gallery/personal/Skoda SuperB.jpeg b/public/images/gallery/personal/Skoda SuperB.jpeg index a90d9b6..5df4843 100644 Binary files a/public/images/gallery/personal/Skoda SuperB.jpeg and b/public/images/gallery/personal/Skoda SuperB.jpeg differ diff --git a/public/images/gallery/vip/Mercedes Vito_belső.jpeg b/public/images/gallery/vip/Mercedes Vito_belső.jpeg index 7f6cd84..82a23ba 100644 Binary files a/public/images/gallery/vip/Mercedes Vito_belső.jpeg and b/public/images/gallery/vip/Mercedes Vito_belső.jpeg differ diff --git a/public/images/gallery/vip/Mercedes-V-calss.JPG b/public/images/gallery/vip/Mercedes-V-calss.JPG index aff8875..d229691 100644 Binary files a/public/images/gallery/vip/Mercedes-V-calss.JPG and b/public/images/gallery/vip/Mercedes-V-calss.JPG differ diff --git a/public/images/gallery/vip/V-class belső.jpg b/public/images/gallery/vip/V-class belső.jpg index 99b0bca..a3e3020 100644 Binary files a/public/images/gallery/vip/V-class belső.jpg and b/public/images/gallery/vip/V-class belső.jpg differ diff --git a/public/images/gallery/vip/V-class külső.JPG b/public/images/gallery/vip/V-class külső.JPG index 00b3002..b27164c 100644 Binary files a/public/images/gallery/vip/V-class külső.JPG and b/public/images/gallery/vip/V-class külső.JPG differ diff --git a/public/images/gallery/vip/vito.jpg b/public/images/gallery/vip/vito.jpg index dea6069..7b472de 100644 Binary files a/public/images/gallery/vip/vito.jpg and b/public/images/gallery/vip/vito.jpg differ