diff --git a/components/footer.tsx b/components/footer.tsx index 8362239..50fca92 100644 --- a/components/footer.tsx +++ b/components/footer.tsx @@ -3,19 +3,45 @@ import Image from "next/image" import { Button } from "@/components/ui/button" import { useLanguage } from "@/lib/language-context" -import ratingsHu from "@/ratings_hu.json" -import ratingsEn from "@/ratings_en.json" import { useEffect, useState } from "react" export default function Footer() { const { t, language } = useLanguage() const year = new Date().getFullYear().toString() - const ratingsData = language === "hu" ? ratingsHu : ratingsEn - const ratingValue = ratingsData?.data?.[0]?.rating ?? 0 + + const [ratingsData, setRatingsData] = useState(null) + const [featuredReviews, setFeaturedReviews] = useState([]) + + useEffect(() => { + const fetchRatings = async () => { + try { + const response = await fetch(`/ratings_${language}.json`) + const data = await response.json() + setRatingsData(data) + + const reviews = data?.data?.[0]?.reviews ?? [] + if (reviews.length === 0) { + setFeaturedReviews([]) + return + } + if (reviews.length <= 2) { + setFeaturedReviews(reviews) + return + } + const first = Math.floor(Math.random() * reviews.length) + let second = Math.floor(Math.random() * (reviews.length - 1)) + if (second >= first) second += 1 + setFeaturedReviews([reviews[first], reviews[second]]) + } catch (error) { + console.error("Error fetching ratings:", error) + } + } + fetchRatings() + }, [language]) + + const ratingValue = ratingsData?.data?.[0]?.rating ?? 5.0 const ratingCount = ratingsData?.data?.[0]?.userRatingCount ?? 0 const ratingPercent = Math.max(0, Math.min(100, (ratingValue / 5) * 100)) - const reviews = ratingsData?.data?.[0]?.reviews ?? [] - const [featuredReviews, setFeaturedReviews] = useState(reviews.slice(0, 2)) const reviewUrl = "https://g.page/r/CRltVP4lAy7lEBM/review" const reviewPreviewText = (text: string) => (text.length > 160 ? `${text.slice(0, 160).trimEnd()}...` : text) const reviewStars = (value: number) => { @@ -23,21 +49,6 @@ export default function Footer() { return "★".repeat(safe) + "☆".repeat(5 - safe) } - useEffect(() => { - if (!reviews.length) { - setFeaturedReviews([]) - return - } - if (reviews.length <= 2) { - setFeaturedReviews(reviews) - return - } - const first = Math.floor(Math.random() * reviews.length) - let second = Math.floor(Math.random() * (reviews.length - 1)) - if (second >= first) second += 1 - setFeaturedReviews([reviews[first], reviews[second]]) - }, [language, reviews.length]) - return (
diff --git a/components/hero.tsx b/components/hero.tsx index f26a5e0..b87d898 100644 --- a/components/hero.tsx +++ b/components/hero.tsx @@ -6,25 +6,36 @@ import { Star, Clock, Users, ShieldCheck } from "lucide-react" import Link from "next/link" import { useLanguage } from "@/lib/language-context" import Image from "next/image" -import ratingsHu from "@/ratings_hu.json" -import ratingsEn from "@/ratings_en.json" import { useEffect, useMemo, useState } from "react" const Hero = () => { const { t, language } = useLanguage() - const ratingsData = language === "hu" ? ratingsHu : ratingsEn - const ratingValue = ratingsData?.data?.[0]?.rating ?? 0 - const ratingCount = ratingsData?.data?.[0]?.userRatingCount ?? 0 - const ratingPercent = Math.max(0, Math.min(100, (ratingValue / 5) * 100)) - const reviews = ratingsData?.data?.[0]?.reviews ?? [] - const [featuredReview, setFeaturedReview] = useState(reviews[0] ?? null) + const [ratingsData, setRatingsData] = useState(null) + const [featuredReview, setFeaturedReview] = useState(null) useEffect(() => { - if (!reviews.length) return - const randomIndex = Math.floor(Math.random() * reviews.length) - setFeaturedReview(reviews[randomIndex]) - }, [language, reviews.length]) + const fetchRatings = async () => { + try { + const response = await fetch(`/ratings_${language}.json`) + const data = await response.json() + setRatingsData(data) + + const reviews = data?.data?.[0]?.reviews ?? [] + if (reviews.length > 0) { + const randomIndex = Math.floor(Math.random() * reviews.length) + setFeaturedReview(reviews[randomIndex]) + } + } catch (error) { + console.error("Error fetching ratings:", error) + } + } + fetchRatings() + }, [language]) + + const ratingValue = ratingsData?.data?.[0]?.rating ?? 5.0 + const ratingCount = ratingsData?.data?.[0]?.userRatingCount ?? 0 + const ratingPercent = Math.max(0, Math.min(100, (ratingValue / 5) * 100)) const reviewAuthor = featuredReview?.author ?? t.hero.cards.reviewAuthor const reviewInitials = useMemo(() => { @@ -33,7 +44,7 @@ const Hero = () => { .split(" ") .filter(Boolean) .slice(0, 2) - .map((part) => part[0]?.toUpperCase()) + .map((part: string) => part[0]?.toUpperCase()) .join("") return initials || t.hero.cards.reviewInitial }, [reviewAuthor, t.hero.cards.reviewInitial]) diff --git a/out/404.html b/out/404.html index 36945b0..4694592 100644 --- a/out/404.html +++ b/out/404.html @@ -1 +1 @@ -404: This page could not be found.SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!

404

This page could not be found.

\ No newline at end of file +404: This page could not be found.SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!

404

This page could not be found.

\ No newline at end of file diff --git a/out/404/index.html b/out/404/index.html index 36945b0..4694592 100644 --- a/out/404/index.html +++ b/out/404/index.html @@ -1 +1 @@ -404: This page could not be found.SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!

404

This page could not be found.

\ No newline at end of file +404: This page could not be found.SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!

404

This page could not be found.

\ No newline at end of file diff --git a/out/__next.__PAGE__.txt b/out/__next.__PAGE__.txt index f9ba776..487e758 100644 --- a/out/__next.__PAGE__.txt +++ b/out/__next.__PAGE__.txt @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" 2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"] -3:I[31713,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/5fec119c1fb474e1.js","/_next/static/chunks/395811fdad4290d6.js"],"default"] +3:I[31713,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/4a1f084bd07d6520.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"] 6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/5fec119c1fb474e1.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/395811fdad4290d6.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/4a1f084bd07d6520.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/9d04f56e53f43e3d.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 d7f3865..0579217 100644 --- a/out/__next._full.txt +++ b/out/__next._full.txt @@ -4,15 +4,15 @@ 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] 6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"] -7:I[31713,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/5fec119c1fb474e1.js","/_next/static/chunks/395811fdad4290d6.js"],"default"] +7:I[31713,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/4a1f084bd07d6520.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"] a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] b:"$Sreact.suspense" d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ViewportBoundary"] f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 11:I[68027,[],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"dlUmvSkzMXWqNPc7KK_BI","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/b82ba4ad59b06105.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/5fec119c1fb474e1.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/395811fdad4290d6.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} +0:{"P":null,"b":"Pj4xFqf2HT4fIIHVuAQ_W","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0ac639d69cda9244.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/4a1f084bd07d6520.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/9d04f56e53f43e3d.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} 8:{} 9:"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params" e:[["$","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 526898f..a799f50 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":"dlUmvSkzMXWqNPc7KK_BI","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":"icon","href":"/favicon.ico?favicon.86cc8906.ico","sizes":"16x16","type":"image/x-icon"}],["$","$L5","4",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","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":"icon","href":"/favicon.ico?favicon.86cc8906.ico","sizes":"16x16","type":"image/x-icon"}],["$","$L5","4",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} diff --git a/out/__next._index.txt b/out/__next._index.txt index 7ae2f9b..5cc6e61 100644 --- a/out/__next._index.txt +++ b/out/__next._index.txt @@ -3,5 +3,5 @@ 3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/b82ba4ad59b06105.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$L5",null,{}]]}]}]}]]}],"loading":null,"isPartial":false} +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0ac639d69cda9244.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$L5",null,{}]]}]}]}]]}],"loading":null,"isPartial":false} diff --git a/out/__next._tree.txt b/out/__next._tree.txt index ac6ffd2..11fe9b9 100644 --- a/out/__next._tree.txt +++ b/out/__next._tree.txt @@ -1,3 +1,3 @@ -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","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":"Pj4xFqf2HT4fIIHVuAQ_W","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/dlUmvSkzMXWqNPc7KK_BI/_buildManifest.js b/out/_next/static/Pj4xFqf2HT4fIIHVuAQ_W/_buildManifest.js similarity index 100% rename from out/_next/static/dlUmvSkzMXWqNPc7KK_BI/_buildManifest.js rename to out/_next/static/Pj4xFqf2HT4fIIHVuAQ_W/_buildManifest.js diff --git a/out/_next/static/dlUmvSkzMXWqNPc7KK_BI/_clientMiddlewareManifest.json b/out/_next/static/Pj4xFqf2HT4fIIHVuAQ_W/_clientMiddlewareManifest.json similarity index 100% rename from out/_next/static/dlUmvSkzMXWqNPc7KK_BI/_clientMiddlewareManifest.json rename to out/_next/static/Pj4xFqf2HT4fIIHVuAQ_W/_clientMiddlewareManifest.json diff --git a/out/_next/static/dlUmvSkzMXWqNPc7KK_BI/_ssgManifest.js b/out/_next/static/Pj4xFqf2HT4fIIHVuAQ_W/_ssgManifest.js similarity index 100% rename from out/_next/static/dlUmvSkzMXWqNPc7KK_BI/_ssgManifest.js rename to out/_next/static/Pj4xFqf2HT4fIIHVuAQ_W/_ssgManifest.js diff --git a/out/_next/static/chunks/0a68385b73467ee7.js b/out/_next/static/chunks/0a68385b73467ee7.js new file mode 100644 index 0000000..a5dbab2 --- /dev/null +++ b/out/_next/static/chunks/0a68385b73467ee7.js @@ -0,0 +1 @@ +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,95468,e=>{"use strict";let s=(0,e.i(75254).default)("circle-check",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);e.s(["CheckCircle2",()=>s],95468)},83157,e=>{"use strict";let s=(0,e.i(75254).default)("facebook",[["path",{d:"M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z",key:"1jg4f8"}]]);e.s(["Facebook",()=>s],83157)},33525,(e,s,a)=>{"use strict";Object.defineProperty(a,"__esModule",{value:!0}),Object.defineProperty(a,"warnOnce",{enumerable:!0,get:function(){return t}});let t=e=>{}},95010,e=>{"use strict";var s=e.i(43476),a=e.i(46932),t=e.i(47163);e.s(["default",0,({className:e,children:i})=>(0,s.jsx)(a.motion.main,{className:(0,t.cn)(e),initial:{opacity:0,y:24},animate:{opacity:1,y:0},transition:{duration:.7,ease:[.16,1,.3,1]},children:i})])},70065,e=>{"use strict";var s=e.i(43476),a=e.i(71645),t=e.i(47163);let i=a.forwardRef(({className:e,...a},i)=>(0,s.jsx)("div",{ref:i,className:(0,t.cn)("rounded-3xl border bg-card text-card-foreground shadow-sm",e),...a}));i.displayName="Card",a.forwardRef(({className:e,...a},i)=>(0,s.jsx)("div",{ref:i,className:(0,t.cn)("flex flex-col space-y-1.5 p-6",e),...a})).displayName="CardHeader",a.forwardRef(({className:e,...a},i)=>(0,s.jsx)("h3",{ref:i,className:(0,t.cn)("text-2xl font-semibold leading-none tracking-tight",e),...a})).displayName="CardTitle",a.forwardRef(({className:e,...a},i)=>(0,s.jsx)("p",{ref:i,className:(0,t.cn)("text-sm text-muted-foreground",e),...a})).displayName="CardDescription",a.forwardRef(({className:e,...a},i)=>(0,s.jsx)("div",{ref:i,className:(0,t.cn)("p-6 pt-0",e),...a})).displayName="CardContent",a.forwardRef(({className:e,...a},i)=>(0,s.jsx)("div",{ref:i,className:(0,t.cn)("flex items-center p-6 pt-0",e),...a})).displayName="CardFooter",e.s(["Card",()=>i])},3116,e=>{"use strict";let s=(0,e.i(75254).default)("clock",[["path",{d:"M12 6v6l4 2",key:"mmk7yg"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);e.s(["Clock",()=>s],3116)},43432,e=>{"use strict";let s=(0,e.i(75254).default)("phone",[["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",key:"9njp5v"}]]);e.s(["Phone",()=>s],43432)},98919,46897,e=>{"use strict";var s=e.i(75254);let a=(0,s.default)("shield",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}]]);e.s(["Shield",()=>a],98919);let t=(0,s.default)("map-pin",[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}]]);e.s(["MapPin",()=>t],46897)},3339,e=>{"use strict";var s=e.i(43476),a=e.i(63780),t=e.i(76841),i=e.i(95010),r=e.i(70065),c=e.i(71689),l=e.i(95468),d=e.i(83157),n=e.i(43432);let o=(0,e.i(75254).default)("sparkles",[["path",{d:"M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z",key:"1s2grr"}],["path",{d:"M20 2v4",key:"1rf3ol"}],["path",{d:"M22 4h-4",key:"gwowj6"}],["circle",{cx:"4",cy:"20",r:"2",key:"6kqj1y"}]]);var m=e.i(98919),x=e.i(3116),p=e.i(46897),g=e.i(22016),h=e.i(50661);function u(){let{t:e}=(0,h.useLanguage)(),u=[{unique:e.servicesPage.packages.classic.unique,name:e.servicesPage.packages.classic.title,desc:e.servicesPage.packages.classic.desc,toAirport:e.servicesPage.packages.classic.toAirport,toCity:e.servicesPage.packages.classic.toCity},{unique:e.servicesPage.packages.express.unique,name:e.servicesPage.packages.express.title,desc:e.servicesPage.packages.express.desc,toAirport:e.servicesPage.packages.express.toAirport,toCity:e.servicesPage.packages.express.toCity},{unique:e.servicesPage.packages.private.unique,name:e.servicesPage.packages.private.title,desc:e.servicesPage.packages.private.desc,toAirport:e.servicesPage.packages.private.toAirport,toCity:e.servicesPage.packages.private.toCity},{unique:e.servicesPage.packages.family.unique,name:e.servicesPage.packages.family.title,desc:e.servicesPage.packages.family.desc,toAirport:e.servicesPage.packages.family.toAirport,toCity:e.servicesPage.packages.family.toCity},{unique:e.servicesPage.packages.bigFamily.unique,name:e.servicesPage.packages.bigFamily.title,desc:e.servicesPage.packages.bigFamily.desc,toAirport:e.servicesPage.packages.bigFamily.toAirport,toCity:e.servicesPage.packages.bigFamily.toCity}];return(0,s.jsxs)(i.default,{className:"relative min-h-screen bg-slate-50",children:[(0,s.jsx)(a.default,{darkMode:!1}),(0,s.jsxs)("div",{className:"absolute md:fixed inset-0 pointer-events-none -z-10 overflow-hidden",children:[(0,s.jsx)("div",{className:"absolute -top-24 -right-24 w-[420px] h-[420px] bg-purple-200 rounded-full blur-3xl opacity-30 animate-blob"}),(0,s.jsx)("div",{className:"absolute top-1/2 -left-20 w-[360px] h-[360px] bg-blue-200 rounded-full blur-3xl opacity-30 animate-blob animation-delay-2000"}),(0,s.jsx)("div",{className:"absolute bottom-0 right-1/3 w-[280px] h-[280px] bg-pink-100 rounded-full blur-3xl opacity-30 animate-blob animation-delay-4000"})]}),(0,s.jsxs)("section",{className:"relative pt-32 pb-20 overflow-hidden",children:[(0,s.jsx)("div",{className:"absolute inset-0 -z-10 bg-[#fafaf9]"}),(0,s.jsx)("div",{className:"absolute bottom-0 left-0 w-full h-[90px] bg-white transform -skew-y-2 origin-bottom-left -z-10"}),(0,s.jsxs)("div",{className:"max-w-7xl mx-auto px-6",children:[(0,s.jsxs)(g.default,{href:"/",className:"inline-flex items-center text-slate-400 hover:text-primary mb-10 transition-colors group",children:[(0,s.jsx)("div",{className:"bg-slate-100 p-2 rounded-full mr-3 group-hover:bg-primary/10 transition-colors",children:(0,s.jsx)(c.ArrowLeft,{className:"w-4 h-4"})}),(0,s.jsx)("span",{className:"text-[10px] font-black uppercase tracking-[0.3em]",children:e.servicesPage.back})]}),(0,s.jsxs)("div",{className:"space-y-8 max-w-4xl",children:[(0,s.jsxs)("h1",{className:"text-6xl md:text-9xl font-black uppercase tracking-tighter leading-[0.85] text-slate-900",children:[e.servicesPage.title,(0,s.jsx)("br",{}),(0,s.jsx)("span",{className:"text-primary italic",children:e.servicesPage.titleAccent})]}),(0,s.jsx)("p",{className:"text-lg md:text-2xl text-slate-500 leading-relaxed font-medium",children:e.servicesPage.description})]})]})]}),(0,s.jsx)("section",{className:"py-16",children:(0,s.jsx)("div",{className:"max-w-7xl mx-auto px-6",children:(0,s.jsxs)("div",{className:"grid grid-cols-1 lg:grid-cols-3 gap-10",children:[(0,s.jsxs)("div",{className:"lg:col-span-2 space-y-8",children:[(0,s.jsxs)(r.Card,{className:"rounded-[3rem] border-none shadow-2xl bg-white overflow-hidden",children:[(0,s.jsx)("div",{className:"bg-gradient-to-r from-primary to-secondary px-8 py-6",children:(0,s.jsxs)("div",{className:"flex items-center gap-3 text-white",children:[(0,s.jsx)(o,{className:"w-5 h-5"}),(0,s.jsx)("h2",{className:"text-sm font-black uppercase tracking-[0.3em]",children:e.servicesPage.commonFeatures.title})]})}),(0,s.jsxs)("div",{className:"p-8 space-y-6",children:[(0,s.jsxs)("div",{className:"grid md:grid-cols-3 gap-6 border-b border-slate-100 pb-6",children:[(0,s.jsx)("div",{className:"text-[10px] font-black uppercase tracking-[0.3em] text-primary",children:e.servicesPage.commonFeatures.toAirport}),(0,s.jsx)("div",{className:"md:col-span-2 text-slate-500 text-sm leading-relaxed font-medium",children:e.servicesPage.commonFeatures.toAirportDesc})]}),(0,s.jsxs)("div",{className:"grid md:grid-cols-3 gap-6",children:[(0,s.jsx)("div",{className:"text-[10px] font-black uppercase tracking-[0.3em] text-primary",children:e.servicesPage.commonFeatures.toCity}),(0,s.jsx)("div",{className:"md:col-span-2 text-slate-500 text-sm leading-relaxed font-medium",children:e.servicesPage.commonFeatures.toCityDesc})]})]})]}),(0,s.jsx)("div",{className:"grid grid-cols-1 gap-6",children:u.map((a,t)=>(0,s.jsx)(r.Card,{className:"rounded-[3rem] border-none shadow-xl bg-white overflow-hidden group",children:(0,s.jsxs)("div",{className:"flex flex-col md:flex-row",children:[(0,s.jsxs)("div",{className:"md:w-1/3 bg-slate-900 text-white p-8",children:[(0,s.jsx)("p",{className:"text-[10px] font-black uppercase tracking-[0.35em] text-white/60",children:a.unique}),(0,s.jsx)("h3",{className:"text-2xl font-black uppercase tracking-tight mt-3",children:a.name})]}),(0,s.jsxs)("div",{className:"md:w-2/3 p-8 space-y-6",children:[(0,s.jsx)("p",{className:"text-slate-500 text-sm leading-relaxed font-medium",children:a.desc}),(0,s.jsxs)("div",{className:"grid md:grid-cols-2 gap-6",children:[(0,s.jsxs)("div",{className:"rounded-[2rem] bg-slate-50 p-5 border border-slate-100",children:[(0,s.jsxs)("div",{className:"flex items-center gap-3 mb-3",children:[(0,s.jsx)(p.MapPin,{className:"w-4 h-4 text-primary"}),(0,s.jsx)("span",{className:"text-[10px] font-black uppercase tracking-[0.3em] text-slate-400",children:e.servicesPage.commonFeatures.toAirport})]}),(0,s.jsx)("p",{className:"text-slate-600 text-sm leading-relaxed font-medium",children:a.toAirport})]}),(0,s.jsxs)("div",{className:"rounded-[2rem] bg-slate-50 p-5 border border-slate-100",children:[(0,s.jsxs)("div",{className:"flex items-center gap-3 mb-3",children:[(0,s.jsx)(x.Clock,{className:"w-4 h-4 text-secondary"}),(0,s.jsx)("span",{className:"text-[10px] font-black uppercase tracking-[0.3em] text-slate-400",children:e.servicesPage.commonFeatures.toCity})]}),(0,s.jsx)("p",{className:"text-slate-600 text-sm leading-relaxed font-medium",children:a.toCity})]})]})]})]})},t))})]}),(0,s.jsxs)("div",{className:"space-y-8",children:[(0,s.jsxs)(r.Card,{className:"rounded-[3rem] border-none shadow-2xl bg-white overflow-hidden",children:[(0,s.jsx)("div",{className:"bg-slate-900 px-8 py-6",children:(0,s.jsx)("h2",{className:"text-white text-sm font-black uppercase tracking-[0.3em]",children:e.servicesPage.whyUs.title})}),(0,s.jsx)("div",{className:"p-8 space-y-4",children:e.servicesPage.whyUs.items.map((e,a)=>(0,s.jsxs)("div",{className:"flex items-start gap-3",children:[(0,s.jsx)(l.CheckCircle2,{className:"w-4 h-4 text-primary mt-1"}),(0,s.jsx)("span",{className:"text-slate-600 text-sm leading-relaxed font-medium",children:e})]},a))})]}),(0,s.jsxs)(r.Card,{className:"rounded-[3rem] border-none shadow-2xl bg-white overflow-hidden",children:[(0,s.jsx)("div",{className:"bg-gradient-to-r from-secondary to-primary px-8 py-6",children:(0,s.jsx)("h2",{className:"text-white text-sm font-black uppercase tracking-[0.3em]",children:e.servicesPage.freeOfCharge.title})}),(0,s.jsx)("div",{className:"p-8 space-y-4",children:e.servicesPage.freeOfCharge.items.map((e,a)=>(0,s.jsxs)("div",{className:"flex items-start gap-3",children:[(0,s.jsx)(m.Shield,{className:"w-4 h-4 text-secondary mt-1"}),(0,s.jsx)("span",{className:"text-slate-600 text-sm leading-relaxed font-medium",children:e})]},a))})]}),(0,s.jsxs)(r.Card,{className:"rounded-[3rem] border-none shadow-2xl bg-white overflow-hidden",children:[(0,s.jsx)("div",{className:"bg-slate-900 px-8 py-6",children:(0,s.jsx)("h2",{className:"text-white text-sm font-black uppercase tracking-[0.3em]",children:e.servicesPage.discounts.title})}),(0,s.jsxs)("div",{className:"p-8 space-y-6",children:[(0,s.jsxs)("p",{className:"text-slate-600 text-sm leading-relaxed font-medium",children:[e.servicesPage.discounts.fb," ",(0,s.jsx)(g.default,{href:"/akciok/facebook-google",className:"text-primary font-black hover:underline",children:e.servicesPage.discounts.fbLink})]}),(0,s.jsxs)("div",{className:"flex items-center justify-between rounded-[2rem] bg-slate-50 border border-slate-100 p-4",children:[(0,s.jsx)("div",{className:"text-[10px] font-black uppercase tracking-[0.3em] text-slate-400",children:e.servicesPage.discounts.fbLink}),(0,s.jsx)(g.default,{href:"/akciok/facebook-google",className:"bg-[#4D69A1] p-3 rounded-2xl hover:scale-105 transition-transform",children:(0,s.jsx)(d.Facebook,{className:"text-white w-6 h-6 fill-white"})})]}),(0,s.jsx)("div",{className:"rounded-[2rem] bg-slate-900 text-white p-5",children:(0,s.jsxs)("p",{className:"text-xs leading-relaxed",children:[(0,s.jsxs)("span",{className:"font-black uppercase tracking-wide text-primary",children:[e.servicesPage.discounts.loyalty.split(":")[0],":"]})," ",e.servicesPage.discounts.loyalty.split(":")[1]]})})]})]}),(0,s.jsxs)(r.Card,{className:"rounded-[3rem] border-none shadow-2xl bg-slate-900 text-white p-6 flex items-center gap-4",children:[(0,s.jsx)("div",{className:"bg-primary p-3 rounded-2xl shadow-lg",children:(0,s.jsx)(n.Phone,{className:"w-6 h-6 text-white"})}),(0,s.jsxs)("div",{children:[(0,s.jsx)("p",{className:"text-[10px] font-black text-white/50 uppercase tracking-[0.3em]",children:e.contactPage.info.hotlineShort}),(0,s.jsx)("p",{className:"text-lg font-black",children:e.common.phone})]})]})]})]})})}),(0,s.jsx)(t.default,{})]})}e.s(["default",()=>u],3339)}]); \ No newline at end of file diff --git a/out/_next/static/chunks/0ac639d69cda9244.css b/out/_next/static/chunks/0ac639d69cda9244.css new file mode 100644 index 0000000..7b2ddcc --- /dev/null +++ b/out/_next/static/chunks/0ac639d69cda9244.css @@ -0,0 +1,2 @@ +@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(../media/2c55a0e60120577a-s.2a48534a.woff2)format("woff2");unicode-range:U+460-52F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(../media/9c72aa0f40e4eef8-s.18a48cbc.woff2)format("woff2");unicode-range:U+301,U+400-45F,U+490-491,U+4B0-4B1,U+2116}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(../media/ad66f9afd8947f86-s.7a40eb73.woff2)format("woff2");unicode-range:U+1F??}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(../media/5476f68d60460930-s.c995e352.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(../media/2bbe8d2671613f1f-s.76dcb0b2.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(../media/1bffadaabf893a1e-s.7cd81963.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(../media/83afe278b6a6bb3c-s.p.3a6ba036.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Inter Fallback;src:local(Arial);ascent-override:90.44%;descent-override:22.52%;line-gap-override:0.0%;size-adjust:107.12%}.inter_fe8b9d92-module__LINzvG__className{font-family:Inter,Inter Fallback;font-style:normal}.inter_fe8b9d92-module__LINzvG__variable{--font-inter:"Inter","Inter Fallback"} +@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-pan-x:initial;--tw-pan-y:initial;--tw-pinch-zoom:initial;--tw-space-y-reverse:0;--tw-space-x-reverse:0;--tw-divide-x-reverse:0;--tw-border-style:solid;--tw-divide-y-reverse:0;--tw-gradient-position:initial;--tw-gradient-from:#0000;--tw-gradient-via:#0000;--tw-gradient-to:#0000;--tw-gradient-stops:initial;--tw-gradient-via-stops:initial;--tw-gradient-from-position:0%;--tw-gradient-via-position:50%;--tw-gradient-to-position:100%;--tw-leading:initial;--tw-font-weight:initial;--tw-tracking:initial;--tw-ordinal:initial;--tw-slashed-zero:initial;--tw-numeric-figure:initial;--tw-numeric-spacing:initial;--tw-numeric-fraction:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial;--tw-duration:initial;--tw-ease:initial}}}@layer theme{:root,:host{--font-sans:var(--font-inter);--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-red-50:#fef2f2;--color-red-600:#e40014;--color-orange-100:#ffedd5;--color-orange-200:#ffd7a8;--color-orange-500:#fe6e00;--color-yellow-300:#ffe02a;--color-yellow-500:#edb200;--color-green-50:#f0fdf4;--color-green-100:#dcfce7;--color-green-500:#00c758;--color-cyan-400:#00d2ef;--color-cyan-500:#00b7d7;--color-blue-50:#eff6ff;--color-blue-100:#dbeafe;--color-blue-200:#bedbff;--color-blue-500:#3080ff;--color-blue-600:#155dfc;--color-blue-700:#1447e6;--color-blue-950:#162456;--color-purple-50:#faf5ff;--color-purple-100:#f3e8ff;--color-purple-200:#e9d5ff;--color-purple-500:#ac4bff;--color-purple-600:#9810fa;--color-pink-100:#fce7f3;--color-pink-500:#f6339a;--color-pink-600:#e30076;--color-slate-50:#f8fafc;--color-slate-100:#f1f5f9;--color-slate-200:#e2e8f0;--color-slate-300:#cad5e2;--color-slate-400:#90a1b9;--color-slate-500:#62748e;--color-slate-600:#45556c;--color-slate-700:#314158;--color-slate-800:#1d293d;--color-slate-900:#0f172b;--color-slate-950:#020618;--color-black:#000;--color-white:#fff;--spacing:.25rem;--container-xs:20rem;--container-md:28rem;--container-lg:32rem;--container-xl:36rem;--container-2xl:42rem;--container-4xl:56rem;--container-5xl:64rem;--container-6xl:72rem;--container-7xl:80rem;--text-xs:.75rem;--text-xs--line-height:calc(1/.75);--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--text-base:1rem;--text-base--line-height:calc(1.5/1);--text-lg:1.125rem;--text-lg--line-height:calc(1.75/1.125);--text-xl:1.25rem;--text-xl--line-height:calc(1.75/1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2/1.5);--text-3xl:1.875rem;--text-3xl--line-height:calc(2.25/1.875);--text-4xl:2.25rem;--text-4xl--line-height:calc(2.5/2.25);--text-5xl:3rem;--text-5xl--line-height:1;--text-6xl:3.75rem;--text-6xl--line-height:1;--text-7xl:4.5rem;--text-7xl--line-height:1;--text-8xl:6rem;--text-8xl--line-height:1;--text-9xl:8rem;--text-9xl--line-height:1;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--font-weight-extrabold:800;--font-weight-black:900;--tracking-tighter:-.05em;--tracking-tight:-.025em;--tracking-normal:0em;--tracking-wide:.025em;--tracking-wider:.05em;--tracking-widest:.1em;--leading-tight:1.25;--leading-relaxed:1.625;--radius-md:.375rem;--radius-lg:.5rem;--radius-xl:.75rem;--radius-2xl:1rem;--radius-3xl:1.5rem;--ease-in:cubic-bezier(.4,0,1,1);--ease-out:cubic-bezier(0,0,.2,1);--ease-in-out:cubic-bezier(.4,0,.2,1);--animate-spin:spin 1s linear infinite;--animate-pulse:pulse 2s cubic-bezier(.4,0,.6,1)infinite;--animate-bounce:bounce 1s infinite;--blur-sm:8px;--blur-md:12px;--blur-xl:24px;--blur-3xl:64px;--aspect-video:16/9;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono);--color-background:hsl(var(--background));--color-foreground:hsl(var(--foreground));--color-card:hsl(var(--card));--color-card-foreground:hsl(var(--card-foreground));--color-primary:hsl(var(--primary));--color-primary-foreground:hsl(var(--primary-foreground));--color-secondary:hsl(var(--secondary));--color-secondary-foreground:hsl(var(--secondary-foreground));--color-muted:hsl(var(--muted));--color-muted-foreground:hsl(var(--muted-foreground));--color-accent:hsl(var(--accent));--color-accent-foreground:hsl(var(--accent-foreground));--color-destructive:hsl(var(--destructive));--color-destructive-foreground:hsl(var(--destructive-foreground));--color-border:hsl(var(--border));--color-input:hsl(var(--input));--color-ring:hsl(var(--ring))}@supports (color:lab(0% 0 0)){:root,:host{--color-red-50:lab(96.5005% 4.18511 1.52329);--color-red-600:lab(48.4493% 77.4328 61.5452);--color-orange-100:lab(94.7127% 3.58391 14.3151);--color-orange-200:lab(88.4871% 9.94918 28.8378);--color-orange-500:lab(64.272% 57.1788 90.3583);--color-yellow-300:lab(89.7033% -.480324 84.4917);--color-yellow-500:lab(76.3898% 14.5258 98.4589);--color-green-50:lab(98.1563% -5.60117 2.75913);--color-green-100:lab(96.186% -13.8464 6.52362);--color-green-500:lab(70.5521% -66.5147 45.8072);--color-cyan-400:lab(76.6045% -40.9406 -29.6231);--color-cyan-500:lab(67.805% -35.3952 -30.2018);--color-blue-50:lab(96.492% -1.14647 -5.11479);--color-blue-100:lab(92.0301% -2.24757 -11.6453);--color-blue-200:lab(86.15% -4.04379 -21.0797);--color-blue-500:lab(54.1736% 13.3368 -74.6839);--color-blue-600:lab(44.0605% 29.0279 -86.0352);--color-blue-700:lab(36.9089% 35.0961 -85.6872);--color-blue-950:lab(15.6723% 8.86233 -32.2945);--color-purple-50:lab(97.1626% 2.99937 -4.13398);--color-purple-100:lab(93.3333% 6.9744 -9.83434);--color-purple-200:lab(87.8405% 13.4282 -18.7159);--color-purple-500:lab(52.0183% 66.11 -78.2316);--color-purple-600:lab(43.0295% 75.21 -86.5669);--color-pink-100:lab(93.5864% 9.01193 -3.15077);--color-pink-500:lab(56.9303% 76.8162 -8.07021);--color-pink-600:lab(49.5493% 79.8381 2.31769);--color-slate-50:lab(98.1434% -.369549 -1.05968);--color-slate-100:lab(96.286% -.852466 -2.46847);--color-slate-200:lab(91.7353% -.998765 -4.76968);--color-slate-300:lab(84.7652% -1.94535 -7.93337);--color-slate-400:lab(65.5349% -2.25151 -14.5072);--color-slate-500:lab(48.0876% -2.03595 -16.5814);--color-slate-600:lab(35.5623% -1.74978 -15.4316);--color-slate-700:lab(26.9569% -1.47018 -15.6993);--color-slate-800:lab(16.132% -.318021 -14.6672);--color-slate-900:lab(7.78673% 1.82346 -15.0537);--color-slate-950:lab(1.76974% 1.32743 -9.28855)}}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab, red, red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}:root{--background:0 0% 100%;--foreground:224 71.4% 4.1%;--card:0 0% 100%;--card-foreground:224 71.4% 4.1%;--popover:0 0% 100%;--popover-foreground:224 71.4% 4.1%;--primary:42 74% 49%;--primary-foreground:0 0% 100%;--secondary:0 0% 10%;--secondary-foreground:0 0% 100%;--muted:0 0% 96%;--muted-foreground:0 0% 45%;--accent:42 74% 95%;--accent-foreground:42 74% 20%;--destructive:0 84.2% 60.2%;--destructive-foreground:210 20% 98%;--border:0 0% 90%;--input:0 0% 90%;--ring:42 74% 49%;--radius:.75rem}.dark{--background:0 0% 10%;--foreground:0 0% 98%;--card:0 0% 10%;--card-foreground:0 0% 98%;--popover:0 0% 10%;--popover-foreground:0 0% 98%;--primary:42 74% 49%;--primary-foreground:0 0% 10%;--secondary:0 0% 20%;--secondary-foreground:0 0% 100%;--muted:0 0% 15%;--muted-foreground:0 0% 65%;--accent:42 74% 15%;--accent-foreground:42 74% 90%;--destructive:0 62.8% 30.6%;--destructive-foreground:210 20% 98%;--border:0 0% 20%;--input:0 0% 20%;--ring:42 74% 49%}*{border-color:var(--color-border)}body{background-color:var(--color-background);font-family:var(--font-sans);color:var(--color-foreground);font-feature-settings:"rlig" 1,"calt" 1}html{scroll-behavior:smooth}}@layer components;@layer utilities{.pointer-events-none{pointer-events:none}.collapse{visibility:collapse}.invisible{visibility:hidden}.visible{visibility:visible}.sr-only{clip-path:inset(50%);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.not-sr-only{clip-path:none;white-space:normal;width:auto;height:auto;margin:0;padding:0;position:static;overflow:visible}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.inset-0{inset:calc(var(--spacing)*0)}.-top-10{top:calc(var(--spacing)*-10)}.-top-16{top:calc(var(--spacing)*-16)}.-top-24{top:calc(var(--spacing)*-24)}.top-0{top:calc(var(--spacing)*0)}.top-1\/2{top:50%}.top-1\/4{top:25%}.top-2{top:calc(var(--spacing)*2)}.top-\[-5\%\]{top:-5%}.top-\[20\%\]{top:20%}.-right-10{right:calc(var(--spacing)*-10)}.-right-16{right:calc(var(--spacing)*-16)}.-right-20{right:calc(var(--spacing)*-20)}.-right-24{right:calc(var(--spacing)*-24)}.right-0{right:calc(var(--spacing)*0)}.right-1\/3{right:33.3333%}.right-2{right:calc(var(--spacing)*2)}.right-6{right:calc(var(--spacing)*6)}.right-8{right:calc(var(--spacing)*8)}.right-\[-10\%\]{right:-10%}.-bottom-16{bottom:calc(var(--spacing)*-16)}.bottom-0{bottom:calc(var(--spacing)*0)}.bottom-1\/4{bottom:25%}.bottom-6{bottom:calc(var(--spacing)*6)}.bottom-8{bottom:calc(var(--spacing)*8)}.bottom-full{bottom:100%}.-left-10{left:calc(var(--spacing)*-10)}.-left-20{left:calc(var(--spacing)*-20)}.left-0{left:calc(var(--spacing)*0)}.left-1\/2{left:50%}.left-6{left:calc(var(--spacing)*6)}.left-\[-5\%\]{left:-5%}.isolate{isolation:isolate}.isolation-auto{isolation:auto}.-z-10{z-index:calc(10*-1)}.z-10{z-index:10}.z-40{z-index:40}.z-50{z-index:50}.z-\[60\]{z-index:60}.z-\[100\]{z-index:100}.container{width:100%}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:48rem){.container{max-width:48rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:96rem){.container{max-width:96rem}}.mx-auto{margin-inline:auto}.-mt-8{margin-top:calc(var(--spacing)*-8)}.-mt-32{margin-top:calc(var(--spacing)*-32)}.mt-0\.5{margin-top:calc(var(--spacing)*.5)}.mt-1{margin-top:calc(var(--spacing)*1)}.mt-3{margin-top:calc(var(--spacing)*3)}.mt-4{margin-top:calc(var(--spacing)*4)}.mt-5{margin-top:calc(var(--spacing)*5)}.mt-6{margin-top:calc(var(--spacing)*6)}.mt-8{margin-top:calc(var(--spacing)*8)}.mt-12{margin-top:calc(var(--spacing)*12)}.mt-24{margin-top:calc(var(--spacing)*24)}.mt-32{margin-top:calc(var(--spacing)*32)}.-mr-32{margin-right:calc(var(--spacing)*-32)}.mr-2{margin-right:calc(var(--spacing)*2)}.mr-3{margin-right:calc(var(--spacing)*3)}.mb-1{margin-bottom:calc(var(--spacing)*1)}.mb-2{margin-bottom:calc(var(--spacing)*2)}.mb-3{margin-bottom:calc(var(--spacing)*3)}.mb-4{margin-bottom:calc(var(--spacing)*4)}.mb-6{margin-bottom:calc(var(--spacing)*6)}.mb-8{margin-bottom:calc(var(--spacing)*8)}.mb-10{margin-bottom:calc(var(--spacing)*10)}.mb-14{margin-bottom:calc(var(--spacing)*14)}.mb-16{margin-bottom:calc(var(--spacing)*16)}.mb-24{margin-bottom:calc(var(--spacing)*24)}.ml-1{margin-left:calc(var(--spacing)*1)}.ml-2{margin-left:calc(var(--spacing)*2)}.\[display\:-webkit-box\]{display:-webkit-box}.block{display:block}.contents{display:contents}.flex{display:flex}.flow-root{display:flow-root}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.inline-grid{display:inline-grid}.inline-table{display:inline-table}.list-item{display:list-item}.table{display:table}.table-caption{display:table-caption}.table-cell{display:table-cell}.table-column{display:table-column}.table-column-group{display:table-column-group}.table-footer-group{display:table-footer-group}.table-header-group{display:table-header-group}.table-row{display:table-row}.table-row-group{display:table-row-group}.aspect-\[9\/16\]{aspect-ratio:9/16}.aspect-\[16\/9\]{aspect-ratio:16/9}.aspect-square{aspect-ratio:1}.aspect-video{aspect-ratio:var(--aspect-video)}.h-1\.5{height:calc(var(--spacing)*1.5)}.h-2{height:calc(var(--spacing)*2)}.h-3{height:calc(var(--spacing)*3)}.h-4{height:calc(var(--spacing)*4)}.h-5{height:calc(var(--spacing)*5)}.h-6{height:calc(var(--spacing)*6)}.h-8{height:calc(var(--spacing)*8)}.h-9{height:calc(var(--spacing)*9)}.h-10{height:calc(var(--spacing)*10)}.h-11{height:calc(var(--spacing)*11)}.h-12{height:calc(var(--spacing)*12)}.h-14{height:calc(var(--spacing)*14)}.h-16{height:calc(var(--spacing)*16)}.h-20{height:calc(var(--spacing)*20)}.h-24{height:calc(var(--spacing)*24)}.h-40{height:calc(var(--spacing)*40)}.h-64{height:calc(var(--spacing)*64)}.h-80{height:calc(var(--spacing)*80)}.h-96{height:calc(var(--spacing)*96)}.h-\[20vh\]{height:20vh}.h-\[40\%\]{height:40%}.h-\[50\%\]{height:50%}.h-\[90px\]{height:90px}.h-\[100px\]{height:100px}.h-\[280px\]{height:280px}.h-\[360px\]{height:360px}.h-\[420px\]{height:420px}.h-\[500px\]{height:500px}.h-full{height:100%}.h-px{height:1px}.min-h-\[80px\]{min-height:80px}.min-h-\[150px\]{min-height:150px}.min-h-screen{min-height:100vh}.w-1\.5{width:calc(var(--spacing)*1.5)}.w-2{width:calc(var(--spacing)*2)}.w-3{width:calc(var(--spacing)*3)}.w-4{width:calc(var(--spacing)*4)}.w-5{width:calc(var(--spacing)*5)}.w-6{width:calc(var(--spacing)*6)}.w-8{width:calc(var(--spacing)*8)}.w-9{width:calc(var(--spacing)*9)}.w-10{width:calc(var(--spacing)*10)}.w-12{width:calc(var(--spacing)*12)}.w-14{width:calc(var(--spacing)*14)}.w-16{width:calc(var(--spacing)*16)}.w-20{width:calc(var(--spacing)*20)}.w-24{width:calc(var(--spacing)*24)}.w-32{width:calc(var(--spacing)*32)}.w-40{width:calc(var(--spacing)*40)}.w-48{width:calc(var(--spacing)*48)}.w-52{width:calc(var(--spacing)*52)}.w-56{width:calc(var(--spacing)*56)}.w-64{width:calc(var(--spacing)*64)}.w-80{width:calc(var(--spacing)*80)}.w-96{width:calc(var(--spacing)*96)}.w-\[40\%\]{width:40%}.w-\[50\%\]{width:50%}.w-\[280px\]{width:280px}.w-\[360px\]{width:360px}.w-\[420px\]{width:420px}.w-\[500px\]{width:500px}.w-fit{width:fit-content}.w-full{width:100%}.max-w-2xl{max-width:var(--container-2xl)}.max-w-4xl{max-width:var(--container-4xl)}.max-w-5xl{max-width:var(--container-5xl)}.max-w-6xl{max-width:var(--container-6xl)}.max-w-7xl{max-width:var(--container-7xl)}.max-w-\[325px\]{max-width:325px}.max-w-lg{max-width:var(--container-lg)}.max-w-md{max-width:var(--container-md)}.max-w-xl{max-width:var(--container-xl)}.max-w-xs{max-width:var(--container-xs)}.flex-1{flex:1}.flex-shrink-0{flex-shrink:0}.shrink{flex-shrink:1}.shrink-0{flex-shrink:0}.grow{flex-grow:1}.border-collapse{border-collapse:collapse}.origin-bottom-left{transform-origin:0 100%}.-translate-x-1\/2{--tw-translate-x:calc(calc(1/2*100%)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.-translate-y-1\/2{--tw-translate-y:calc(calc(1/2*100%)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-1\/2{--tw-translate-y:calc(1/2*100%);translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-none{translate:none}.scale-110{--tw-scale-x:110%;--tw-scale-y:110%;--tw-scale-z:110%;scale:var(--tw-scale-x)var(--tw-scale-y)}.scale-3d{scale:var(--tw-scale-x)var(--tw-scale-y)var(--tw-scale-z)}.-rotate-2{rotate:-2deg}.-rotate-3{rotate:-3deg}.-rotate-6{rotate:-6deg}.rotate-6{rotate:6deg}.rotate-180{rotate:180deg}.-skew-y-2{--tw-skew-y:skewY(calc(2deg*-1));transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.-skew-y-3{--tw-skew-y:skewY(calc(3deg*-1));transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.transform{transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.animate-pulse{animation:var(--animate-pulse)}.animate-spin{animation:var(--animate-spin)}.cursor-help{cursor:help}.cursor-pointer{cursor:pointer}.touch-pinch-zoom{--tw-pinch-zoom:pinch-zoom;touch-action:var(--tw-pan-x,)var(--tw-pan-y,)var(--tw-pinch-zoom,)}.resize{resize:both}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.items-start{align-items:flex-start}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.gap-1{gap:calc(var(--spacing)*1)}.gap-2{gap:calc(var(--spacing)*2)}.gap-3{gap:calc(var(--spacing)*3)}.gap-4{gap:calc(var(--spacing)*4)}.gap-6{gap:calc(var(--spacing)*6)}.gap-8{gap:calc(var(--spacing)*8)}.gap-10{gap:calc(var(--spacing)*10)}.gap-12{gap:calc(var(--spacing)*12)}.gap-16{gap:calc(var(--spacing)*16)}:where(.space-y-1>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*1)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-1\.5>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*1.5)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*1.5)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*2)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-3>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*3)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*3)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-4>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*4)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*4)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-5>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*5)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*5)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-6>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*6)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*6)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-8>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*8)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*8)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-12>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*12)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*12)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-16>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*16)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*16)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-reverse>:not(:last-child)){--tw-space-y-reverse:1}.gap-x-8{column-gap:calc(var(--spacing)*8)}.gap-x-12{column-gap:calc(var(--spacing)*12)}:where(.space-x-1>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*1)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-x-reverse)))}:where(.space-x-2>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*2)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-x-reverse)))}:where(.space-x-3>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*3)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*3)*calc(1 - var(--tw-space-x-reverse)))}:where(.space-x-4>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*4)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*4)*calc(1 - var(--tw-space-x-reverse)))}:where(.space-x-8>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*8)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*8)*calc(1 - var(--tw-space-x-reverse)))}:where(.space-x-reverse>:not(:last-child)){--tw-space-x-reverse:1}.gap-y-2{row-gap:calc(var(--spacing)*2)}.gap-y-4{row-gap:calc(var(--spacing)*4)}:where(.divide-x>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)))}:where(.divide-y>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)))}:where(.divide-y-reverse>:not(:last-child)){--tw-divide-y-reverse:1}:where(.divide-slate-100>:not(:last-child)){border-color:var(--color-slate-100)}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.scroll-smooth{scroll-behavior:smooth}.rounded-2xl{border-radius:var(--radius-2xl)}.rounded-3xl{border-radius:var(--radius-3xl)}.rounded-\[1\.5rem\]{border-radius:1.5rem}.rounded-\[2\.5rem\]{border-radius:2.5rem}.rounded-\[2rem\]{border-radius:2rem}.rounded-\[3\.5rem\]{border-radius:3.5rem}.rounded-\[3rem\]{border-radius:3rem}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius-lg)}.rounded-md{border-radius:var(--radius-md)}.rounded-xl{border-radius:var(--radius-xl)}.rounded-s{border-start-start-radius:.25rem;border-end-start-radius:.25rem}.rounded-ss{border-start-start-radius:.25rem}.rounded-e{border-start-end-radius:.25rem;border-end-end-radius:.25rem}.rounded-se{border-start-end-radius:.25rem}.rounded-ee{border-end-end-radius:.25rem}.rounded-es{border-end-start-radius:.25rem}.rounded-t{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.rounded-l{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.rounded-tl{border-top-left-radius:.25rem}.rounded-r{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.rounded-tr{border-top-right-radius:.25rem}.rounded-b{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.rounded-br{border-bottom-right-radius:.25rem}.rounded-bl{border-bottom-left-radius:.25rem}.border{border-style:var(--tw-border-style);border-width:1px}.border-2{border-style:var(--tw-border-style);border-width:2px}.border-x{border-inline-style:var(--tw-border-style);border-inline-width:1px}.border-y{border-block-style:var(--tw-border-style);border-block-width:1px}.border-s{border-inline-start-style:var(--tw-border-style);border-inline-start-width:1px}.border-e{border-inline-end-style:var(--tw-border-style);border-inline-end-width:1px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-r{border-right-style:var(--tw-border-style);border-right-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-none{--tw-border-style:none;border-style:none}.border-blue-100{border-color:var(--color-blue-100)}.border-input{border-color:var(--color-input)}.border-secondary\/40{border-color:color-mix(in srgb,hsl(var(--secondary))40%,transparent)}@supports (color:color-mix(in lab, red, red)){.border-secondary\/40{border-color:color-mix(in oklab,var(--color-secondary)40%,transparent)}}.border-slate-50{border-color:var(--color-slate-50)}.border-slate-100{border-color:var(--color-slate-100)}.border-slate-200{border-color:var(--color-slate-200)}.border-slate-200\/60{border-color:#e2e8f099}@supports (color:color-mix(in lab, red, red)){.border-slate-200\/60{border-color:color-mix(in oklab,var(--color-slate-200)60%,transparent)}}.border-slate-200\/70{border-color:#e2e8f0b3}@supports (color:color-mix(in lab, red, red)){.border-slate-200\/70{border-color:color-mix(in oklab,var(--color-slate-200)70%,transparent)}}.border-slate-800\/80{border-color:#1d293dcc}@supports (color:color-mix(in lab, red, red)){.border-slate-800\/80{border-color:color-mix(in oklab,var(--color-slate-800)80%,transparent)}}.border-white\/5{border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.border-white\/5{border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.border-white\/10{border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.border-white\/10{border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.border-white\/20{border-color:#fff3}@supports (color:color-mix(in lab, red, red)){.border-white\/20{border-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.border-white\/30{border-color:#ffffff4d}@supports (color:color-mix(in lab, red, red)){.border-white\/30{border-color:color-mix(in oklab,var(--color-white)30%,transparent)}}.border-t-white{border-top-color:var(--color-white)}.bg-\[\#4D69A1\]{background-color:#4d69a1}.bg-\[\#D9A321\]{background-color:#d9a321}.bg-\[\#fafaf9\]{background-color:#fafaf9}.bg-background{background-color:var(--color-background)}.bg-black{background-color:var(--color-black)}.bg-black\/50{background-color:#00000080}@supports (color:color-mix(in lab, red, red)){.bg-black\/50{background-color:color-mix(in oklab,var(--color-black)50%,transparent)}}.bg-blue-50{background-color:var(--color-blue-50)}.bg-blue-100{background-color:var(--color-blue-100)}.bg-blue-200{background-color:var(--color-blue-200)}.bg-blue-500{background-color:var(--color-blue-500)}.bg-blue-500\/5{background-color:#3080ff0d}@supports (color:color-mix(in lab, red, red)){.bg-blue-500\/5{background-color:color-mix(in oklab,var(--color-blue-500)5%,transparent)}}.bg-blue-500\/10{background-color:#3080ff1a}@supports (color:color-mix(in lab, red, red)){.bg-blue-500\/10{background-color:color-mix(in oklab,var(--color-blue-500)10%,transparent)}}.bg-blue-600{background-color:var(--color-blue-600)}.bg-card{background-color:var(--color-card)}.bg-cyan-500{background-color:var(--color-cyan-500)}.bg-cyan-500\/10{background-color:#00b7d71a}@supports (color:color-mix(in lab, red, red)){.bg-cyan-500\/10{background-color:color-mix(in oklab,var(--color-cyan-500)10%,transparent)}}.bg-destructive{background-color:var(--color-destructive)}.bg-green-50{background-color:var(--color-green-50)}.bg-green-100{background-color:var(--color-green-100)}.bg-green-500{background-color:var(--color-green-500)}.bg-green-500\/10{background-color:#00c7581a}@supports (color:color-mix(in lab, red, red)){.bg-green-500\/10{background-color:color-mix(in oklab,var(--color-green-500)10%,transparent)}}.bg-orange-500\/10{background-color:#fe6e001a}@supports (color:color-mix(in lab, red, red)){.bg-orange-500\/10{background-color:color-mix(in oklab,var(--color-orange-500)10%,transparent)}}.bg-pink-100{background-color:var(--color-pink-100)}.bg-pink-500\/10{background-color:#f6339a1a}@supports (color:color-mix(in lab, red, red)){.bg-pink-500\/10{background-color:color-mix(in oklab,var(--color-pink-500)10%,transparent)}}.bg-primary{background-color:var(--color-primary)}.bg-primary\/5{background-color:color-mix(in srgb,hsl(var(--primary))5%,transparent)}@supports (color:color-mix(in lab, red, red)){.bg-primary\/5{background-color:color-mix(in oklab,var(--color-primary)5%,transparent)}}.bg-primary\/10{background-color:color-mix(in srgb,hsl(var(--primary))10%,transparent)}@supports (color:color-mix(in lab, red, red)){.bg-primary\/10{background-color:color-mix(in oklab,var(--color-primary)10%,transparent)}}.bg-primary\/20{background-color:color-mix(in srgb,hsl(var(--primary))20%,transparent)}@supports (color:color-mix(in lab, red, red)){.bg-primary\/20{background-color:color-mix(in oklab,var(--color-primary)20%,transparent)}}.bg-purple-50{background-color:var(--color-purple-50)}.bg-purple-100{background-color:var(--color-purple-100)}.bg-purple-200{background-color:var(--color-purple-200)}.bg-purple-500{background-color:var(--color-purple-500)}.bg-purple-500\/10{background-color:#ac4bff1a}@supports (color:color-mix(in lab, red, red)){.bg-purple-500\/10{background-color:color-mix(in oklab,var(--color-purple-500)10%,transparent)}}.bg-red-50{background-color:var(--color-red-50)}.bg-secondary{background-color:var(--color-secondary)}.bg-secondary\/5{background-color:color-mix(in srgb,hsl(var(--secondary))5%,transparent)}@supports (color:color-mix(in lab, red, red)){.bg-secondary\/5{background-color:color-mix(in oklab,var(--color-secondary)5%,transparent)}}.bg-secondary\/10{background-color:color-mix(in srgb,hsl(var(--secondary))10%,transparent)}@supports (color:color-mix(in lab, red, red)){.bg-secondary\/10{background-color:color-mix(in oklab,var(--color-secondary)10%,transparent)}}.bg-slate-50{background-color:var(--color-slate-50)}.bg-slate-50\/20{background-color:#f8fafc33}@supports (color:color-mix(in lab, red, red)){.bg-slate-50\/20{background-color:color-mix(in oklab,var(--color-slate-50)20%,transparent)}}.bg-slate-50\/30{background-color:#f8fafc4d}@supports (color:color-mix(in lab, red, red)){.bg-slate-50\/30{background-color:color-mix(in oklab,var(--color-slate-50)30%,transparent)}}.bg-slate-50\/50{background-color:#f8fafc80}@supports (color:color-mix(in lab, red, red)){.bg-slate-50\/50{background-color:color-mix(in oklab,var(--color-slate-50)50%,transparent)}}.bg-slate-100{background-color:var(--color-slate-100)}.bg-slate-200{background-color:var(--color-slate-200)}.bg-slate-200\/40{background-color:#e2e8f066}@supports (color:color-mix(in lab, red, red)){.bg-slate-200\/40{background-color:color-mix(in oklab,var(--color-slate-200)40%,transparent)}}.bg-slate-200\/70{background-color:#e2e8f0b3}@supports (color:color-mix(in lab, red, red)){.bg-slate-200\/70{background-color:color-mix(in oklab,var(--color-slate-200)70%,transparent)}}.bg-slate-900{background-color:var(--color-slate-900)}.bg-slate-950{background-color:var(--color-slate-950)}.bg-slate-950\/70{background-color:#020618b3}@supports (color:color-mix(in lab, red, red)){.bg-slate-950\/70{background-color:color-mix(in oklab,var(--color-slate-950)70%,transparent)}}.bg-slate-950\/95{background-color:#020618f2}@supports (color:color-mix(in lab, red, red)){.bg-slate-950\/95{background-color:color-mix(in oklab,var(--color-slate-950)95%,transparent)}}.bg-transparent{background-color:#0000}.bg-white{background-color:var(--color-white)}.bg-white\/5{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.bg-white\/5{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.bg-white\/10{background-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.bg-white\/10{background-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.bg-white\/80{background-color:#fffc}@supports (color:color-mix(in lab, red, red)){.bg-white\/80{background-color:color-mix(in oklab,var(--color-white)80%,transparent)}}.bg-white\/95{background-color:#fffffff2}@supports (color:color-mix(in lab, red, red)){.bg-white\/95{background-color:color-mix(in oklab,var(--color-white)95%,transparent)}}.bg-gradient-to-b{--tw-gradient-position:to bottom in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.bg-gradient-to-br{--tw-gradient-position:to bottom right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.bg-gradient-to-r{--tw-gradient-position:to right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.bg-gradient-to-t{--tw-gradient-position:to top in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.from-black\/80{--tw-gradient-from:#000c}@supports (color:color-mix(in lab, red, red)){.from-black\/80{--tw-gradient-from:color-mix(in oklab,var(--color-black)80%,transparent)}}.from-black\/80{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-black\/90{--tw-gradient-from:#000000e6}@supports (color:color-mix(in lab, red, red)){.from-black\/90{--tw-gradient-from:color-mix(in oklab,var(--color-black)90%,transparent)}}.from-black\/90{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-blue-600\/20{--tw-gradient-from:#155dfc33}@supports (color:color-mix(in lab, red, red)){.from-blue-600\/20{--tw-gradient-from:color-mix(in oklab,var(--color-blue-600)20%,transparent)}}.from-blue-600\/20{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-pink-600\/20{--tw-gradient-from:#e3007633}@supports (color:color-mix(in lab, red, red)){.from-pink-600\/20{--tw-gradient-from:color-mix(in oklab,var(--color-pink-600)20%,transparent)}}.from-pink-600\/20{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-primary{--tw-gradient-from:var(--color-primary);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-secondary{--tw-gradient-from:var(--color-secondary);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-slate-900{--tw-gradient-from:var(--color-slate-900);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-slate-950{--tw-gradient-from:var(--color-slate-950);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-white\/95{--tw-gradient-from:#fffffff2}@supports (color:color-mix(in lab, red, red)){.from-white\/95{--tw-gradient-from:color-mix(in oklab,var(--color-white)95%,transparent)}}.from-white\/95{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.via-black\/20{--tw-gradient-via:#0003}@supports (color:color-mix(in lab, red, red)){.via-black\/20{--tw-gradient-via:color-mix(in oklab,var(--color-black)20%,transparent)}}.via-black\/20{--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.via-black\/50{--tw-gradient-via:#00000080}@supports (color:color-mix(in lab, red, red)){.via-black\/50{--tw-gradient-via:color-mix(in oklab,var(--color-black)50%,transparent)}}.via-black\/50{--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.via-slate-900{--tw-gradient-via:var(--color-slate-900);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.via-white\/80{--tw-gradient-via:#fffc}@supports (color:color-mix(in lab, red, red)){.via-white\/80{--tw-gradient-via:color-mix(in oklab,var(--color-white)80%,transparent)}}.via-white\/80{--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.to-cyan-400\/20{--tw-gradient-to:#00d2ef33}@supports (color:color-mix(in lab, red, red)){.to-cyan-400\/20{--tw-gradient-to:color-mix(in oklab,var(--color-cyan-400)20%,transparent)}}.to-cyan-400\/20{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-primary{--tw-gradient-to:var(--color-primary);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-purple-600\/20{--tw-gradient-to:#9810fa33}@supports (color:color-mix(in lab, red, red)){.to-purple-600\/20{--tw-gradient-to:color-mix(in oklab,var(--color-purple-600)20%,transparent)}}.to-purple-600\/20{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-secondary{--tw-gradient-to:var(--color-secondary);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-slate-800{--tw-gradient-to:var(--color-slate-800);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-slate-900{--tw-gradient-to:var(--color-slate-900);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-transparent{--tw-gradient-to:transparent;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-white\/95{--tw-gradient-to:#fffffff2}@supports (color:color-mix(in lab, red, red)){.to-white\/95{--tw-gradient-to:color-mix(in oklab,var(--color-white)95%,transparent)}}.to-white\/95{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.bg-repeat{background-repeat:repeat}.mask-no-clip{-webkit-mask-clip:no-clip;mask-clip:no-clip}.mask-repeat{-webkit-mask-repeat:repeat;mask-repeat:repeat}.fill-primary{fill:var(--color-primary)}.fill-white{fill:var(--color-white)}.fill-yellow-500{fill:var(--color-yellow-500)}.object-contain{object-fit:contain}.object-cover{object-fit:cover}.p-1{padding:calc(var(--spacing)*1)}.p-2{padding:calc(var(--spacing)*2)}.p-2\.5{padding:calc(var(--spacing)*2.5)}.p-3{padding:calc(var(--spacing)*3)}.p-4{padding:calc(var(--spacing)*4)}.p-5{padding:calc(var(--spacing)*5)}.p-6{padding:calc(var(--spacing)*6)}.p-8{padding:calc(var(--spacing)*8)}.p-10{padding:calc(var(--spacing)*10)}.p-12{padding:calc(var(--spacing)*12)}.p-16{padding:calc(var(--spacing)*16)}.px-1{padding-inline:calc(var(--spacing)*1)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-3{padding-inline:calc(var(--spacing)*3)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-5{padding-inline:calc(var(--spacing)*5)}.px-6{padding-inline:calc(var(--spacing)*6)}.px-8{padding-inline:calc(var(--spacing)*8)}.px-10{padding-inline:calc(var(--spacing)*10)}.px-12{padding-inline:calc(var(--spacing)*12)}.py-1{padding-block:calc(var(--spacing)*1)}.py-1\.5{padding-block:calc(var(--spacing)*1.5)}.py-2{padding-block:calc(var(--spacing)*2)}.py-3{padding-block:calc(var(--spacing)*3)}.py-4{padding-block:calc(var(--spacing)*4)}.py-5{padding-block:calc(var(--spacing)*5)}.py-6{padding-block:calc(var(--spacing)*6)}.py-8{padding-block:calc(var(--spacing)*8)}.py-12{padding-block:calc(var(--spacing)*12)}.py-16{padding-block:calc(var(--spacing)*16)}.py-24{padding-block:calc(var(--spacing)*24)}.py-32{padding-block:calc(var(--spacing)*32)}.pt-0{padding-top:calc(var(--spacing)*0)}.pt-2{padding-top:calc(var(--spacing)*2)}.pt-4{padding-top:calc(var(--spacing)*4)}.pt-8{padding-top:calc(var(--spacing)*8)}.pt-10{padding-top:calc(var(--spacing)*10)}.pt-12{padding-top:calc(var(--spacing)*12)}.pt-20{padding-top:calc(var(--spacing)*20)}.pt-24{padding-top:calc(var(--spacing)*24)}.pt-32{padding-top:calc(var(--spacing)*32)}.pt-40{padding-top:calc(var(--spacing)*40)}.pb-4{padding-bottom:calc(var(--spacing)*4)}.pb-6{padding-bottom:calc(var(--spacing)*6)}.pb-8{padding-bottom:calc(var(--spacing)*8)}.pb-20{padding-bottom:calc(var(--spacing)*20)}.pb-32{padding-bottom:calc(var(--spacing)*32)}.pl-12{padding-left:calc(var(--spacing)*12)}.text-center{text-align:center}.text-left{text-align:left}.text-right{text-align:right}.font-sans{font-family:var(--font-sans)}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.text-4xl{font-size:var(--text-4xl);line-height:var(--tw-leading,var(--text-4xl--line-height))}.text-5xl{font-size:var(--text-5xl);line-height:var(--tw-leading,var(--text-5xl--line-height))}.text-6xl{font-size:var(--text-6xl);line-height:var(--tw-leading,var(--text-6xl--line-height))}.text-7xl{font-size:var(--text-7xl);line-height:var(--tw-leading,var(--text-7xl--line-height))}.text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.text-\[8px\]{font-size:8px}.text-\[9px\]{font-size:9px}.text-\[10px\]{font-size:10px}.text-\[11px\]{font-size:11px}.text-\[14px\]{font-size:14px}.leading-\[0\.9\]{--tw-leading:.9;line-height:.9}.leading-\[0\.85\]{--tw-leading:.85;line-height:.85}.leading-none{--tw-leading:1;line-height:1}.leading-relaxed{--tw-leading:var(--leading-relaxed);line-height:var(--leading-relaxed)}.leading-tight{--tw-leading:var(--leading-tight);line-height:var(--leading-tight)}.font-black{--tw-font-weight:var(--font-weight-black);font-weight:var(--font-weight-black)}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-extrabold{--tw-font-weight:var(--font-weight-extrabold);font-weight:var(--font-weight-extrabold)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.tracking-\[0\.1em\]{--tw-tracking:.1em;letter-spacing:.1em}.tracking-\[0\.2em\]{--tw-tracking:.2em;letter-spacing:.2em}.tracking-\[0\.3em\]{--tw-tracking:.3em;letter-spacing:.3em}.tracking-\[0\.4em\]{--tw-tracking:.4em;letter-spacing:.4em}.tracking-\[0\.5em\]{--tw-tracking:.5em;letter-spacing:.5em}.tracking-\[0\.08em\]{--tw-tracking:.08em;letter-spacing:.08em}.tracking-\[0\.25em\]{--tw-tracking:.25em;letter-spacing:.25em}.tracking-\[0\.35em\]{--tw-tracking:.35em;letter-spacing:.35em}.tracking-normal{--tw-tracking:var(--tracking-normal);letter-spacing:var(--tracking-normal)}.tracking-tight{--tw-tracking:var(--tracking-tight);letter-spacing:var(--tracking-tight)}.tracking-tighter{--tw-tracking:var(--tracking-tighter);letter-spacing:var(--tracking-tighter)}.tracking-wide{--tw-tracking:var(--tracking-wide);letter-spacing:var(--tracking-wide)}.tracking-wider{--tw-tracking:var(--tracking-wider);letter-spacing:var(--tracking-wider)}.tracking-widest{--tw-tracking:var(--tracking-widest);letter-spacing:var(--tracking-widest)}.text-wrap{text-wrap:wrap}.text-clip{text-overflow:clip}.text-ellipsis{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.text-blue-500{color:var(--color-blue-500)}.text-blue-600{color:var(--color-blue-600)}.text-blue-950{color:var(--color-blue-950)}.text-card-foreground{color:var(--color-card-foreground)}.text-cyan-500{color:var(--color-cyan-500)}.text-destructive-foreground{color:var(--color-destructive-foreground)}.text-green-500{color:var(--color-green-500)}.text-muted{color:var(--color-muted)}.text-muted-foreground{color:var(--color-muted-foreground)}.text-orange-500{color:var(--color-orange-500)}.text-pink-500{color:var(--color-pink-500)}.text-primary{color:var(--color-primary)}.text-primary-foreground{color:var(--color-primary-foreground)}.text-purple-500{color:var(--color-purple-500)}.text-red-600{color:var(--color-red-600)}.text-secondary{color:var(--color-secondary)}.text-secondary-foreground{color:var(--color-secondary-foreground)}.text-secondary\/40{color:color-mix(in srgb,hsl(var(--secondary))40%,transparent)}@supports (color:color-mix(in lab, red, red)){.text-secondary\/40{color:color-mix(in oklab,var(--color-secondary)40%,transparent)}}.text-secondary\/80{color:color-mix(in srgb,hsl(var(--secondary))80%,transparent)}@supports (color:color-mix(in lab, red, red)){.text-secondary\/80{color:color-mix(in oklab,var(--color-secondary)80%,transparent)}}.text-slate-300{color:var(--color-slate-300)}.text-slate-400{color:var(--color-slate-400)}.text-slate-500{color:var(--color-slate-500)}.text-slate-600{color:var(--color-slate-600)}.text-slate-700{color:var(--color-slate-700)}.text-slate-800{color:var(--color-slate-800)}.text-slate-900{color:var(--color-slate-900)}.text-slate-900\/10{color:#0f172b1a}@supports (color:color-mix(in lab, red, red)){.text-slate-900\/10{color:color-mix(in oklab,var(--color-slate-900)10%,transparent)}}.text-white{color:var(--color-white)}.text-white\/40{color:#fff6}@supports (color:color-mix(in lab, red, red)){.text-white\/40{color:color-mix(in oklab,var(--color-white)40%,transparent)}}.text-white\/50{color:#ffffff80}@supports (color:color-mix(in lab, red, red)){.text-white\/50{color:color-mix(in oklab,var(--color-white)50%,transparent)}}.text-white\/60{color:#fff9}@supports (color:color-mix(in lab, red, red)){.text-white\/60{color:color-mix(in oklab,var(--color-white)60%,transparent)}}.text-white\/70{color:#ffffffb3}@supports (color:color-mix(in lab, red, red)){.text-white\/70{color:color-mix(in oklab,var(--color-white)70%,transparent)}}.text-white\/80{color:#fffc}@supports (color:color-mix(in lab, red, red)){.text-white\/80{color:color-mix(in oklab,var(--color-white)80%,transparent)}}.text-white\/85{color:#ffffffd9}@supports (color:color-mix(in lab, red, red)){.text-white\/85{color:color-mix(in oklab,var(--color-white)85%,transparent)}}.text-white\/90{color:#ffffffe6}@supports (color:color-mix(in lab, red, red)){.text-white\/90{color:color-mix(in oklab,var(--color-white)90%,transparent)}}.text-yellow-300{color:var(--color-yellow-300)}.text-yellow-500{color:var(--color-yellow-500)}.capitalize{text-transform:capitalize}.lowercase{text-transform:lowercase}.normal-case{text-transform:none}.uppercase{text-transform:uppercase}.italic{font-style:italic}.not-italic{font-style:normal}.diagonal-fractions{--tw-numeric-fraction:diagonal-fractions;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.lining-nums{--tw-numeric-figure:lining-nums;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.oldstyle-nums{--tw-numeric-figure:oldstyle-nums;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.ordinal{--tw-ordinal:ordinal;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.proportional-nums{--tw-numeric-spacing:proportional-nums;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.slashed-zero{--tw-slashed-zero:slashed-zero;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.stacked-fractions{--tw-numeric-fraction:stacked-fractions;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.tabular-nums{--tw-numeric-spacing:tabular-nums;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.normal-nums{font-variant-numeric:normal}.line-through{text-decoration-line:line-through}.no-underline{text-decoration-line:none}.overline{text-decoration-line:overline}.underline{text-decoration-line:underline}.decoration-primary{-webkit-text-decoration-color:var(--color-primary);-webkit-text-decoration-color:var(--color-primary);-webkit-text-decoration-color:var(--color-primary);text-decoration-color:var(--color-primary)}.decoration-4{text-decoration-thickness:4px}.decoration-8{text-decoration-thickness:8px}.underline-offset-4{text-underline-offset:4px}.underline-offset-8{text-underline-offset:8px}.underline-offset-\[12px\]{text-underline-offset:12px}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.subpixel-antialiased{-webkit-font-smoothing:auto;-moz-osx-font-smoothing:auto}.opacity-0{opacity:0}.opacity-10{opacity:.1}.opacity-20{opacity:.2}.opacity-30{opacity:.3}.opacity-35{opacity:.35}.opacity-40{opacity:.4}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-80{opacity:.8}.opacity-90{opacity:.9}.opacity-100{opacity:1}.shadow{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-2xl{--tw-shadow:0 25px 50px -12px var(--tw-shadow-color,#00000040);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[0_0_10px_rgba\(217\,163\,33\,0\.5\)\]{--tw-shadow:0 0 10px var(--tw-shadow-color,#d9a32180);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[0_0_10px_rgba\(217\,163\,33\,0\.6\)\]{--tw-shadow:0 0 10px var(--tw-shadow-color,#d9a32199);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[0_20px_40px_-10px_rgba\(217\,163\,33\,0\.3\)\]{--tw-shadow:0 20px 40px -10px var(--tw-shadow-color,#d9a3214d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[0_20px_40px_rgba\(15\,23\,42\,0\.15\)\]{--tw-shadow:0 20px 40px var(--tw-shadow-color,#0f172a26);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[0_30px_80px_rgba\(15\,23\,42\,0\.6\)\]{--tw-shadow:0 30px 80px var(--tw-shadow-color,#0f172a99);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[0_32px_64px_-16px_rgba\(0\,0\,0\,0\.08\)\]{--tw-shadow:0 32px 64px -16px var(--tw-shadow-color,#00000014);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xl{--tw-shadow:0 20px 25px -5px var(--tw-shadow-color,#0000001a),0 8px 10px -6px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-1{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.inset-ring{--tw-inset-ring-shadow:inset 0 0 0 1px var(--tw-inset-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-blue-600\/20{--tw-shadow-color:#155dfc33}@supports (color:color-mix(in lab, red, red)){.shadow-blue-600\/20{--tw-shadow-color:color-mix(in oklab,color-mix(in oklab,var(--color-blue-600)20%,transparent)var(--tw-shadow-alpha),transparent)}}.shadow-primary\/20{--tw-shadow-color:color-mix(in srgb,hsl(var(--primary))20%,transparent)}@supports (color:color-mix(in lab, red, red)){.shadow-primary\/20{--tw-shadow-color:color-mix(in oklab,color-mix(in oklab,var(--color-primary)20%,transparent)var(--tw-shadow-alpha),transparent)}}.ring-orange-200\/70{--tw-ring-color:#ffd7a8b3}@supports (color:color-mix(in lab, red, red)){.ring-orange-200\/70{--tw-ring-color:color-mix(in oklab,var(--color-orange-200)70%,transparent)}}.ring-offset-background{--tw-ring-offset-color:var(--color-background)}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.blur{--tw-blur:blur(8px);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.blur-3xl{--tw-blur:blur(var(--blur-3xl));filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.blur-\[2px\]{--tw-blur:blur(2px);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.blur-\[120px\]{--tw-blur:blur(120px);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.blur-\[140px\]{--tw-blur:blur(140px);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.drop-shadow{--tw-drop-shadow-size:drop-shadow(0 1px 2px var(--tw-drop-shadow-color,#0000001a))drop-shadow(0 1px 1px var(--tw-drop-shadow-color,#0000000f));--tw-drop-shadow:drop-shadow(0 1px 2px #0000001a)drop-shadow(0 1px 1px #0000000f);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.filter{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.backdrop-blur{--tw-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-blur-\[1px\]{--tw-backdrop-blur:blur(1px);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-blur-md{--tw-backdrop-blur:blur(var(--blur-md));-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-blur-sm{--tw-backdrop-blur:blur(var(--blur-sm));-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-blur-xl{--tw-backdrop-blur:blur(var(--blur-xl));-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-grayscale{--tw-backdrop-grayscale:grayscale(100%);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-invert{--tw-backdrop-invert:invert(100%);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-sepia{--tw-backdrop-sepia:sepia(100%);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-filter{-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-shadow{transition-property:box-shadow;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-150{--tw-duration:.15s;transition-duration:.15s}.duration-300{--tw-duration:.3s;transition-duration:.3s}.duration-500{--tw-duration:.5s;transition-duration:.5s}.duration-700{--tw-duration:.7s;transition-duration:.7s}.duration-\[1\.5s\]{--tw-duration:1.5s;transition-duration:1.5s}.ease-in{--tw-ease:var(--ease-in);transition-timing-function:var(--ease-in)}.ease-in-out{--tw-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out)}.ease-out{--tw-ease:var(--ease-out);transition-timing-function:var(--ease-out)}.select-none{-webkit-user-select:none;user-select:none}.\[hostname\:port\]{hostname:port}.\[webkit-box-orient\:vertical\]{webkit-box-orient:vertical}.\[webkit-line-clamp\:3\]{webkit-line-clamp:3}.animation-delay-2000{animation-delay:2s}.animation-delay-4000{animation-delay:4s}.bg-diagonal{background:linear-gradient(135deg,#d9a321 0%,#b8860b 100%)}:where(.divide-x-reverse>:not(:last-child)){--tw-divide-x-reverse:1}.ring-inset{--tw-ring-inset:inset}@media (hover:hover){.group-hover\:-translate-x-1:is(:where(.group):hover *){--tw-translate-x:calc(var(--spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.group-hover\:-translate-y-2:is(:where(.group):hover *){--tw-translate-y:calc(var(--spacing)*-2);translate:var(--tw-translate-x)var(--tw-translate-y)}.group-hover\:scale-105:is(:where(.group):hover *){--tw-scale-x:105%;--tw-scale-y:105%;--tw-scale-z:105%;scale:var(--tw-scale-x)var(--tw-scale-y)}.group-hover\:scale-110:is(:where(.group):hover *){--tw-scale-x:110%;--tw-scale-y:110%;--tw-scale-z:110%;scale:var(--tw-scale-x)var(--tw-scale-y)}.group-hover\:scale-125:is(:where(.group):hover *){--tw-scale-x:125%;--tw-scale-y:125%;--tw-scale-z:125%;scale:var(--tw-scale-x)var(--tw-scale-y)}.group-hover\:animate-bounce:is(:where(.group):hover *){animation:var(--animate-bounce)}.group-hover\:border-primary\/30:is(:where(.group):hover *){border-color:color-mix(in srgb,hsl(var(--primary))30%,transparent)}@supports (color:color-mix(in lab, red, red)){.group-hover\:border-primary\/30:is(:where(.group):hover *){border-color:color-mix(in oklab,var(--color-primary)30%,transparent)}}.group-hover\:bg-blue-500:is(:where(.group):hover *){background-color:var(--color-blue-500)}.group-hover\:bg-green-500:is(:where(.group):hover *){background-color:var(--color-green-500)}.group-hover\:bg-primary:is(:where(.group):hover *){background-color:var(--color-primary)}.group-hover\:bg-primary\/10:is(:where(.group):hover *){background-color:color-mix(in srgb,hsl(var(--primary))10%,transparent)}@supports (color:color-mix(in lab, red, red)){.group-hover\:bg-primary\/10:is(:where(.group):hover *){background-color:color-mix(in oklab,var(--color-primary)10%,transparent)}}.group-hover\:bg-primary\/20:is(:where(.group):hover *){background-color:color-mix(in srgb,hsl(var(--primary))20%,transparent)}@supports (color:color-mix(in lab, red, red)){.group-hover\:bg-primary\/20:is(:where(.group):hover *){background-color:color-mix(in oklab,var(--color-primary)20%,transparent)}}.group-hover\:bg-purple-500:is(:where(.group):hover *){background-color:var(--color-purple-500)}.group-hover\:bg-white\/20:is(:where(.group):hover *){background-color:#fff3}@supports (color:color-mix(in lab, red, red)){.group-hover\:bg-white\/20:is(:where(.group):hover *){background-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.group-hover\:tracking-\[0\.12em\]:is(:where(.group):hover *){--tw-tracking:.12em;letter-spacing:.12em}.group-hover\:text-primary:is(:where(.group):hover *){color:var(--color-primary)}.group-hover\:text-white:is(:where(.group):hover *){color:var(--color-white)}.group-hover\:text-white\/90:is(:where(.group):hover *){color:#ffffffe6}@supports (color:color-mix(in lab, red, red)){.group-hover\:text-white\/90:is(:where(.group):hover *){color:color-mix(in oklab,var(--color-white)90%,transparent)}}.group-hover\:opacity-70:is(:where(.group):hover *){opacity:.7}.group-hover\:opacity-90:is(:where(.group):hover *){opacity:.9}.group-hover\:opacity-100:is(:where(.group):hover *){opacity:1}}.file\:border-0::file-selector-button{border-style:var(--tw-border-style);border-width:0}.file\:bg-transparent::file-selector-button{background-color:#0000}.file\:text-sm::file-selector-button{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.file\:font-medium::file-selector-button{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.file\:text-foreground::file-selector-button{color:var(--color-foreground)}.placeholder\:text-muted-foreground::placeholder{color:var(--color-muted-foreground)}@media (hover:hover){.hover\:-translate-y-0\.5:hover{--tw-translate-y:calc(var(--spacing)*-.5);translate:var(--tw-translate-x)var(--tw-translate-y)}.hover\:-translate-y-1:hover{--tw-translate-y:calc(var(--spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.hover\:-translate-y-2:hover{--tw-translate-y:calc(var(--spacing)*-2);translate:var(--tw-translate-x)var(--tw-translate-y)}.hover\:scale-105:hover{--tw-scale-x:105%;--tw-scale-y:105%;--tw-scale-z:105%;scale:var(--tw-scale-x)var(--tw-scale-y)}.hover\:scale-110:hover{--tw-scale-x:110%;--tw-scale-y:110%;--tw-scale-z:110%;scale:var(--tw-scale-x)var(--tw-scale-y)}.hover\:rotate-0:hover{rotate:none}.hover\:gap-3:hover{gap:calc(var(--spacing)*3)}.hover\:gap-6:hover{gap:calc(var(--spacing)*6)}.hover\:border-primary:hover{border-color:var(--color-primary)}.hover\:border-primary\/30:hover{border-color:color-mix(in srgb,hsl(var(--primary))30%,transparent)}@supports (color:color-mix(in lab, red, red)){.hover\:border-primary\/30:hover{border-color:color-mix(in oklab,var(--color-primary)30%,transparent)}}.hover\:border-secondary:hover{border-color:var(--color-secondary)}.hover\:border-white\/40:hover{border-color:#fff6}@supports (color:color-mix(in lab, red, red)){.hover\:border-white\/40:hover{border-color:color-mix(in oklab,var(--color-white)40%,transparent)}}.hover\:bg-accent:hover{background-color:var(--color-accent)}.hover\:bg-black\/70:hover{background-color:#000000b3}@supports (color:color-mix(in lab, red, red)){.hover\:bg-black\/70:hover{background-color:color-mix(in oklab,var(--color-black)70%,transparent)}}.hover\:bg-blue-700:hover{background-color:var(--color-blue-700)}.hover\:bg-destructive\/90:hover{background-color:color-mix(in srgb,hsl(var(--destructive))90%,transparent)}@supports (color:color-mix(in lab, red, red)){.hover\:bg-destructive\/90:hover{background-color:color-mix(in oklab,var(--color-destructive)90%,transparent)}}.hover\:bg-primary\/90:hover{background-color:color-mix(in srgb,hsl(var(--primary))90%,transparent)}@supports (color:color-mix(in lab, red, red)){.hover\:bg-primary\/90:hover{background-color:color-mix(in oklab,var(--color-primary)90%,transparent)}}.hover\:bg-secondary\/20:hover{background-color:color-mix(in srgb,hsl(var(--secondary))20%,transparent)}@supports (color:color-mix(in lab, red, red)){.hover\:bg-secondary\/20:hover{background-color:color-mix(in oklab,var(--color-secondary)20%,transparent)}}.hover\:bg-secondary\/80:hover{background-color:color-mix(in srgb,hsl(var(--secondary))80%,transparent)}@supports (color:color-mix(in lab, red, red)){.hover\:bg-secondary\/80:hover{background-color:color-mix(in oklab,var(--color-secondary)80%,transparent)}}.hover\:bg-secondary\/90:hover{background-color:color-mix(in srgb,hsl(var(--secondary))90%,transparent)}@supports (color:color-mix(in lab, red, red)){.hover\:bg-secondary\/90:hover{background-color:color-mix(in oklab,var(--color-secondary)90%,transparent)}}.hover\:bg-slate-50:hover{background-color:var(--color-slate-50)}.hover\:bg-slate-50\/80:hover{background-color:#f8fafccc}@supports (color:color-mix(in lab, red, red)){.hover\:bg-slate-50\/80:hover{background-color:color-mix(in oklab,var(--color-slate-50)80%,transparent)}}.hover\:bg-slate-100:hover{background-color:var(--color-slate-100)}.hover\:bg-slate-800:hover{background-color:var(--color-slate-800)}.hover\:bg-slate-900:hover{background-color:var(--color-slate-900)}.hover\:bg-white:hover{background-color:var(--color-white)}.hover\:bg-white\/10:hover{background-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.hover\:bg-white\/10:hover{background-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.hover\:bg-white\/20:hover{background-color:#fff3}@supports (color:color-mix(in lab, red, red)){.hover\:bg-white\/20:hover{background-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.hover\:text-accent-foreground:hover{color:var(--color-accent-foreground)}.hover\:text-cyan-500:hover{color:var(--color-cyan-500)}.hover\:text-primary:hover{color:var(--color-primary)}.hover\:text-primary\/80:hover{color:color-mix(in srgb,hsl(var(--primary))80%,transparent)}@supports (color:color-mix(in lab, red, red)){.hover\:text-primary\/80:hover{color:color-mix(in oklab,var(--color-primary)80%,transparent)}}.hover\:text-slate-900:hover{color:var(--color-slate-900)}.hover\:text-white:hover{color:var(--color-white)}.hover\:underline:hover{text-decoration-line:underline}.hover\:opacity-100:hover{opacity:1}.hover\:shadow-2xl:hover{--tw-shadow:0 25px 50px -12px var(--tw-shadow-color,#00000040);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.hover\:shadow-\[0_10px_30px_-12px_rgba\(0\,0\,0\,0\.4\)\]:hover{--tw-shadow:0 10px 30px -12px var(--tw-shadow-color,#0006);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.hover\:shadow-\[0_25px_50px_-12px_rgba\(217\,163\,33\,0\.5\)\]:hover{--tw-shadow:0 25px 50px -12px var(--tw-shadow-color,#d9a32180);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.hover\:shadow-\[0_48px_80px_-20px_rgba\(0\,0\,0\,0\.12\)\]:hover{--tw-shadow:0 48px 80px -20px var(--tw-shadow-color,#0000001f);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.hover\:shadow-xl:hover{--tw-shadow:0 20px 25px -5px var(--tw-shadow-color,#0000001a),0 8px 10px -6px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}}.focus\:border-primary:focus{border-color:var(--color-primary)}.focus\:ring-primary:focus{--tw-ring-color:var(--color-primary)}.focus-visible\:ring-1:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\:ring-2:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\:ring-ring:focus-visible{--tw-ring-color:var(--color-ring)}.focus-visible\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.focus-visible\:outline-none:focus-visible{--tw-outline-style:none;outline-style:none}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-50:disabled{opacity:.5}@media (min-width:40rem){.sm\:inline{display:inline}.sm\:flex-row{flex-direction:row}.sm\:justify-center{justify-content:center}.sm\:gap-4{gap:calc(var(--spacing)*4)}}@media (min-width:48rem){.md\:fixed{position:fixed}.md\:right-6{right:calc(var(--spacing)*6)}.md\:left-auto{left:auto}.md\:col-span-1{grid-column:span 1/span 1}.md\:col-span-2{grid-column:span 2/span 2}.md\:-mt-10{margin-top:calc(var(--spacing)*-10)}.md\:-mt-12{margin-top:calc(var(--spacing)*-12)}.md\:block{display:block}.md\:flex{display:flex}.md\:hidden{display:none}.md\:aspect-auto{aspect-ratio:auto}.md\:h-12{height:calc(var(--spacing)*12)}.md\:h-\[350px\]{height:350px}.md\:h-\[450px\]{height:450px}.md\:h-\[700px\]{height:700px}.md\:w-1\/3{width:33.3333%}.md\:w-2\/3{width:66.6667%}.md\:w-48{width:calc(var(--spacing)*48)}.md\:w-\[400px\]{width:400px}.md\:w-\[450px\]{width:450px}.md\:w-\[500px\]{width:500px}.md\:w-fit{width:fit-content}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:flex-row{flex-direction:row}.md\:justify-start{justify-content:flex-start}.md\:gap-8{gap:calc(var(--spacing)*8)}.md\:p-7{padding:calc(var(--spacing)*7)}.md\:p-12{padding:calc(var(--spacing)*12)}.md\:p-16{padding:calc(var(--spacing)*16)}.md\:px-4{padding-inline:calc(var(--spacing)*4)}.md\:px-10{padding-inline:calc(var(--spacing)*10)}.md\:py-5{padding-block:calc(var(--spacing)*5)}.md\:py-8{padding-block:calc(var(--spacing)*8)}.md\:py-16{padding-block:calc(var(--spacing)*16)}.md\:py-20{padding-block:calc(var(--spacing)*20)}.md\:text-left{text-align:left}.md\:text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.md\:text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.md\:text-4xl{font-size:var(--text-4xl);line-height:var(--tw-leading,var(--text-4xl--line-height))}.md\:text-5xl{font-size:var(--text-5xl);line-height:var(--tw-leading,var(--text-5xl--line-height))}.md\:text-6xl{font-size:var(--text-6xl);line-height:var(--tw-leading,var(--text-6xl--line-height))}.md\:text-7xl{font-size:var(--text-7xl);line-height:var(--tw-leading,var(--text-7xl--line-height))}.md\:text-8xl{font-size:var(--text-8xl);line-height:var(--tw-leading,var(--text-8xl--line-height))}.md\:text-9xl{font-size:var(--text-9xl);line-height:var(--tw-leading,var(--text-9xl--line-height))}.md\:text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.md\:text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.md\:text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.md\:text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}}@media (min-width:64rem){.lg\:col-span-2{grid-column:span 2/span 2}.lg\:block{display:block}.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:flex-row{flex-direction:row}.lg\:flex-row-reverse{flex-direction:row-reverse}}}@keyframes float{0%{transform:translateY(0)rotate(0)}50%{transform:translateY(-20px)rotate(2deg)}to{transform:translateY(0)rotate(0)}}.animate-float{animation:6s ease-in-out infinite float}@keyframes blob{0%{transform:translate(0)scale(1)}33%{transform:translate(30px,-50px)scale(1.1)}66%{transform:translate(-20px,20px)scale(.9)}to{transform:translate(0)scale(1)}}.animate-blob{animation:7s infinite blob}@media (prefers-reduced-motion:reduce){.animate-blob,.animate-float{animation:none!important}}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-pan-x{syntax:"*";inherits:false}@property --tw-pan-y{syntax:"*";inherits:false}@property --tw-pinch-zoom{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-divide-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-divide-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"";inherits:false;initial-value:100%}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}@property --tw-ordinal{syntax:"*";inherits:false}@property --tw-slashed-zero{syntax:"*";inherits:false}@property --tw-numeric-figure{syntax:"*";inherits:false}@property --tw-numeric-spacing{syntax:"*";inherits:false}@property --tw-numeric-fraction{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@keyframes spin{to{transform:rotate(360deg)}}@keyframes pulse{50%{opacity:.5}}@keyframes bounce{0%,to{animation-timing-function:cubic-bezier(.8,0,1,1);transform:translateY(-25%)}50%{animation-timing-function:cubic-bezier(0,0,.2,1);transform:none}} diff --git a/out/_next/static/chunks/2cb0ff15897c67e4.js b/out/_next/static/chunks/2cb0ff15897c67e4.js deleted file mode 100644 index e0ab54c..0000000 --- a/out/_next/static/chunks/2cb0ff15897c67e4.js +++ /dev/null @@ -1 +0,0 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,95468,e=>{"use strict";let a=(0,e.i(75254).default)("circle-check",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);e.s(["CheckCircle2",()=>a],95468)},33525,(e,a,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"warnOnce",{enumerable:!0,get:function(){return s}});let s=e=>{}},26577,e=>{e.v({data:[{area:"SkyFly Travel",placeId:"ChIJQz_NzJm_a0cRGW1U_iUDLuU",rating:5,userRatingCount:285,reviews:[{text:"Mindig a SkyFly-jal utazunk a repülőterekre. Utastársaim nevében is a legjobbakat tudom mondani a cégről és szívesen ajánlom őket mindenkinek. Pontos szervezés, kedves, udvarias és rutinos sofőrök.",rating:5,author:"Gyopar Kallos",publishTime:"2026-01-13T13:05:09.781273430Z"},{text:"Évente több alkalommal használom reptéri transzfer szolgáltatásukat. Minden alkalommal a megbeszéltek szerint, pontosan a helyszínen voltak. Sofőrjeik segítőkészek. A megrendelés leadása után nem zaklatják az embert különféle emailekkel. Az utazás előtti napon küldik a sofőr nevét, elérhetőségét.",rating:5,author:"Péter",publishTime:"2025-12-04T13:51:00.646252562Z"},{text:"Évek óta a SkyFly szolgáltatását használjuk, mindig maximálisan elégedett voltunk. Megbízhatóak, pontosak és rugalmasak, ami hosszú utazások előtt és után különösen sokat jelent. A sofőrök kedvesek, figyelmesek és biztonságosan vezetnek.\nAz autók tiszták, kényelmesek, minden alkalommal gördülékeny a teljes transzfer. Bátran ajánlom mindenkinek, aki minőségi és profi szolgáltatást keres!",rating:5,author:"Csaba Farkas",publishTime:"2025-11-19T10:02:24.246395337Z"},{text:"Nagyon elégedett voltam a szolgáltatással! A sofőr pontosan érkezett, udvarias és segítőkész volt, az autó tiszta és kényelmes. Az út gyorsan és biztonságosan telt, minden gördülékenyen zajlott. Bátran ajánlom mindenkinek, aki megbízható reptéri transzfert keres.",rating:5,author:"Tunde Csendes",publishTime:"2025-10-08T06:21:01.050570478Z"},{text:"100%-os pozitív tapasztalat, nagyon örülök, hogy rátaláltunk a cégre. A kapott árajánlatok közül messze a legjobb árat kaptuk tőlük reptéri transzferre.Korrekt ár, gördülékeny kommunikáció, gyors és precíz választ kaptunk minden kérdésünkre. A sofőr nagyon kedves, udvarias, pontos és megbízható volt. A járatunk késését is nagyon rugalmasan kezelték. Csak ajánlani tudjuk őket a legjobb szívvel.",rating:5,author:"Gruber Andrea",publishTime:"2025-09-22T12:24:38.650812077Z"}]}]})},61405,e=>{e.v({data:[{area:"SkyFly Travel",placeId:"ChIJQz_NzJm_a0cRGW1U_iUDLuU",rating:5,userRatingCount:285,reviews:[{text:"Sky fly is a great company. The booking website is easy to understand. And the prices are fare. Also when a last minute situation occurs they always make it work to get you to your destination. Over the years I had a couple situations where I needed a last second change and every time the make it work. The drivers are also great. I would recommend this shuttle service.",rating:5,author:"matthijs van leijenhorst",publishTime:"2025-09-22T07:55:17.174730841Z"},{text:"Travel SkyFly has been providing an outstanding experience. The drivers are professional, punctual, and polite, and their cars are always immaculate and comfortable. Whether you're traveling between Vienna and Budapest or need reliable airport transportation, I highly recommend their services. Truly a hassle-free and dependable choice!",rating:5,author:"Krisztian Nagy",publishTime:"2024-12-04T16:27:45.117418Z"},{text:"SkyFly Travel Kft is MORE than a partner in providing the best chauffeur service — professional, reliable, and always exceeding expectations. Highly recommended for anyone seeking comfort, punctuality, and premium service in every ride - ViziZene Kft",rating:5,author:"Zoltan Biczo",publishTime:"2025-05-11T05:53:25.464513Z"},{text:"Professional, punctual, polite driver. Nice clean cars. I would highly recommend to those who needs a ride from or to airport from Vienna or to Budapest. I had a last minute booking, they were there as promised. Punctual arriving for my flight. Highly recommend.",rating:5,author:"Judit Csibi",publishTime:"2023-09-05T21:47:44.438396Z"},{text:"I was asked to fill in a review about my experiences with flysky travel. I have been able to experience a taxi ride with them 6 times so far. Everything is arranged down to the last detail, the reservation, the information provided about how the trip will go.. and especially the drivers. I have no complaints about this, polite and friendly drivers. In my case I have been picked up several times by Roland Klauz. This driver is recommended to be picked up by. Super friendly guy. Who takes you from A to B in a relaxed way. And with whom good contact can be maintained before / during and after the ride. Applause for Skyfly. Greetings Martijn van der Meer.",rating:5,author:"Martijn van der Meer",publishTime:"2024-08-05T15:18:27.019324Z"}]}]})},95010,e=>{"use strict";var a=e.i(43476),t=e.i(46932),s=e.i(47163);e.s(["default",0,({className:e,children:r})=>(0,a.jsx)(t.motion.main,{className:(0,s.cn)(e),initial:{opacity:0,y:24},animate:{opacity:1,y:0},transition:{duration:.7,ease:[.16,1,.3,1]},children:r})])},70065,e=>{"use strict";var a=e.i(43476),t=e.i(71645),s=e.i(47163);let r=t.forwardRef(({className:e,...t},r)=>(0,a.jsx)("div",{ref:r,className:(0,s.cn)("rounded-3xl border bg-card text-card-foreground shadow-sm",e),...t}));r.displayName="Card",t.forwardRef(({className:e,...t},r)=>(0,a.jsx)("div",{ref:r,className:(0,s.cn)("flex flex-col space-y-1.5 p-6",e),...t})).displayName="CardHeader",t.forwardRef(({className:e,...t},r)=>(0,a.jsx)("h3",{ref:r,className:(0,s.cn)("text-2xl font-semibold leading-none tracking-tight",e),...t})).displayName="CardTitle",t.forwardRef(({className:e,...t},r)=>(0,a.jsx)("p",{ref:r,className:(0,s.cn)("text-sm text-muted-foreground",e),...t})).displayName="CardDescription",t.forwardRef(({className:e,...t},r)=>(0,a.jsx)("div",{ref:r,className:(0,s.cn)("p-6 pt-0",e),...t})).displayName="CardContent",t.forwardRef(({className:e,...t},r)=>(0,a.jsx)("div",{ref:r,className:(0,s.cn)("flex items-center p-6 pt-0",e),...t})).displayName="CardFooter",e.s(["Card",()=>r])},3116,e=>{"use strict";let a=(0,e.i(75254).default)("clock",[["path",{d:"M12 6v6l4 2",key:"mmk7yg"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);e.s(["Clock",()=>a],3116)},43432,e=>{"use strict";let a=(0,e.i(75254).default)("phone",[["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",key:"9njp5v"}]]);e.s(["Phone",()=>a],43432)},63488,e=>{"use strict";let a=(0,e.i(75254).default)("mail",[["path",{d:"m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7",key:"132q7q"}],["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2",key:"izxlao"}]]);e.s(["Mail",()=>a],63488)},43114,e=>{"use strict";var a=e.i(43476),t=e.i(63780),s=e.i(76841),r=e.i(95010),l=e.i(70065),i=e.i(71689),n=e.i(43432),o=e.i(63488),c=e.i(3116),d=e.i(22016),m=e.i(50661),u=e.i(47163),p=e.i(47167),h=e.i(71645),g=e.i(67881);let x=h.forwardRef(({className:e,type:t,...s},r)=>(0,a.jsx)("input",{type:t,className:(0,u.cn)("flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-base ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",e),ref:r,...s}));x.displayName="Input";let f=h.forwardRef(({className:e,...t},s)=>(0,a.jsx)("textarea",{className:(0,u.cn)("flex min-h-[80px] w-full rounded-md border border-input bg-background px-3 py-2 text-base ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",e),ref:s,...t}));f.displayName="Textarea";var b=e.i(75254);let y=(0,b.default)("send",[["path",{d:"M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z",key:"1ffxy3"}],["path",{d:"m21.854 2.147-10.94 10.939",key:"12cjpa"}]]);var v=e.i(95468);let k=(0,b.default)("circle-alert",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);function j(){let{t:e,language:t}=(0,m.useLanguage)(),s=p.default.env.NEXT_PUBLIC_RECAPTCHA_SITE_KEY||"6LfqD1osAAAAANd6P-3qin0cRdFQSGX92F02A3dE",r="contact_form",i=e.contactPage.form.serviceOptions.airport,[n,o]=(0,h.useState)(!1),[c,d]=(0,h.useState)("idle"),[u,b]=(0,h.useState)({name:"",email:"",phone:"",service:i,message:"",consent:!1});(0,h.useEffect)(()=>{let e="recaptcha-v3",a=()=>{window.grecaptcha?.ready(()=>o(!0))};if(document.getElementById(e))return void a();let t=document.createElement("script");t.id=e,t.src=`https://www.google.com/recaptcha/api.js?render=${s}`,t.async=!0,t.defer=!0,t.onload=a,t.onerror=()=>o(!1),document.head.appendChild(t)},[s]),(0,h.useEffect)(()=>{b(e=>e.service===i?e:{...e,service:i})},[i]);let j=async()=>{if(!window.grecaptcha)throw Error("reCAPTCHA not ready");return new Promise((e,a)=>{window.grecaptcha?.ready(()=>{window.grecaptcha?.execute(s,{action:r}).then(e).catch(a)})})},w=e=>{let{name:a,value:t,type:s}=e.target;b(r=>({...r,[a]:"checkbox"===s?e.target.checked:t}))},N=async a=>{if(a.preventDefault(),!n)try{await ((e=4e3)=>new Promise((a,t)=>{let s=Date.now(),r=()=>{window.grecaptcha?window.grecaptcha.ready(()=>a()):Date.now()-s>=e?t(Error("reCAPTCHA not ready")):setTimeout(r,150)};r()}))(),o(!0)}catch{alert(e.contactPage.form.recaptchaNotReady);return}if(!u.consent)return void alert(e.contactPage.form.consentRequired);d("loading");try{let e=await j();(await fetch("/contact.php",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({...u,recaptchaToken:e,recaptchaAction:r,language:t})})).ok?(d("success"),b({name:"",email:"",phone:"",service:i,message:"",consent:!1})):d("error")}catch(e){d("error")}};return"success"===c?(0,a.jsxs)(l.Card,{className:"p-12 text-center rounded-[3rem] border-none shadow-2xl bg-white",children:[(0,a.jsx)("div",{className:"bg-green-100 w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-8",children:(0,a.jsx)(v.CheckCircle2,{className:"w-10 h-10 text-green-500"})}),(0,a.jsx)("h3",{className:"text-3xl font-black text-slate-900 uppercase tracking-tighter mb-4",children:e.contactPage.form.successTitle}),(0,a.jsx)("p",{className:"text-slate-600 font-medium max-w-md mx-auto",children:e.contactPage.form.success}),(0,a.jsx)(g.Button,{onClick:()=>d("idle"),variant:"outline",className:"mt-8 rounded-full px-8",children:e.contactPage.form.successAction})]}):(0,a.jsx)(l.Card,{className:"rounded-[3rem] overflow-hidden border-none shadow-2xl bg-white",children:(0,a.jsxs)("form",{onSubmit:N,className:"p-8 md:p-12 space-y-8",children:[(0,a.jsxs)("div",{className:"grid grid-cols-1 md:grid-cols-2 gap-8",children:[(0,a.jsxs)("div",{className:"space-y-2",children:[(0,a.jsx)("label",{className:"text-xs font-bold uppercase tracking-widest text-slate-400 ml-1",children:e.contactPage.form.name}),(0,a.jsx)(x,{required:!0,name:"name",value:u.name,onChange:w,placeholder:e.contactPage.form.placeholders.name,className:"rounded-2xl h-14 bg-slate-50 border-slate-100 focus:border-primary focus:ring-primary transition-all"})]}),(0,a.jsxs)("div",{className:"space-y-2",children:[(0,a.jsx)("label",{className:"text-xs font-bold uppercase tracking-widest text-slate-400 ml-1",children:e.contactPage.form.email}),(0,a.jsx)(x,{required:!0,type:"email",name:"email",value:u.email,onChange:w,placeholder:e.contactPage.form.placeholders.email,className:"rounded-2xl h-14 bg-slate-50 border-slate-100 focus:border-primary focus:ring-primary transition-all"})]})]}),(0,a.jsxs)("div",{className:"grid grid-cols-1 md:grid-cols-2 gap-8",children:[(0,a.jsxs)("div",{className:"space-y-2",children:[(0,a.jsx)("label",{className:"text-xs font-bold uppercase tracking-widest text-slate-400 ml-1",children:e.contactPage.form.phone}),(0,a.jsx)(x,{name:"phone",value:u.phone,onChange:w,placeholder:e.contactPage.form.placeholders.phone,className:"rounded-2xl h-14 bg-slate-50 border-slate-100 focus:border-primary focus:ring-primary transition-all"})]}),(0,a.jsxs)("div",{className:"space-y-2",children:[(0,a.jsx)("label",{className:"text-xs font-bold uppercase tracking-widest text-slate-400 ml-1",children:e.contactPage.form.service}),(0,a.jsxs)("select",{name:"service",value:u.service,onChange:w,className:"w-full rounded-2xl h-14 bg-slate-50 border-slate-100 focus:border-primary focus:ring-primary transition-all px-4 text-sm font-medium",children:[(0,a.jsx)("option",{value:e.contactPage.form.serviceOptions.airport,children:e.contactPage.form.serviceOptions.airport}),(0,a.jsx)("option",{value:e.contactPage.form.serviceOptions.private,children:e.contactPage.form.serviceOptions.private}),(0,a.jsx)("option",{value:e.contactPage.form.serviceOptions.other,children:e.contactPage.form.serviceOptions.other})]})]})]}),(0,a.jsxs)("div",{className:"space-y-2",children:[(0,a.jsx)("label",{className:"text-xs font-bold uppercase tracking-widest text-slate-400 ml-1",children:e.contactPage.form.message}),(0,a.jsx)(f,{required:!0,name:"message",value:u.message,onChange:w,placeholder:e.contactPage.form.placeholders.message,rows:5,className:"rounded-[2rem] bg-slate-50 border-slate-100 focus:border-primary focus:ring-primary transition-all p-6 min-h-[150px]"})]}),(0,a.jsxs)("div",{className:"flex items-start gap-3",children:[(0,a.jsx)("input",{required:!0,type:"checkbox",name:"consent",checked:u.consent,onChange:w,className:"mt-1 w-5 h-5 rounded-lg border-slate-200 text-primary focus:ring-primary cursor-pointer"}),(0,a.jsx)("p",{className:"text-sm text-slate-500 leading-relaxed font-medium",children:e.contactPage.form.consent})]}),(0,a.jsx)("div",{className:"pt-4 flex justify-center md:justify-start",children:(0,a.jsx)("span",{className:"text-xs text-slate-400",children:e.contactPage.form.recaptchaNotice})}),"error"===c&&(0,a.jsxs)("div",{className:"bg-red-50 text-red-600 p-4 rounded-2xl flex items-center gap-3 text-sm font-bold",children:[(0,a.jsx)(k,{className:"w-5 h-5"}),e.contactPage.form.error]}),(0,a.jsx)(g.Button,{disabled:"loading"===c,type:"submit",size:"lg",className:"w-full md:w-fit rounded-full px-12 h-16 bg-primary hover:bg-primary/90 text-sm font-bold uppercase tracking-widest transition-all shadow-xl disabled:opacity-50",children:"loading"===c?(0,a.jsxs)("span",{className:"flex items-center gap-2",children:[(0,a.jsx)("div",{className:"w-4 h-4 border-2 border-white/30 border-t-white rounded-full animate-spin"}),e.contactPage.form.submitting]}):(0,a.jsxs)("span",{className:"flex items-center gap-2",children:[(0,a.jsx)(y,{className:"w-4 h-4"}),e.contactPage.form.button]})})]})})}function w(){let{t:e}=(0,m.useLanguage)(),p=[{icon:c.Clock,label:e.contactPage.info.infoLine,values:e.contactPage.info.infoLineValues,type:"tel",color:"bg-blue-500"},{icon:n.Phone,label:e.contactPage.info.dutyLine,values:[e.contactPage.info.dutyLineValue],type:"tel",color:"bg-primary"},{icon:o.Mail,label:e.contactPage.info.email,values:[e.contactPage.info.emailValue],type:"mailto",color:"bg-purple-500"}];return(0,a.jsxs)(r.default,{className:"relative min-h-screen bg-slate-50",children:[(0,a.jsx)(t.default,{darkMode:!0}),(0,a.jsxs)("div",{className:"absolute md:fixed inset-0 pointer-events-none -z-10 overflow-hidden",children:[(0,a.jsx)("div",{className:"absolute top-1/4 -right-20 w-96 h-96 bg-primary/5 rounded-full blur-3xl opacity-30 animate-blob"}),(0,a.jsx)("div",{className:"absolute top-1/2 -left-20 w-80 h-80 bg-secondary/5 rounded-full blur-3xl opacity-30 animate-blob animation-delay-2000"})]}),(0,a.jsxs)("section",{className:"relative pt-40 pb-32 overflow-hidden bg-[#D9A321]",children:[(0,a.jsx)("div",{className:"absolute inset-0 bg-diagonal opacity-100 -z-10",style:{background:"linear-gradient(135deg, #D9A321 0%, #1A1A1A 100%)"}}),(0,a.jsx)("div",{className:"absolute bottom-0 left-0 w-full h-[100px] bg-slate-50 transform -skew-y-3 origin-bottom-left -z-10"}),(0,a.jsxs)("div",{className:"max-w-7xl mx-auto px-6 relative z-10",children:[(0,a.jsxs)(d.default,{href:"/",className:"inline-flex items-center text-white/70 hover:text-white mb-10 transition-colors group",children:[(0,a.jsx)("div",{className:"bg-white/10 p-2 rounded-full mr-3 group-hover:bg-white/20 transition-colors",children:(0,a.jsx)(i.ArrowLeft,{className:"w-4 h-4"})}),(0,a.jsx)("span",{className:"text-xs font-bold tracking-[0.2em] uppercase",children:e.contactPage.back})]}),(0,a.jsxs)("div",{className:"space-y-4",children:[(0,a.jsxs)("h1",{className:"text-5xl md:text-8xl font-black text-white tracking-tighter leading-none uppercase",children:[e.contactPage.title," ",(0,a.jsx)("br",{}),(0,a.jsx)("span",{className:"text-secondary/40 italic",children:e.contactPage.titleAccent})]}),(0,a.jsx)("p",{className:"text-xl text-white/70 max-w-2xl leading-relaxed font-medium",children:e.contactPage.description})]})]})]}),(0,a.jsx)("section",{className:"py-24",children:(0,a.jsxs)("div",{className:"max-w-7xl mx-auto px-6",children:[(0,a.jsx)("div",{className:"grid grid-cols-1 lg:grid-cols-3 gap-8",children:p.map((e,t)=>(0,a.jsxs)(l.Card,{className:"p-10 rounded-[2.5rem] border-none shadow-lg bg-white group hover:-translate-y-2 transition-all duration-300",children:[(0,a.jsx)("div",{className:(0,u.cn)("w-14 h-14 rounded-2xl flex items-center justify-center mb-8 shadow-lg",e.color),children:(0,a.jsx)(e.icon,{className:"w-6 h-6 text-white"})}),(0,a.jsx)("p",{className:"text-sm font-bold text-slate-400 uppercase tracking-widest mb-2",children:e.label}),(0,a.jsx)("div",{className:"space-y-2",children:e.values.map((t,s)=>{let r="mailto"===e.type?`mailto:${t}`:`tel:${t.replace(/\s/g,"")}`;return(0,a.jsx)("a",{href:r,className:"text-2xl font-black text-slate-900 hover:text-primary transition-colors",children:t},`${t}-${s}`)})})]},t))}),(0,a.jsx)("div",{className:"mt-24",children:(0,a.jsxs)("div",{className:"max-w-4xl mx-auto",children:[(0,a.jsxs)("div",{className:"text-center mb-16 space-y-4",children:[(0,a.jsx)("h2",{className:"text-4xl md:text-6xl font-black text-slate-900 uppercase tracking-tighter",children:e.contactPage.cta.title}),(0,a.jsx)("p",{className:"text-slate-500 font-medium max-w-xl mx-auto",children:e.contactPage.cta.description})]}),(0,a.jsx)(j,{})]})}),(0,a.jsxs)("div",{className:"mt-32 grid grid-cols-1 md:grid-cols-2 gap-12 pt-24 border-t border-slate-200",children:[(0,a.jsxs)("div",{className:"space-y-8",children:[(0,a.jsx)("div",{className:"bg-slate-900 text-white px-6 py-2 rounded-full inline-block text-[10px] font-black uppercase tracking-[0.3em]",children:e.contactPage.business.title}),(0,a.jsxs)("div",{className:"space-y-4",children:[(0,a.jsx)("p",{className:"text-xl font-black text-slate-900",children:e.contactPage.business.operator}),(0,a.jsxs)("div",{className:"space-y-2",children:[(0,a.jsx)("p",{className:"text-slate-500 font-medium",children:e.contactPage.business.address}),(0,a.jsx)("p",{className:"text-slate-500 font-medium",children:e.contactPage.business.taxNumber}),(0,a.jsx)("p",{className:"text-slate-500 font-medium",children:e.contactPage.business.bankAccount})]}),(0,a.jsxs)("div",{className:"space-y-2 pt-4",children:[(0,a.jsx)("p",{className:"text-primary font-black",children:e.contactPage.business.phone}),(0,a.jsx)("p",{className:"text-primary font-black",children:e.contactPage.business.infoLine}),(0,a.jsx)("p",{className:"text-slate-900 font-bold",children:e.contactPage.business.email})]})]})]}),(0,a.jsxs)("div",{className:"space-y-8",children:[(0,a.jsx)("div",{className:"bg-primary text-white px-6 py-2 rounded-full inline-block text-[10px] font-black uppercase tracking-[0.3em]",children:e.contactPage.legal.title}),(0,a.jsxs)("div",{className:"space-y-4",children:[(0,a.jsx)("p",{className:"text-xl font-black text-slate-900",children:e.contactPage.legal.name}),(0,a.jsxs)("div",{className:"space-y-2",children:[(0,a.jsx)("p",{className:"text-slate-500 font-medium",children:e.contactPage.legal.office}),(0,a.jsx)("p",{className:"text-slate-500 font-medium",children:e.contactPage.legal.address})]}),(0,a.jsxs)("div",{className:"space-y-2 pt-4",children:[(0,a.jsx)(d.default,{href:"https://www.12gyoriugyvediiroda.hu",target:"_blank",className:"text-primary font-black block hover:underline",children:e.contactPage.legal.web}),(0,a.jsx)("p",{className:"text-slate-900 font-bold",children:e.contactPage.legal.phone})]})]})]})]})]})}),(0,a.jsx)(s.default,{})]})}e.s(["default",()=>w],43114)}]); \ No newline at end of file diff --git a/out/_next/static/chunks/4a1f084bd07d6520.js b/out/_next/static/chunks/4a1f084bd07d6520.js new file mode 100644 index 0000000..27dffc4 --- /dev/null +++ b/out/_next/static/chunks/4a1f084bd07d6520.js @@ -0,0 +1 @@ +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,33525,(e,t,s)=>{"use strict";Object.defineProperty(s,"__esModule",{value:!0}),Object.defineProperty(s,"warnOnce",{enumerable:!0,get:function(){return a}});let a=e=>{}},70065,e=>{"use strict";var t=e.i(43476),s=e.i(71645),a=e.i(47163);let l=s.forwardRef(({className:e,...s},l)=>(0,t.jsx)("div",{ref:l,className:(0,a.cn)("rounded-3xl border bg-card text-card-foreground shadow-sm",e),...s}));l.displayName="Card",s.forwardRef(({className:e,...s},l)=>(0,t.jsx)("div",{ref:l,className:(0,a.cn)("flex flex-col space-y-1.5 p-6",e),...s})).displayName="CardHeader",s.forwardRef(({className:e,...s},l)=>(0,t.jsx)("h3",{ref:l,className:(0,a.cn)("text-2xl font-semibold leading-none tracking-tight",e),...s})).displayName="CardTitle",s.forwardRef(({className:e,...s},l)=>(0,t.jsx)("p",{ref:l,className:(0,a.cn)("text-sm text-muted-foreground",e),...s})).displayName="CardDescription",s.forwardRef(({className:e,...s},l)=>(0,t.jsx)("div",{ref:l,className:(0,a.cn)("p-6 pt-0",e),...s})).displayName="CardContent",s.forwardRef(({className:e,...s},l)=>(0,t.jsx)("div",{ref:l,className:(0,a.cn)("flex items-center p-6 pt-0",e),...s})).displayName="CardFooter",e.s(["Card",()=>l])},3116,e=>{"use strict";let t=(0,e.i(75254).default)("clock",[["path",{d:"M12 6v6l4 2",key:"mmk7yg"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);e.s(["Clock",()=>t],3116)},61911,81418,e=>{"use strict";var t=e.i(75254);let s=(0,t.default)("users",[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["path",{d:"M16 3.128a4 4 0 0 1 0 7.744",key:"16gr8j"}],["path",{d:"M22 21v-2a4 4 0 0 0-3-3.87",key:"kshegd"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}]]);e.s(["Users",()=>s],61911);let a=(0,t.default)("shield-check",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);e.s(["ShieldCheck",()=>a],81418)},83157,e=>{"use strict";let t=(0,e.i(75254).default)("facebook",[["path",{d:"M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z",key:"1jg4f8"}]]);e.s(["Facebook",()=>t],83157)},70273,e=>{"use strict";let t=(0,e.i(75254).default)("star",[["path",{d:"M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z",key:"r04s7s"}]]);e.s(["Star",()=>t],70273)},31713,e=>{"use strict";var t=e.i(43476),s=e.i(63780),a=e.i(67881),l=e.i(70065),r=e.i(70273),i=e.i(3116),o=e.i(61911),c=e.i(81418),n=e.i(22016),d=e.i(50661),x=e.i(57688),m=e.i(71645);let p=()=>{let{t:e,language:s}=(0,d.useLanguage)(),[p,h]=(0,m.useState)(null),[u,f]=(0,m.useState)(null);(0,m.useEffect)(()=>{(async()=>{try{let e=await fetch(`/ratings_${s}.json`),t=await e.json();h(t);let a=t?.data?.[0]?.reviews??[];if(a.length>0){let e=Math.floor(Math.random()*a.length);f(a[e])}}catch(e){console.error("Error fetching ratings:",e)}})()},[s]);let g=p?.data?.[0]?.rating??5,b=p?.data?.[0]?.userRatingCount??0,v=Math.max(0,Math.min(100,g/5*100)),j=u?.author??e.hero.cards.reviewAuthor,w=(0,m.useMemo)(()=>j&&j.split(" ").filter(Boolean).slice(0,2).map(e=>e[0]?.toUpperCase()).join("")||e.hero.cards.reviewInitial,[j,e.hero.cards.reviewInitial]),N=Math.max(0,Math.min(5,Math.round(u?.rating??5))),k=u?.text??e.hero.cards.reviewText,y=k.length>120?`${k.slice(0,120).trimEnd()}...`:k;return(0,t.jsxs)("section",{className:"relative min-h-screen flex items-center pt-20 overflow-hidden",children:[(0,t.jsx)("div",{className:"absolute inset-0 bg-diagonal -z-10"}),(0,t.jsx)("div",{className:"absolute bottom-0 left-0 w-full h-[20vh] bg-background transform -skew-y-3 origin-bottom-left -z-10"}),(0,t.jsxs)("div",{className:"max-w-7xl mx-auto px-6 grid grid-cols-1 lg:grid-cols-2 gap-12 items-center",children:[(0,t.jsxs)("div",{className:"text-white space-y-8",children:[(0,t.jsxs)("a",{href:"https://g.page/r/CRltVP4lAy7lEBM/review",target:"_blank",rel:"noopener noreferrer",className:"group flex items-center space-x-2 py-1 px-3 bg-white/10 rounded-full w-fit backdrop-blur-sm border border-white/20 transition-all duration-300 hover:bg-white/20 hover:-translate-y-0.5 hover:shadow-[0_10px_30px_-12px_rgba(0,0,0,0.4)] hover:border-white/40","aria-label":`${g.toFixed(1)} ${e.hero.rating} (${b})`,children:[(0,t.jsxs)("span",{className:"text-xs font-semibold text-white/90 transition-transform duration-300 group-hover:scale-105",children:[g.toFixed(1),"/5.0"]}),(0,t.jsx)("div",{className:"relative flex items-center leading-none",children:(0,t.jsx)("span",{className:"text-[14px] leading-none tracking-[0.08em] font-semibold transition-all duration-300 group-hover:tracking-[0.12em]",style:{backgroundImage:`linear-gradient(90deg, #fde047 ${v}%, rgba(255,255,255,0.35) ${v}%)`,WebkitBackgroundClip:"text",color:"transparent"},"aria-hidden":"true",children:"★★★★★"})}),(0,t.jsxs)("span",{className:"text-xs font-semibold text-white/80 transition-colors duration-300 group-hover:text-white/90",children:["(",b,")"]}),(0,t.jsx)("span",{className:"text-xs font-semibold text-white/90 transition-colors duration-300 group-hover:text-white",children:e.hero.rating})]}),(0,t.jsxs)("h1",{className:"text-5xl md:text-7xl font-black leading-[0.9] tracking-tighter",children:[e.hero.title," ",(0,t.jsx)("br",{}),(0,t.jsx)("span",{className:"text-primary-foreground underline decoration-primary decoration-8 underline-offset-[12px]",children:e.hero.titleAccent})]}),(0,t.jsx)("p",{className:"text-xl text-white/80 max-w-lg leading-relaxed font-medium",children:e.hero.description}),(0,t.jsxs)("div",{className:"flex flex-wrap gap-4 pt-4",children:[(0,t.jsx)(a.Button,{asChild:!0,size:"lg",className:"bg-slate-900 text-white hover:bg-slate-800 rounded-full px-10 h-14 text-sm font-bold uppercase tracking-widest shadow-xl",children:(0,t.jsx)("a",{href:"https://app.skyflytravel.hu/public/offers/new",target:"_blank",rel:"noopener noreferrer",children:e.hero.booking})}),(0,t.jsx)(a.Button,{asChild:!0,size:"lg",variant:"default",className:"bg-white text-slate-900 hover:bg-slate-100 rounded-full px-10 h-14 text-sm font-bold uppercase tracking-widest shadow-lg",children:(0,t.jsx)(n.default,{href:"/arak",children:e.hero.fares})})]})]}),(0,t.jsxs)("div",{className:"relative hidden lg:block",children:[(0,t.jsx)("div",{className:"animate-float",children:(0,t.jsx)(l.Card,{className:"w-[500px] bg-white shadow-2xl rounded-[2.5rem] p-6 transform -rotate-2 overflow-hidden border-none backdrop-blur-sm bg-white/95",children:(0,t.jsxs)("div",{className:"space-y-6",children:[(0,t.jsxs)("div",{className:"flex justify-between items-center border-b border-slate-100 pb-4",children:[(0,t.jsxs)("div",{className:"flex items-center space-x-2",children:[(0,t.jsx)("div",{className:"w-2 h-2 bg-green-500 rounded-full animate-pulse"}),(0,t.jsx)("span",{className:"text-[10px] font-bold text-slate-400 uppercase tracking-widest",children:e.hero.cards.activeBooking})]}),(0,t.jsx)("div",{className:"py-1 px-3 bg-primary/10 rounded-full text-primary text-[10px] font-bold",children:e.hero.cards.fixedPrice})]}),(0,t.jsxs)("div",{className:"space-y-4",children:[(0,t.jsxs)("div",{className:"flex items-center justify-between",children:[(0,t.jsxs)("div",{className:"space-y-1",children:[(0,t.jsx)("p",{className:"text-[10px] text-slate-400 font-bold uppercase",children:e.hero.cards.departure}),(0,t.jsx)("p",{className:"text-xl font-black text-slate-900",children:e.hero.cards.fromCity})]}),(0,t.jsx)("div",{className:"flex-1 px-6 flex flex-col items-center",children:(0,t.jsx)("div",{className:"w-full h-px bg-slate-200 relative",children:(0,t.jsx)("div",{className:"absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 bg-white px-2",children:(0,t.jsx)(r.Star,{className:"w-4 h-4 text-primary fill-primary"})})})}),(0,t.jsxs)("div",{className:"text-right space-y-1",children:[(0,t.jsx)("p",{className:"text-[10px] text-slate-400 font-bold uppercase",children:e.hero.cards.destination}),(0,t.jsx)("p",{className:"text-xl font-black text-slate-900",children:e.hero.cards.toAirport})]})]}),(0,t.jsxs)("div",{className:"grid grid-cols-3 gap-4 pt-4",children:[(0,t.jsxs)("div",{className:"p-3 bg-slate-50 rounded-2xl flex flex-col items-center text-center space-y-1 border border-slate-100",children:[(0,t.jsx)(i.Clock,{className:"w-5 h-5 text-primary"}),(0,t.jsx)("p",{className:"text-[10px] font-bold",children:e.hero.cards.duration})]}),(0,t.jsxs)("div",{className:"p-3 bg-slate-50 rounded-2xl flex flex-col items-center text-center space-y-1 border border-slate-100",children:[(0,t.jsx)(o.Users,{className:"w-5 h-5 text-primary"}),(0,t.jsx)("p",{className:"text-[10px] font-bold",children:e.hero.cards.passengers})]}),(0,t.jsxs)("div",{className:"p-3 bg-slate-50 rounded-2xl flex flex-col items-center text-center space-y-1 border border-slate-100",children:[(0,t.jsx)(c.ShieldCheck,{className:"w-5 h-5 text-primary"}),(0,t.jsx)("p",{className:"text-[10px] font-bold",children:e.hero.cards.insured})]})]})]}),(0,t.jsx)(a.Button,{className:"w-full h-12 rounded-xl bg-slate-900 hover:bg-slate-800 text-white font-bold text-xs uppercase tracking-widest",children:e.hero.cards.manageBooking})]})})}),(0,t.jsx)("div",{className:"absolute -top-16 -right-10 animate-float animation-delay-2000",children:(0,t.jsxs)(l.Card,{className:"w-56 bg-white shadow-xl rounded-3xl p-3 transform rotate-6 border-none overflow-hidden group",children:[(0,t.jsxs)("div",{className:"relative w-full h-40 rounded-2xl overflow-hidden mb-3",children:[(0,t.jsx)(x.default,{src:"/images/family.jpg",alt:"Family Travel",fill:!0,sizes:"(min-width: 1024px) 224px, 50vw",className:"object-cover group-hover:scale-110 transition-transform duration-500"}),(0,t.jsx)("div",{className:"absolute top-2 right-2 bg-primary text-white text-[10px] font-bold px-2 py-1 rounded-lg shadow-lg",children:e.hero.cards.familyTag})]}),(0,t.jsxs)("div",{className:"px-1",children:[(0,t.jsx)("p",{className:"text-sm font-black text-slate-900",children:e.hero.cards.freeChildSeat}),(0,t.jsx)("p",{className:"text-[10px] text-slate-500 font-medium",children:e.hero.cards.familyDesc})]})]})}),(0,t.jsx)("div",{className:"absolute -bottom-16 -left-10 animate-float animation-delay-4000",children:(0,t.jsxs)(l.Card,{className:"w-64 bg-white shadow-xl rounded-3xl p-3 transform -rotate-3 border-none overflow-hidden group",children:[(0,t.jsxs)("div",{className:"flex items-center space-x-3 mb-3",children:[(0,t.jsx)("div",{className:"relative w-16 h-16 rounded-2xl overflow-hidden shrink-0",children:(0,t.jsx)(x.default,{src:"/images/premium_van.png",alt:"Premium Fleet",fill:!0,sizes:"64px",className:"object-cover"})}),(0,t.jsxs)("div",{children:[(0,t.jsx)("p",{className:"text-sm font-black text-slate-900",children:e.hero.cards.premiumFleet}),(0,t.jsx)("p",{className:"text-[10px] text-primary font-bold uppercase",children:e.hero.cards.mercedes})]})]}),(0,t.jsxs)("div",{className:"flex items-center justify-between pt-2 border-t border-slate-50",children:[(0,t.jsxs)("div",{className:"flex items-center space-x-1",children:[(0,t.jsx)("div",{className:"w-1.5 h-1.5 bg-green-500 rounded-full"}),(0,t.jsx)("span",{className:"text-[9px] font-bold text-slate-400 uppercase",children:e.hero.cards.nonStop})]}),(0,t.jsx)("span",{className:"text-[10px] font-black text-slate-900",children:e.hero.cards.supportTime})]})]})}),(0,t.jsx)("div",{className:"absolute top-1/2 -right-16 translate-y-1/2 animate-float animation-delay-3000",children:(0,t.jsxs)(l.Card,{className:"w-52 bg-primary/10 backdrop-blur-md shadow-lg rounded-2xl p-4 border border-white/20 transform -rotate-6",children:[(0,t.jsx)("div",{className:"flex mb-2",children:[1,2,3,4,5].map(e=>(0,t.jsx)(r.Star,{className:"w-3 h-3 text-primary",fill:e<=N?"currentColor":"none",stroke:"currentColor"},e))}),(0,t.jsx)("p",{className:"text-[10px] font-medium text-slate-800 leading-tight italic",children:y}),(0,t.jsxs)("div",{className:"flex items-center space-x-2 mt-3",children:[(0,t.jsx)("div",{className:"w-6 h-6 rounded-full bg-primary/20 flex items-center justify-center text-[8px] font-bold",children:w}),(0,t.jsx)("span",{className:"text-[8px] font-bold text-slate-500",children:j})]})]})})]})]})]})};var h=e.i(47163);let u=({title:e,oversizedTitle:s,description:r,ctaText:i,reversed:o=!1,accentColor:c="text-primary",children:d,href:x,customCTA:m,externalLink:p=!1})=>(0,t.jsx)("section",{className:"py-12 md:py-16 overflow-hidden",children:(0,t.jsx)("div",{className:"max-w-7xl mx-auto px-6",children:(0,t.jsxs)("div",{className:(0,h.cn)("flex flex-col lg:flex-row items-center gap-16",o&&"lg:flex-row-reverse"),children:[(0,t.jsxs)("div",{className:"flex-1 space-y-8",children:[(0,t.jsxs)("div",{className:"space-y-2",children:[(0,t.jsx)("h3",{className:(0,h.cn)("text-6xl md:text-8xl font-black uppercase tracking-tighter opacity-20",c),children:s}),(0,t.jsx)("h2",{className:"text-4xl font-bold tracking-tight -mt-8 md:-mt-12 ml-2",children:e})]}),(0,t.jsx)("p",{className:"text-xl text-slate-600 leading-relaxed max-w-xl",children:r}),m||i&&(x?(0,t.jsx)(a.Button,{asChild:!0,variant:"pill",className:(0,h.cn)("px-8 bg-white border-none shadow-xl hover:shadow-2xl text-lg font-black uppercase tracking-widest",c),children:p?(0,t.jsx)("a",{href:x,target:"_blank",rel:"noopener noreferrer",children:i}):(0,t.jsx)(n.default,{href:x,children:i})}):(0,t.jsx)(a.Button,{variant:"pill",className:(0,h.cn)("px-8 bg-white border-none shadow-xl hover:shadow-2xl text-lg font-black uppercase tracking-widest",c),children:i}))]}),(0,t.jsx)("div",{className:"flex-1 w-full flex justify-center",children:d||(0,t.jsxs)("div",{className:"relative group",children:[(0,t.jsx)("div",{className:(0,h.cn)("absolute inset-0 blur-3xl opacity-20 rounded-full transition-all duration-500 scale-110 group-hover:scale-125",c.replace("text-","bg-"))}),(0,t.jsx)(l.Card,{className:"relative w-full aspect-video md:w-[500px] md:h-[350px] bg-white shadow-2xl rounded-[2.5rem] overflow-hidden border-none transform transition-transform duration-700 group-hover:scale-105",children:(0,t.jsx)("div",{className:"w-full h-full bg-slate-50 flex items-center justify-center",children:(0,t.jsx)("div",{className:(0,h.cn)("w-20 h-20 rounded-full opacity-20",c.replace("text-","bg-"))})})})]})})]})})});var f=e.i(46932),g=e.i(88653);let b=()=>{let{t:e}=(0,d.useLanguage)(),[s,l]=m.useState(!1);return m.useEffect(()=>{localStorage.getItem("cookie-consent")||setTimeout(()=>l(!0),2e3)},[]),(0,t.jsx)(g.AnimatePresence,{children:s&&(0,t.jsx)(f.motion.div,{initial:{y:100,opacity:0},animate:{y:0,opacity:1},exit:{y:100,opacity:0},className:"fixed bottom-6 left-6 right-6 md:left-auto md:right-6 md:w-[400px] bg-white shadow-2xl rounded-3xl p-6 z-[100] border border-slate-100",children:(0,t.jsxs)("div",{className:"space-y-4",children:[(0,t.jsx)("h4",{className:"font-bold text-lg",children:e.cookie.title}),(0,t.jsx)("p",{className:"text-sm text-slate-600 leading-relaxed",children:e.cookie.description}),(0,t.jsxs)("div",{className:"flex gap-3",children:[(0,t.jsx)(a.Button,{onClick:()=>{localStorage.setItem("cookie-consent","true"),l(!1)},className:"flex-1 rounded-full",children:e.cookie.accept}),(0,t.jsx)(a.Button,{variant:"outline",onClick:()=>l(!1),className:"flex-1 rounded-full",children:e.cookie.decline})]})]})})})};var v=e.i(76841),j=e.i(71689),w=e.i(83157);function N(){let{t:e}=(0,d.useLanguage)();return(0,t.jsxs)("main",{className:"relative min-h-screen",children:[(0,t.jsx)(s.default,{darkMode:!0}),(0,t.jsxs)("div",{className:"absolute md:fixed inset-0 pointer-events-none -z-10 overflow-hidden",children:[(0,t.jsx)("div",{className:"absolute top-1/4 -left-20 w-96 h-96 bg-purple-200 rounded-full blur-3xl opacity-30 animate-blob"}),(0,t.jsx)("div",{className:"absolute top-1/2 -right-20 w-80 h-80 bg-blue-200 rounded-full blur-3xl opacity-30 animate-blob animation-delay-2000"}),(0,t.jsx)("div",{className:"absolute bottom-1/4 left-1/2 -translate-x-1/2 w-[500px] h-[500px] bg-pink-100 rounded-full blur-3xl opacity-20 animate-blob animation-delay-4000"})]}),(0,t.jsx)(p,{}),(0,t.jsx)(u,{oversizedTitle:e.features.transfer.oversized,title:e.features.transfer.title,description:e.features.transfer.description,ctaText:e.features.transfer.cta,accentColor:"text-blue-500",href:"https://app.skyflytravel.hu/public/offers/new",children:(0,t.jsxs)("div",{className:"relative group p-4",children:[(0,t.jsx)("div",{className:"absolute inset-0 bg-blue-500/10 blur-3xl rounded-full scale-110 group-hover:scale-125 transition-transform"}),(0,t.jsxs)(l.Card,{className:"relative w-full aspect-square md:w-[450px] md:h-[450px] rounded-[3rem] overflow-hidden border-none shadow-2xl",children:[(0,t.jsx)(x.default,{src:"/images/IMG_3602.jpeg",alt:"Reptéri transzfer",fill:!0,sizes:"(min-width: 768px) 450px, 90vw",className:"object-cover group-hover:scale-105 transition-transform duration-700"}),(0,t.jsx)("div",{className:"absolute bottom-0 left-0 right-0 p-8 bg-gradient-to-t from-black/90 via-black/50 to-transparent pt-32",children:(0,t.jsxs)("div",{className:"space-y-2",children:[(0,t.jsx)("p",{className:"text-white text-xl font-black uppercase tracking-widest",children:e.features.transfer.cardCaption}),(0,t.jsx)("p",{className:"text-white/80 text-sm font-medium leading-relaxed",children:e.features.transfer.cardDescription})]})})]})]})}),(0,t.jsx)(u,{oversizedTitle:e.features.packages.oversized,title:e.features.packages.title,description:e.features.packages.description,ctaText:e.features.packages.cta,reversed:!0,accentColor:"text-purple-500",href:"/szolgaltatasok",children:(0,t.jsxs)("div",{className:"relative group p-4",children:[(0,t.jsx)("div",{className:"absolute inset-0 bg-purple-500/10 blur-3xl rounded-full scale-110 group-hover:scale-125 transition-transform"}),(0,t.jsxs)(l.Card,{className:"relative w-full aspect-square md:w-[450px] md:h-[450px] rounded-[3rem] overflow-hidden border-none shadow-2xl",children:[(0,t.jsx)(x.default,{src:"/images/family.jpg",alt:"Family Packages",fill:!0,sizes:"(min-width: 768px) 450px, 90vw",className:"object-cover group-hover:scale-105 transition-transform duration-700"}),(0,t.jsx)("div",{className:"absolute bottom-0 left-0 right-0 p-8 bg-gradient-to-t from-black/90 via-black/50 to-transparent pt-32",children:(0,t.jsxs)("div",{className:"space-y-2",children:[(0,t.jsx)("p",{className:"text-white text-xl font-black uppercase tracking-widest",children:e.features.packages.cardCaption}),(0,t.jsx)("p",{className:"text-white/80 text-sm font-medium leading-relaxed",children:e.features.packages.cardDescription})]})})]})]})}),(0,t.jsx)(u,{oversizedTitle:e.features.security.oversized,title:e.features.security.title,description:e.features.security.description,accentColor:"text-green-500",children:(0,t.jsxs)("div",{className:"relative group p-4",children:[(0,t.jsx)("div",{className:"absolute inset-0 bg-green-500/10 blur-3xl rounded-full scale-110 group-hover:scale-125 transition-transform"}),(0,t.jsxs)(l.Card,{className:"relative w-full aspect-square md:w-[450px] md:h-[450px] rounded-[3rem] overflow-hidden border-none shadow-2xl",children:[(0,t.jsx)(x.default,{src:"/images/interior.jpg",alt:"Security and Comfort",fill:!0,sizes:"(min-width: 768px) 450px, 90vw",className:"object-cover group-hover:scale-105 transition-transform duration-700"}),(0,t.jsx)("div",{className:"absolute bottom-0 left-0 right-0 p-8 bg-gradient-to-t from-black/90 via-black/50 to-transparent pt-32",children:(0,t.jsxs)("div",{className:"space-y-2",children:[(0,t.jsx)("p",{className:"text-white text-xl font-black uppercase tracking-widest",children:e.features.security.cardCaption}),(0,t.jsx)("p",{className:"text-white/80 text-sm font-medium leading-relaxed",children:e.features.security.cardDescription})]})})]})]})}),(0,t.jsx)(u,{oversizedTitle:e.features.booking.oversized,title:e.features.booking.title,description:e.features.booking.description,ctaText:e.features.booking.cta,reversed:!0,accentColor:"text-orange-500",href:"https://app.skyflytravel.hu/public/offers/new",externalLink:!0,children:(0,t.jsxs)("div",{className:"relative group p-4",children:[(0,t.jsx)("div",{className:"absolute inset-0 bg-orange-500/10 blur-3xl rounded-full scale-110 group-hover:scale-125 transition-transform"}),(0,t.jsxs)(l.Card,{className:"relative w-full aspect-square md:w-[450px] md:h-[450px] rounded-[3rem] overflow-hidden border-none shadow-2xl bg-white flex items-center justify-center p-8",children:[(0,t.jsx)(x.default,{src:"/images/booking-bg.svg",alt:"",fill:!0,sizes:"(min-width: 768px) 450px, 90vw",className:"object-cover opacity-35","aria-hidden":!0}),(0,t.jsx)("div",{className:"absolute inset-0 bg-gradient-to-b from-white/95 via-white/80 to-white/95"}),(0,t.jsx)("div",{className:"absolute inset-0 backdrop-blur-[1px]"}),(0,t.jsxs)("div",{className:"relative text-center space-y-6",children:[(0,t.jsx)("div",{className:"w-20 h-20 bg-white rounded-2xl flex items-center justify-center mx-auto shadow-[0_20px_40px_rgba(15,23,42,0.15)] ring-1 ring-orange-200/70",children:(0,t.jsx)(r.Star,{className:"w-10 h-10 text-orange-500"})}),(0,t.jsx)("h4",{className:"text-2xl font-black uppercase tracking-tighter text-slate-900",children:e.features.booking.cardCaption}),(0,t.jsx)("p",{className:"text-slate-700 text-sm font-medium leading-relaxed max-w-xs mx-auto",children:e.features.booking.cardDescription}),(0,t.jsxs)("div",{className:"space-y-2 pt-4",children:[(0,t.jsx)("div",{className:"h-2 w-48 bg-slate-200/70 rounded-full mx-auto"}),(0,t.jsx)("div",{className:"h-2 w-32 bg-slate-200/40 rounded-full mx-auto"})]})]})]})]})}),(0,t.jsx)(u,{oversizedTitle:e.features.fleet.oversized,title:e.features.fleet.title,description:e.features.fleet.description,ctaText:e.features.fleet.cta,accentColor:"text-pink-500",href:"/flotta",children:(0,t.jsxs)("div",{className:"relative group p-4",children:[(0,t.jsx)("div",{className:"absolute inset-0 bg-pink-500/10 blur-3xl rounded-full scale-110 group-hover:scale-125 transition-transform"}),(0,t.jsxs)(l.Card,{className:"relative w-full aspect-square md:w-[450px] md:h-[450px] rounded-[3rem] overflow-hidden border-none shadow-2xl",children:[(0,t.jsx)(x.default,{src:"/images/fleet-modern.jpg",alt:"Our Fleet",fill:!0,sizes:"(min-width: 768px) 450px, 90vw",className:"object-cover group-hover:scale-105 transition-transform duration-700"}),(0,t.jsx)("div",{className:"absolute bottom-0 left-0 right-0 p-8 bg-gradient-to-t from-black/90 via-black/50 to-transparent pt-32",children:(0,t.jsxs)("div",{className:"space-y-2",children:[(0,t.jsx)("p",{className:"text-white text-xl font-black uppercase tracking-widest",children:e.features.fleet.cardCaption}),(0,t.jsx)("p",{className:"text-white/80 text-sm font-medium leading-relaxed",children:e.features.fleet.cardDescription})]})})]})]})}),(0,t.jsx)(u,{oversizedTitle:e.features.nonstop.oversized,title:e.features.nonstop.title,description:e.features.nonstop.description,reversed:!0,accentColor:"text-cyan-500",customCTA:(0,t.jsxs)("div",{className:"flex flex-wrap gap-6 pt-2",children:[(0,t.jsxs)("div",{className:"space-y-1",children:[(0,t.jsx)("p",{className:"text-[10px] font-black uppercase tracking-widest text-slate-400",children:e.contactPage.info.phone}),(0,t.jsx)("a",{href:`tel:${e.common.phone.replace(/\s/g,"")}`,className:"text-xl font-black text-white bg-cyan-500 px-4 py-2 rounded-xl inline-block hover:scale-105 transition-transform",children:e.common.phone})]}),(0,t.jsxs)("div",{className:"space-y-1",children:[(0,t.jsx)("p",{className:"text-[10px] font-black uppercase tracking-widest text-slate-400",children:e.contactPage.info.email}),(0,t.jsx)("a",{href:`mailto:${e.common.email}`,className:"text-lg font-bold text-slate-900 hover:text-cyan-500 transition-colors block italic",children:e.common.email})]})]}),children:(0,t.jsxs)("div",{className:"relative group p-4",children:[(0,t.jsx)("div",{className:"absolute inset-0 bg-cyan-500/10 blur-3xl rounded-full scale-110 group-hover:scale-125 transition-transform"}),(0,t.jsxs)(l.Card,{className:"relative w-full aspect-square md:w-[450px] md:h-[450px] rounded-[3rem] overflow-hidden border-none shadow-2xl",children:[(0,t.jsx)(x.default,{src:"/images/IMG_4376.jpeg",alt:"Non-stop help",fill:!0,sizes:"(min-width: 768px) 450px, 90vw",className:"object-cover group-hover:scale-105 transition-transform duration-700"}),(0,t.jsx)("div",{className:"absolute bottom-0 left-0 right-0 p-6 bg-gradient-to-t from-black/80 to-transparent",children:(0,t.jsx)("p",{className:"text-white text-lg font-bold uppercase tracking-widest",children:e.features.nonstop.cardCaption})})]})]})}),(0,t.jsx)(u,{oversizedTitle:e.discounts.oversized,title:e.discounts.title,description:e.discounts.description,accentColor:"text-primary",customCTA:(0,t.jsxs)("div",{className:"flex flex-wrap gap-4",children:[(0,t.jsx)(a.Button,{asChild:!0,size:"lg",className:"rounded-full px-8 h-12 text-xs font-bold uppercase tracking-widest bg-blue-600 text-white hover:bg-blue-700 transition-all shadow-xl",children:(0,t.jsx)(n.default,{href:"/akciok/facebook-google",children:e.discounts.fbGoogle.title})}),(0,t.jsx)(a.Button,{asChild:!0,size:"lg",className:"rounded-full px-8 h-12 text-xs font-bold uppercase tracking-widest bg-black text-white hover:bg-slate-900 transition-all shadow-xl",children:(0,t.jsx)(n.default,{href:"/akciok/tiktok",children:e.discounts.tiktok.title})})]}),children:(0,t.jsxs)("div",{className:"relative group p-4",children:[(0,t.jsx)("div",{className:"absolute inset-0 bg-primary/20 blur-3xl rounded-full scale-110 group-hover:scale-125 transition-transform"}),(0,t.jsxs)(l.Card,{className:"relative w-full aspect-square md:w-[450px] md:h-[450px] rounded-[3rem] overflow-hidden border-none shadow-2xl bg-slate-900",children:[(0,t.jsx)(x.default,{src:"/images/discounts_bg.png",alt:"Special Discounts",fill:!0,sizes:"(min-width: 768px) 450px, 90vw",className:"object-cover opacity-50 group-hover:opacity-70 transition-all duration-700 blur-[2px] group-hover:blur-0"}),(0,t.jsxs)("div",{className:"absolute inset-0 p-8 flex flex-col justify-center space-y-4",children:[(0,t.jsxs)("div",{className:"bg-white/95 backdrop-blur-xl p-6 rounded-3xl shadow-2xl transform transition-all duration-500 hover:-translate-y-2",children:[(0,t.jsxs)("div",{className:"flex items-center gap-4 mb-3",children:[(0,t.jsx)("div",{className:"bg-blue-600 p-2 rounded-lg",children:(0,t.jsx)(w.Facebook,{className:"w-4 h-4 text-white"})}),(0,t.jsx)("h4",{className:"font-black text-slate-900 text-sm uppercase",children:e.discounts.fbGoogle.title})]}),(0,t.jsx)("p",{className:"text-slate-500 text-xs font-medium mb-4",children:e.discounts.fbGoogle.desc}),(0,t.jsxs)(n.default,{href:"/akciok/facebook-google",className:"text-[10px] font-black text-primary uppercase tracking-widest hover:gap-3 flex items-center gap-2 group/link transition-all",children:[e.discounts.fbGoogle.cta," ",(0,t.jsx)(j.ArrowLeft,{className:"w-3 h-3 rotate-180"})]})]}),(0,t.jsxs)("div",{className:"bg-white/95 backdrop-blur-xl p-6 rounded-3xl shadow-2xl transform transition-all duration-500 hover:-translate-y-2",children:[(0,t.jsxs)("div",{className:"flex items-center gap-4 mb-3",children:[(0,t.jsx)("div",{className:"bg-black p-2 rounded-lg",children:(0,t.jsx)("svg",{viewBox:"0 0 24 24",className:"w-4 h-4 fill-white",xmlns:"http://www.w3.org/2000/svg",children:(0,t.jsx)("path",{d:"M12.525.02c1.31-.036 2.612-.01 3.91-.01.1.993.414 1.956.96 2.784.73 1.096 1.764 1.93 2.97 2.45v3.91c-.815-.09-1.62-.315-2.38-.64-.816-.35-1.545-.88-2.15-1.53-.102.043-.102.164-.102.26v9.06c0 1.54-.34 3.05-1 4.41-.65 1.35-1.63 2.5-2.83 3.33-1.4.95-3.08 1.45-4.79 1.45-1.68 0-3.32-.48-4.73-1.39-1.21-.79-2.2-1.9-2.86-3.21-.71-1.37-1.07-2.9-1.07-4.47s.36-3.1 1.07-4.47c.66-1.31 1.65-2.42 2.86-3.21 1.25-.8 2.69-1.23 4.18-1.25.102 0 .204-.006.307-.006v3.94c-.037-.006-.074-.012-.112-.012-1.25.038-2.44.57-3.31 1.49-.89.92-1.38 2.16-1.38 3.45 0 1.29.49 2.53 1.38 3.45.87.92 2.06 1.45 3.31 1.49 1.25-.038 2.44-.57 3.31-1.49.89-.92 1.38-2.16 1.38-3.45V0l.024.02z"})})}),(0,t.jsx)("h4",{className:"font-black text-slate-900 text-sm uppercase",children:e.discounts.tiktok.title})]}),(0,t.jsx)("p",{className:"text-slate-500 text-xs font-medium mb-4",children:e.discounts.tiktok.desc}),(0,t.jsxs)(n.default,{href:"/akciok/tiktok",className:"text-[10px] font-black text-primary uppercase tracking-widest hover:gap-3 flex items-center gap-2 group/link transition-all",children:[e.discounts.tiktok.cta," ",(0,t.jsx)(j.ArrowLeft,{className:"w-3 h-3 rotate-180"})]})]})]})]})]})}),(0,t.jsx)("section",{className:"py-12 md:py-16 bg-white",children:(0,t.jsx)("div",{className:"max-w-4xl mx-auto px-6",children:(0,t.jsxs)("div",{className:"space-y-12",children:[(0,t.jsxs)("div",{className:"text-center",children:[(0,t.jsx)("h2",{className:"text-[10px] font-black uppercase tracking-[0.5em] text-primary mb-6",children:e.common.brand}),(0,t.jsx)("h3",{className:"text-4xl md:text-7xl font-black uppercase tracking-tighter leading-tight text-slate-900",children:e.contactPage.seo.title}),(0,t.jsx)("p",{className:"text-xl md:text-2xl font-bold text-primary italic mt-4",children:e.contactPage.seo.subtitle})]}),(0,t.jsx)("div",{className:"space-y-8",children:e.contactPage.seo.content.map((e,s)=>(0,t.jsx)("p",{className:"text-slate-500 leading-relaxed font-medium text-lg md:text-xl text-center md:text-left",children:e},s))})]})})}),(0,t.jsx)(v.default,{}),(0,t.jsx)(b,{})]})}e.s(["default",()=>N],31713)}]); \ No newline at end of file diff --git a/out/_next/static/chunks/51dbe03afaef15c8.js b/out/_next/static/chunks/51dbe03afaef15c8.js deleted file mode 100644 index 15546ee..0000000 --- a/out/_next/static/chunks/51dbe03afaef15c8.js +++ /dev/null @@ -1 +0,0 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,33525,(e,a,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"warnOnce",{enumerable:!0,get:function(){return s}});let s=e=>{}},26577,e=>{e.v({data:[{area:"SkyFly Travel",placeId:"ChIJQz_NzJm_a0cRGW1U_iUDLuU",rating:5,userRatingCount:285,reviews:[{text:"Mindig a SkyFly-jal utazunk a repülőterekre. Utastársaim nevében is a legjobbakat tudom mondani a cégről és szívesen ajánlom őket mindenkinek. Pontos szervezés, kedves, udvarias és rutinos sofőrök.",rating:5,author:"Gyopar Kallos",publishTime:"2026-01-13T13:05:09.781273430Z"},{text:"Évente több alkalommal használom reptéri transzfer szolgáltatásukat. Minden alkalommal a megbeszéltek szerint, pontosan a helyszínen voltak. Sofőrjeik segítőkészek. A megrendelés leadása után nem zaklatják az embert különféle emailekkel. Az utazás előtti napon küldik a sofőr nevét, elérhetőségét.",rating:5,author:"Péter",publishTime:"2025-12-04T13:51:00.646252562Z"},{text:"Évek óta a SkyFly szolgáltatását használjuk, mindig maximálisan elégedett voltunk. Megbízhatóak, pontosak és rugalmasak, ami hosszú utazások előtt és után különösen sokat jelent. A sofőrök kedvesek, figyelmesek és biztonságosan vezetnek.\nAz autók tiszták, kényelmesek, minden alkalommal gördülékeny a teljes transzfer. Bátran ajánlom mindenkinek, aki minőségi és profi szolgáltatást keres!",rating:5,author:"Csaba Farkas",publishTime:"2025-11-19T10:02:24.246395337Z"},{text:"Nagyon elégedett voltam a szolgáltatással! A sofőr pontosan érkezett, udvarias és segítőkész volt, az autó tiszta és kényelmes. Az út gyorsan és biztonságosan telt, minden gördülékenyen zajlott. Bátran ajánlom mindenkinek, aki megbízható reptéri transzfert keres.",rating:5,author:"Tunde Csendes",publishTime:"2025-10-08T06:21:01.050570478Z"},{text:"100%-os pozitív tapasztalat, nagyon örülök, hogy rátaláltunk a cégre. A kapott árajánlatok közül messze a legjobb árat kaptuk tőlük reptéri transzferre.Korrekt ár, gördülékeny kommunikáció, gyors és precíz választ kaptunk minden kérdésünkre. A sofőr nagyon kedves, udvarias, pontos és megbízható volt. A járatunk késését is nagyon rugalmasan kezelték. Csak ajánlani tudjuk őket a legjobb szívvel.",rating:5,author:"Gruber Andrea",publishTime:"2025-09-22T12:24:38.650812077Z"}]}]})},61405,e=>{e.v({data:[{area:"SkyFly Travel",placeId:"ChIJQz_NzJm_a0cRGW1U_iUDLuU",rating:5,userRatingCount:285,reviews:[{text:"Sky fly is a great company. The booking website is easy to understand. And the prices are fare. Also when a last minute situation occurs they always make it work to get you to your destination. Over the years I had a couple situations where I needed a last second change and every time the make it work. The drivers are also great. I would recommend this shuttle service.",rating:5,author:"matthijs van leijenhorst",publishTime:"2025-09-22T07:55:17.174730841Z"},{text:"Travel SkyFly has been providing an outstanding experience. The drivers are professional, punctual, and polite, and their cars are always immaculate and comfortable. Whether you're traveling between Vienna and Budapest or need reliable airport transportation, I highly recommend their services. Truly a hassle-free and dependable choice!",rating:5,author:"Krisztian Nagy",publishTime:"2024-12-04T16:27:45.117418Z"},{text:"SkyFly Travel Kft is MORE than a partner in providing the best chauffeur service — professional, reliable, and always exceeding expectations. Highly recommended for anyone seeking comfort, punctuality, and premium service in every ride - ViziZene Kft",rating:5,author:"Zoltan Biczo",publishTime:"2025-05-11T05:53:25.464513Z"},{text:"Professional, punctual, polite driver. Nice clean cars. I would highly recommend to those who needs a ride from or to airport from Vienna or to Budapest. I had a last minute booking, they were there as promised. Punctual arriving for my flight. Highly recommend.",rating:5,author:"Judit Csibi",publishTime:"2023-09-05T21:47:44.438396Z"},{text:"I was asked to fill in a review about my experiences with flysky travel. I have been able to experience a taxi ride with them 6 times so far. Everything is arranged down to the last detail, the reservation, the information provided about how the trip will go.. and especially the drivers. I have no complaints about this, polite and friendly drivers. In my case I have been picked up several times by Roland Klauz. This driver is recommended to be picked up by. Super friendly guy. Who takes you from A to B in a relaxed way. And with whom good contact can be maintained before / during and after the ride. Applause for Skyfly. Greetings Martijn van der Meer.",rating:5,author:"Martijn van der Meer",publishTime:"2024-08-05T15:18:27.019324Z"}]}]})},95010,e=>{"use strict";var a=e.i(43476),t=e.i(46932),s=e.i(47163);e.s(["default",0,({className:e,children:i})=>(0,a.jsx)(t.motion.main,{className:(0,s.cn)(e),initial:{opacity:0,y:24},animate:{opacity:1,y:0},transition:{duration:.7,ease:[.16,1,.3,1]},children:i})])},70065,e=>{"use strict";var a=e.i(43476),t=e.i(71645),s=e.i(47163);let i=t.forwardRef(({className:e,...t},i)=>(0,a.jsx)("div",{ref:i,className:(0,s.cn)("rounded-3xl border bg-card text-card-foreground shadow-sm",e),...t}));i.displayName="Card",t.forwardRef(({className:e,...t},i)=>(0,a.jsx)("div",{ref:i,className:(0,s.cn)("flex flex-col space-y-1.5 p-6",e),...t})).displayName="CardHeader",t.forwardRef(({className:e,...t},i)=>(0,a.jsx)("h3",{ref:i,className:(0,s.cn)("text-2xl font-semibold leading-none tracking-tight",e),...t})).displayName="CardTitle",t.forwardRef(({className:e,...t},i)=>(0,a.jsx)("p",{ref:i,className:(0,s.cn)("text-sm text-muted-foreground",e),...t})).displayName="CardDescription",t.forwardRef(({className:e,...t},i)=>(0,a.jsx)("div",{ref:i,className:(0,s.cn)("p-6 pt-0",e),...t})).displayName="CardContent",t.forwardRef(({className:e,...t},i)=>(0,a.jsx)("div",{ref:i,className:(0,s.cn)("flex items-center p-6 pt-0",e),...t})).displayName="CardFooter",e.s(["Card",()=>i])},61911,81418,e=>{"use strict";var a=e.i(75254);let t=(0,a.default)("users",[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["path",{d:"M16 3.128a4 4 0 0 1 0 7.744",key:"16gr8j"}],["path",{d:"M22 21v-2a4 4 0 0 0-3-3.87",key:"kshegd"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}]]);e.s(["Users",()=>t],61911);let s=(0,a.default)("shield-check",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);e.s(["ShieldCheck",()=>s],81418)},43138,e=>{"use strict";var a=e.i(43476),t=e.i(63780),s=e.i(76841),i=e.i(95010),r=e.i(70065),l=e.i(71689),n=e.i(61911),o=e.i(75254);let d=(0,o.default)("briefcase",[["path",{d:"M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16",key:"jecpp"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2",key:"i6l2r4"}]]),c=(0,o.default)("wind",[["path",{d:"M12.8 19.6A2 2 0 1 0 14 16H2",key:"148xed"}],["path",{d:"M17.5 8a2.5 2.5 0 1 1 2 4H2",key:"1u4tom"}],["path",{d:"M9.8 4.4A2 2 0 1 1 11 8H2",key:"75valh"}]]);var m=e.i(81418);let p=(0,o.default)("chevron-right",[["path",{d:"m9 18 6-6-6-6",key:"mthhwq"}]]);var h=e.i(22016),x=e.i(57688),u=e.i(50661),g=e.i(46932);function f(){let{t:e}=(0,u.useLanguage)(),o=[{id:"vclass",data:e.fleetPage.vehicles.vclass,image:"/images/fleet/v-class.jpg",large:!0,icon:n.Users},{id:"eclass",data:e.fleetPage.vehicles.eclass,image:"/images/fleet/e-class.jpg",large:!1,icon:d},{id:"superb",data:e.fleetPage.vehicles.superb,image:"/images/fleet/superb.jpg",large:!1,icon:c},{id:"transit",data:e.fleetPage.vehicles.transit,image:"/images/fleet/transit.jpg",large:!0,icon:n.Users}],f={hidden:{opacity:0,y:30},visible:{opacity:1,y:0,transition:{duration:.8}}};return(0,a.jsxs)(i.default,{className:"relative min-h-screen bg-[#fafaf9] text-slate-800 overflow-hidden",children:[(0,a.jsx)(t.default,{darkMode:!1}),(0,a.jsxs)("div",{className:"absolute top-0 left-0 w-full h-full overflow-hidden pointer-events-none -z-10",children:[(0,a.jsx)("div",{className:"absolute top-[-5%] left-[-5%] w-[50%] h-[50%] bg-primary/5 rounded-full blur-[140px] opacity-60"}),(0,a.jsx)("div",{className:"absolute top-[20%] right-[-10%] w-[40%] h-[40%] bg-blue-500/5 rounded-full blur-[120px] opacity-40"})]}),(0,a.jsx)("section",{className:"relative pt-32 pb-20 px-6",children:(0,a.jsxs)("div",{className:"max-w-7xl mx-auto",children:[(0,a.jsx)(g.motion.div,{initial:{opacity:0,x:-20},animate:{opacity:1,x:0},transition:{duration:.6},children:(0,a.jsxs)(h.default,{href:"/",className:"inline-flex items-center text-slate-400 hover:text-primary mb-10 transition-colors group",children:[(0,a.jsx)(l.ArrowLeft,{className:"w-4 h-4 mr-2 group-hover:-translate-x-1 transition-transform"}),(0,a.jsx)("span",{className:"text-[10px] font-black uppercase tracking-[0.3em]",children:e.fleetPage.back})]})}),(0,a.jsx)("div",{className:"max-w-4xl",children:(0,a.jsxs)(g.motion.div,{initial:{opacity:0,y:30},animate:{opacity:1,y:0},transition:{duration:.8},className:"space-y-8",children:[(0,a.jsxs)("h1",{className:"text-7xl md:text-9xl font-black uppercase tracking-tighter leading-[0.85] text-slate-900",children:[e.fleetPage.title," ",(0,a.jsx)("br",{}),(0,a.jsx)("span",{className:"text-primary italic",children:e.fleetPage.titleAccent})]}),(0,a.jsx)("p",{className:"text-xl md:text-2xl text-slate-500 max-w-2xl leading-relaxed font-medium",children:e.fleetPage.description})]})})]})}),(0,a.jsx)("section",{className:"pb-32 px-6",children:(0,a.jsx)(g.motion.div,{variants:{hidden:{opacity:0},visible:{opacity:1,transition:{staggerChildren:.2}}},initial:"hidden",whileInView:"visible",viewport:{once:!0},className:"max-w-7xl mx-auto grid grid-cols-1 md:grid-cols-2 gap-10",children:o.map((t,s)=>(0,a.jsx)(g.motion.div,{variants:f,className:t.large?"md:col-span-2":"md:col-span-1",children:(0,a.jsxs)(r.Card,{className:"group relative overflow-hidden rounded-[3.5rem] border-none bg-white shadow-[0_32px_64px_-16px_rgba(0,0,0,0.08)] transition-all duration-700 hover:shadow-[0_48px_80px_-20px_rgba(0,0,0,0.12)] aspect-[16/9] md:aspect-auto md:h-[700px]",children:[(0,a.jsx)(x.default,{src:t.image,alt:t.data.name,fill:!0,className:"object-cover transition-transform duration-[1.5s] ease-out group-hover:scale-110"}),(0,a.jsx)("div",{className:"absolute inset-0 bg-gradient-to-t from-black/80 via-black/20 to-transparent opacity-80 transition-opacity duration-700 group-hover:opacity-90"}),(0,a.jsx)("div",{className:"absolute inset-0 p-10 md:p-16 flex flex-col justify-end",children:(0,a.jsxs)("div",{className:"space-y-6 transform transition-all duration-700 group-hover:-translate-y-2",children:[(0,a.jsxs)("div",{className:"flex items-center justify-between",children:[(0,a.jsx)("div",{className:"flex items-center gap-3",children:(0,a.jsx)("span",{className:"px-5 py-2 rounded-full bg-primary text-white text-[9px] font-black uppercase tracking-[0.2em] shadow-xl",children:t.data.category})}),(0,a.jsxs)("div",{className:"flex items-center gap-2",children:[(0,a.jsx)("div",{className:"w-2 h-2 rounded-full bg-green-500 animate-pulse"}),(0,a.jsx)("span",{className:"text-[9px] font-black text-white/60 uppercase tracking-[0.3em]",children:e.fleetPage.availabilityLabel})]})]}),(0,a.jsxs)("div",{className:"space-y-4",children:[(0,a.jsx)("h3",{className:"text-4xl md:text-7xl font-black uppercase tracking-tighter text-white leading-tight",children:t.data.name}),(0,a.jsx)("p",{className:"text-white/70 max-w-2xl text-base md:text-lg font-medium leading-relaxed",children:t.data.description})]}),(0,a.jsx)("div",{className:"flex flex-wrap gap-x-8 gap-y-4 pt-4",children:t.data.features.map((e,t)=>(0,a.jsxs)("div",{className:"flex items-center gap-3 text-white/80",children:[(0,a.jsx)("div",{className:"w-1.5 h-1.5 rounded-full bg-primary"}),(0,a.jsx)("span",{className:"text-[10px] md:text-xs font-black uppercase tracking-widest",children:e})]},t))}),(0,a.jsxs)("div",{className:"pt-8 border-t border-white/10 flex items-center justify-between",children:[(0,a.jsxs)(h.default,{href:"https://app.skyflytravel.hu/public/offers/new",target:"_blank",className:"inline-flex items-center gap-4 text-primary font-black uppercase tracking-[0.2em] text-[10px] hover:gap-6 transition-all",children:[e.nav.cta,(0,a.jsx)(p,{className:"w-4 h-4"})]}),(0,a.jsx)("div",{className:"hidden md:flex gap-4",children:(0,a.jsx)("div",{className:"w-12 h-12 rounded-2xl bg-white/10 backdrop-blur-md flex items-center justify-center text-white border border-white/10 group-hover:bg-primary/20 group-hover:border-primary/30 transition-all",children:(0,a.jsx)(t.icon,{className:"w-6 h-6"})})})]})]})})]})},t.id))})}),(0,a.jsx)("section",{className:"py-32 px-6 bg-white relative",children:(0,a.jsxs)("div",{className:"max-w-5xl mx-auto text-center space-y-16",children:[(0,a.jsx)(g.motion.div,{initial:{opacity:0,scale:.9},whileInView:{opacity:1,scale:1},viewport:{once:!0},className:"bg-primary/10 w-24 h-24 rounded-[2rem] flex items-center justify-center mx-auto mb-8 rotate-6 hover:rotate-0 transition-transform duration-700",children:(0,a.jsx)(m.ShieldCheck,{className:"w-12 h-12 text-primary"})}),(0,a.jsx)("h2",{className:"text-4xl md:text-6xl font-black uppercase tracking-tighter leading-tight text-slate-900",children:e.servicesPage.whyUs.items[1]}),(0,a.jsxs)("div",{className:"grid grid-cols-1 md:grid-cols-3 gap-16 md:gap-8",children:[(0,a.jsxs)("div",{className:"space-y-4",children:[(0,a.jsx)("p",{className:"text-6xl font-black text-primary transition-transform hover:scale-110 duration-300",children:e.fleetPage.stats.ageValue}),(0,a.jsx)("p",{className:"text-[11px] font-black uppercase tracking-[0.2em] text-slate-400",children:e.fleetPage.stats.ageLabel})]}),(0,a.jsxs)("div",{className:"space-y-4",children:[(0,a.jsx)("p",{className:"text-6xl font-black text-primary transition-transform hover:scale-110 duration-300",children:e.fleetPage.stats.cleanlinessValue}),(0,a.jsx)("p",{className:"text-[11px] font-black uppercase tracking-[0.2em] text-slate-400",children:e.fleetPage.stats.cleanlinessLabel})]}),(0,a.jsxs)("div",{className:"space-y-4",children:[(0,a.jsx)("p",{className:"text-6xl font-black text-primary transition-transform hover:scale-110 duration-300",children:e.fleetPage.stats.maintenanceValue}),(0,a.jsx)("p",{className:"text-[11px] font-black uppercase tracking-[0.2em] text-slate-400",children:e.fleetPage.stats.maintenanceLabel})]})]})]})}),(0,a.jsx)(s.default,{})]})}e.s(["default",()=>f],43138)}]); \ No newline at end of file diff --git a/out/_next/static/chunks/5fec119c1fb474e1.js b/out/_next/static/chunks/5fec119c1fb474e1.js deleted file mode 100644 index 5efc6cc..0000000 --- a/out/_next/static/chunks/5fec119c1fb474e1.js +++ /dev/null @@ -1 +0,0 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,33525,(e,t,a)=>{"use strict";Object.defineProperty(a,"__esModule",{value:!0}),Object.defineProperty(a,"warnOnce",{enumerable:!0,get:function(){return s}});let s=e=>{}},26577,e=>{e.v({data:[{area:"SkyFly Travel",placeId:"ChIJQz_NzJm_a0cRGW1U_iUDLuU",rating:5,userRatingCount:285,reviews:[{text:"Mindig a SkyFly-jal utazunk a repülőterekre. Utastársaim nevében is a legjobbakat tudom mondani a cégről és szívesen ajánlom őket mindenkinek. Pontos szervezés, kedves, udvarias és rutinos sofőrök.",rating:5,author:"Gyopar Kallos",publishTime:"2026-01-13T13:05:09.781273430Z"},{text:"Évente több alkalommal használom reptéri transzfer szolgáltatásukat. Minden alkalommal a megbeszéltek szerint, pontosan a helyszínen voltak. Sofőrjeik segítőkészek. A megrendelés leadása után nem zaklatják az embert különféle emailekkel. Az utazás előtti napon küldik a sofőr nevét, elérhetőségét.",rating:5,author:"Péter",publishTime:"2025-12-04T13:51:00.646252562Z"},{text:"Évek óta a SkyFly szolgáltatását használjuk, mindig maximálisan elégedett voltunk. Megbízhatóak, pontosak és rugalmasak, ami hosszú utazások előtt és után különösen sokat jelent. A sofőrök kedvesek, figyelmesek és biztonságosan vezetnek.\nAz autók tiszták, kényelmesek, minden alkalommal gördülékeny a teljes transzfer. Bátran ajánlom mindenkinek, aki minőségi és profi szolgáltatást keres!",rating:5,author:"Csaba Farkas",publishTime:"2025-11-19T10:02:24.246395337Z"},{text:"Nagyon elégedett voltam a szolgáltatással! A sofőr pontosan érkezett, udvarias és segítőkész volt, az autó tiszta és kényelmes. Az út gyorsan és biztonságosan telt, minden gördülékenyen zajlott. Bátran ajánlom mindenkinek, aki megbízható reptéri transzfert keres.",rating:5,author:"Tunde Csendes",publishTime:"2025-10-08T06:21:01.050570478Z"},{text:"100%-os pozitív tapasztalat, nagyon örülök, hogy rátaláltunk a cégre. A kapott árajánlatok közül messze a legjobb árat kaptuk tőlük reptéri transzferre.Korrekt ár, gördülékeny kommunikáció, gyors és precíz választ kaptunk minden kérdésünkre. A sofőr nagyon kedves, udvarias, pontos és megbízható volt. A járatunk késését is nagyon rugalmasan kezelték. Csak ajánlani tudjuk őket a legjobb szívvel.",rating:5,author:"Gruber Andrea",publishTime:"2025-09-22T12:24:38.650812077Z"}]}]})},61405,e=>{e.v({data:[{area:"SkyFly Travel",placeId:"ChIJQz_NzJm_a0cRGW1U_iUDLuU",rating:5,userRatingCount:285,reviews:[{text:"Sky fly is a great company. The booking website is easy to understand. And the prices are fare. Also when a last minute situation occurs they always make it work to get you to your destination. Over the years I had a couple situations where I needed a last second change and every time the make it work. The drivers are also great. I would recommend this shuttle service.",rating:5,author:"matthijs van leijenhorst",publishTime:"2025-09-22T07:55:17.174730841Z"},{text:"Travel SkyFly has been providing an outstanding experience. The drivers are professional, punctual, and polite, and their cars are always immaculate and comfortable. Whether you're traveling between Vienna and Budapest or need reliable airport transportation, I highly recommend their services. Truly a hassle-free and dependable choice!",rating:5,author:"Krisztian Nagy",publishTime:"2024-12-04T16:27:45.117418Z"},{text:"SkyFly Travel Kft is MORE than a partner in providing the best chauffeur service — professional, reliable, and always exceeding expectations. Highly recommended for anyone seeking comfort, punctuality, and premium service in every ride - ViziZene Kft",rating:5,author:"Zoltan Biczo",publishTime:"2025-05-11T05:53:25.464513Z"},{text:"Professional, punctual, polite driver. Nice clean cars. I would highly recommend to those who needs a ride from or to airport from Vienna or to Budapest. I had a last minute booking, they were there as promised. Punctual arriving for my flight. Highly recommend.",rating:5,author:"Judit Csibi",publishTime:"2023-09-05T21:47:44.438396Z"},{text:"I was asked to fill in a review about my experiences with flysky travel. I have been able to experience a taxi ride with them 6 times so far. Everything is arranged down to the last detail, the reservation, the information provided about how the trip will go.. and especially the drivers. I have no complaints about this, polite and friendly drivers. In my case I have been picked up several times by Roland Klauz. This driver is recommended to be picked up by. Super friendly guy. Who takes you from A to B in a relaxed way. And with whom good contact can be maintained before / during and after the ride. Applause for Skyfly. Greetings Martijn van der Meer.",rating:5,author:"Martijn van der Meer",publishTime:"2024-08-05T15:18:27.019324Z"}]}]})},70065,e=>{"use strict";var t=e.i(43476),a=e.i(71645),s=e.i(47163);let r=a.forwardRef(({className:e,...a},r)=>(0,t.jsx)("div",{ref:r,className:(0,s.cn)("rounded-3xl border bg-card text-card-foreground shadow-sm",e),...a}));r.displayName="Card",a.forwardRef(({className:e,...a},r)=>(0,t.jsx)("div",{ref:r,className:(0,s.cn)("flex flex-col space-y-1.5 p-6",e),...a})).displayName="CardHeader",a.forwardRef(({className:e,...a},r)=>(0,t.jsx)("h3",{ref:r,className:(0,s.cn)("text-2xl font-semibold leading-none tracking-tight",e),...a})).displayName="CardTitle",a.forwardRef(({className:e,...a},r)=>(0,t.jsx)("p",{ref:r,className:(0,s.cn)("text-sm text-muted-foreground",e),...a})).displayName="CardDescription",a.forwardRef(({className:e,...a},r)=>(0,t.jsx)("div",{ref:r,className:(0,s.cn)("p-6 pt-0",e),...a})).displayName="CardContent",a.forwardRef(({className:e,...a},r)=>(0,t.jsx)("div",{ref:r,className:(0,s.cn)("flex items-center p-6 pt-0",e),...a})).displayName="CardFooter",e.s(["Card",()=>r])},3116,e=>{"use strict";let t=(0,e.i(75254).default)("clock",[["path",{d:"M12 6v6l4 2",key:"mmk7yg"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);e.s(["Clock",()=>t],3116)},61911,81418,e=>{"use strict";var t=e.i(75254);let a=(0,t.default)("users",[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["path",{d:"M16 3.128a4 4 0 0 1 0 7.744",key:"16gr8j"}],["path",{d:"M22 21v-2a4 4 0 0 0-3-3.87",key:"kshegd"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}]]);e.s(["Users",()=>a],61911);let s=(0,t.default)("shield-check",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);e.s(["ShieldCheck",()=>s],81418)},83157,e=>{"use strict";let t=(0,e.i(75254).default)("facebook",[["path",{d:"M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z",key:"1jg4f8"}]]);e.s(["Facebook",()=>t],83157)},70273,e=>{"use strict";let t=(0,e.i(75254).default)("star",[["path",{d:"M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z",key:"r04s7s"}]]);e.s(["Star",()=>t],70273)},31713,e=>{"use strict";var t=e.i(43476),a=e.i(63780),s=e.i(67881),r=e.i(70065),l=e.i(70273),i=e.i(3116),n=e.i(61911),o=e.i(81418),d=e.i(22016),c=e.i(50661),x=e.i(57688),m=e.i(26577),h=e.i(61405),p=e.i(71645);let u=()=>{let{t:e,language:a}=(0,c.useLanguage)(),u="hu"===a?m.default:h.default,f=u?.data?.[0]?.rating??0,g=u?.data?.[0]?.userRatingCount??0,b=Math.max(0,Math.min(100,f/5*100)),v=u?.data?.[0]?.reviews??[],[j,k]=(0,p.useState)(v[0]??null);(0,p.useEffect)(()=>{if(!v.length)return;let e=Math.floor(Math.random()*v.length);k(v[e])},[a,v.length]);let w=j?.author??e.hero.cards.reviewAuthor,N=(0,p.useMemo)(()=>w&&w.split(" ").filter(Boolean).slice(0,2).map(e=>e[0]?.toUpperCase()).join("")||e.hero.cards.reviewInitial,[w,e.hero.cards.reviewInitial]),y=Math.max(0,Math.min(5,Math.round(j?.rating??5))),z=j?.text??e.hero.cards.reviewText,C=z.length>120?`${z.slice(0,120).trimEnd()}...`:z;return(0,t.jsxs)("section",{className:"relative min-h-screen flex items-center pt-20 overflow-hidden",children:[(0,t.jsx)("div",{className:"absolute inset-0 bg-diagonal -z-10"}),(0,t.jsx)("div",{className:"absolute bottom-0 left-0 w-full h-[20vh] bg-background transform -skew-y-3 origin-bottom-left -z-10"}),(0,t.jsxs)("div",{className:"max-w-7xl mx-auto px-6 grid grid-cols-1 lg:grid-cols-2 gap-12 items-center",children:[(0,t.jsxs)("div",{className:"text-white space-y-8",children:[(0,t.jsxs)("a",{href:"https://g.page/r/CRltVP4lAy7lEBM/review",target:"_blank",rel:"noopener noreferrer",className:"group flex items-center space-x-2 py-1 px-3 bg-white/10 rounded-full w-fit backdrop-blur-sm border border-white/20 transition-all duration-300 hover:bg-white/20 hover:-translate-y-0.5 hover:shadow-[0_10px_30px_-12px_rgba(0,0,0,0.4)] hover:border-white/40","aria-label":`${f.toFixed(1)} ${e.hero.rating} (${g})`,children:[(0,t.jsxs)("span",{className:"text-xs font-semibold text-white/90 transition-transform duration-300 group-hover:scale-105",children:[f.toFixed(1),"/5.0"]}),(0,t.jsx)("div",{className:"relative flex items-center leading-none",children:(0,t.jsx)("span",{className:"text-[14px] leading-none tracking-[0.08em] font-semibold transition-all duration-300 group-hover:tracking-[0.12em]",style:{backgroundImage:`linear-gradient(90deg, #fde047 ${b}%, rgba(255,255,255,0.35) ${b}%)`,WebkitBackgroundClip:"text",color:"transparent"},"aria-hidden":"true",children:"★★★★★"})}),(0,t.jsxs)("span",{className:"text-xs font-semibold text-white/80 transition-colors duration-300 group-hover:text-white/90",children:["(",g,")"]}),(0,t.jsx)("span",{className:"text-xs font-semibold text-white/90 transition-colors duration-300 group-hover:text-white",children:e.hero.rating})]}),(0,t.jsxs)("h1",{className:"text-5xl md:text-7xl font-black leading-[0.9] tracking-tighter",children:[e.hero.title," ",(0,t.jsx)("br",{}),(0,t.jsx)("span",{className:"text-primary-foreground underline decoration-primary decoration-8 underline-offset-[12px]",children:e.hero.titleAccent})]}),(0,t.jsx)("p",{className:"text-xl text-white/80 max-w-lg leading-relaxed font-medium",children:e.hero.description}),(0,t.jsxs)("div",{className:"flex flex-wrap gap-4 pt-4",children:[(0,t.jsx)(s.Button,{asChild:!0,size:"lg",className:"bg-slate-900 text-white hover:bg-slate-800 rounded-full px-10 h-14 text-sm font-bold uppercase tracking-widest shadow-xl",children:(0,t.jsx)("a",{href:"https://app.skyflytravel.hu/public/offers/new",target:"_blank",rel:"noopener noreferrer",children:e.hero.booking})}),(0,t.jsx)(s.Button,{asChild:!0,size:"lg",variant:"default",className:"bg-white text-slate-900 hover:bg-slate-100 rounded-full px-10 h-14 text-sm font-bold uppercase tracking-widest shadow-lg",children:(0,t.jsx)(d.default,{href:"/arak",children:e.hero.fares})})]})]}),(0,t.jsxs)("div",{className:"relative hidden lg:block",children:[(0,t.jsx)("div",{className:"animate-float",children:(0,t.jsx)(r.Card,{className:"w-[500px] bg-white shadow-2xl rounded-[2.5rem] p-6 transform -rotate-2 overflow-hidden border-none backdrop-blur-sm bg-white/95",children:(0,t.jsxs)("div",{className:"space-y-6",children:[(0,t.jsxs)("div",{className:"flex justify-between items-center border-b border-slate-100 pb-4",children:[(0,t.jsxs)("div",{className:"flex items-center space-x-2",children:[(0,t.jsx)("div",{className:"w-2 h-2 bg-green-500 rounded-full animate-pulse"}),(0,t.jsx)("span",{className:"text-[10px] font-bold text-slate-400 uppercase tracking-widest",children:e.hero.cards.activeBooking})]}),(0,t.jsx)("div",{className:"py-1 px-3 bg-primary/10 rounded-full text-primary text-[10px] font-bold",children:e.hero.cards.fixedPrice})]}),(0,t.jsxs)("div",{className:"space-y-4",children:[(0,t.jsxs)("div",{className:"flex items-center justify-between",children:[(0,t.jsxs)("div",{className:"space-y-1",children:[(0,t.jsx)("p",{className:"text-[10px] text-slate-400 font-bold uppercase",children:e.hero.cards.departure}),(0,t.jsx)("p",{className:"text-xl font-black text-slate-900",children:e.hero.cards.fromCity})]}),(0,t.jsx)("div",{className:"flex-1 px-6 flex flex-col items-center",children:(0,t.jsx)("div",{className:"w-full h-px bg-slate-200 relative",children:(0,t.jsx)("div",{className:"absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 bg-white px-2",children:(0,t.jsx)(l.Star,{className:"w-4 h-4 text-primary fill-primary"})})})}),(0,t.jsxs)("div",{className:"text-right space-y-1",children:[(0,t.jsx)("p",{className:"text-[10px] text-slate-400 font-bold uppercase",children:e.hero.cards.destination}),(0,t.jsx)("p",{className:"text-xl font-black text-slate-900",children:e.hero.cards.toAirport})]})]}),(0,t.jsxs)("div",{className:"grid grid-cols-3 gap-4 pt-4",children:[(0,t.jsxs)("div",{className:"p-3 bg-slate-50 rounded-2xl flex flex-col items-center text-center space-y-1 border border-slate-100",children:[(0,t.jsx)(i.Clock,{className:"w-5 h-5 text-primary"}),(0,t.jsx)("p",{className:"text-[10px] font-bold",children:e.hero.cards.duration})]}),(0,t.jsxs)("div",{className:"p-3 bg-slate-50 rounded-2xl flex flex-col items-center text-center space-y-1 border border-slate-100",children:[(0,t.jsx)(n.Users,{className:"w-5 h-5 text-primary"}),(0,t.jsx)("p",{className:"text-[10px] font-bold",children:e.hero.cards.passengers})]}),(0,t.jsxs)("div",{className:"p-3 bg-slate-50 rounded-2xl flex flex-col items-center text-center space-y-1 border border-slate-100",children:[(0,t.jsx)(o.ShieldCheck,{className:"w-5 h-5 text-primary"}),(0,t.jsx)("p",{className:"text-[10px] font-bold",children:e.hero.cards.insured})]})]})]}),(0,t.jsx)(s.Button,{className:"w-full h-12 rounded-xl bg-slate-900 hover:bg-slate-800 text-white font-bold text-xs uppercase tracking-widest",children:e.hero.cards.manageBooking})]})})}),(0,t.jsx)("div",{className:"absolute -top-16 -right-10 animate-float animation-delay-2000",children:(0,t.jsxs)(r.Card,{className:"w-56 bg-white shadow-xl rounded-3xl p-3 transform rotate-6 border-none overflow-hidden group",children:[(0,t.jsxs)("div",{className:"relative w-full h-40 rounded-2xl overflow-hidden mb-3",children:[(0,t.jsx)(x.default,{src:"/images/family.jpg",alt:"Family Travel",fill:!0,sizes:"(min-width: 1024px) 224px, 50vw",className:"object-cover group-hover:scale-110 transition-transform duration-500"}),(0,t.jsx)("div",{className:"absolute top-2 right-2 bg-primary text-white text-[10px] font-bold px-2 py-1 rounded-lg shadow-lg",children:e.hero.cards.familyTag})]}),(0,t.jsxs)("div",{className:"px-1",children:[(0,t.jsx)("p",{className:"text-sm font-black text-slate-900",children:e.hero.cards.freeChildSeat}),(0,t.jsx)("p",{className:"text-[10px] text-slate-500 font-medium",children:e.hero.cards.familyDesc})]})]})}),(0,t.jsx)("div",{className:"absolute -bottom-16 -left-10 animate-float animation-delay-4000",children:(0,t.jsxs)(r.Card,{className:"w-64 bg-white shadow-xl rounded-3xl p-3 transform -rotate-3 border-none overflow-hidden group",children:[(0,t.jsxs)("div",{className:"flex items-center space-x-3 mb-3",children:[(0,t.jsx)("div",{className:"relative w-16 h-16 rounded-2xl overflow-hidden shrink-0",children:(0,t.jsx)(x.default,{src:"/images/premium_van.png",alt:"Premium Fleet",fill:!0,sizes:"64px",className:"object-cover"})}),(0,t.jsxs)("div",{children:[(0,t.jsx)("p",{className:"text-sm font-black text-slate-900",children:e.hero.cards.premiumFleet}),(0,t.jsx)("p",{className:"text-[10px] text-primary font-bold uppercase",children:e.hero.cards.mercedes})]})]}),(0,t.jsxs)("div",{className:"flex items-center justify-between pt-2 border-t border-slate-50",children:[(0,t.jsxs)("div",{className:"flex items-center space-x-1",children:[(0,t.jsx)("div",{className:"w-1.5 h-1.5 bg-green-500 rounded-full"}),(0,t.jsx)("span",{className:"text-[9px] font-bold text-slate-400 uppercase",children:e.hero.cards.nonStop})]}),(0,t.jsx)("span",{className:"text-[10px] font-black text-slate-900",children:e.hero.cards.supportTime})]})]})}),(0,t.jsx)("div",{className:"absolute top-1/2 -right-16 translate-y-1/2 animate-float animation-delay-3000",children:(0,t.jsxs)(r.Card,{className:"w-52 bg-primary/10 backdrop-blur-md shadow-lg rounded-2xl p-4 border border-white/20 transform -rotate-6",children:[(0,t.jsx)("div",{className:"flex mb-2",children:[1,2,3,4,5].map(e=>(0,t.jsx)(l.Star,{className:"w-3 h-3 text-primary",fill:e<=y?"currentColor":"none",stroke:"currentColor"},e))}),(0,t.jsx)("p",{className:"text-[10px] font-medium text-slate-800 leading-tight italic",children:C}),(0,t.jsxs)("div",{className:"flex items-center space-x-2 mt-3",children:[(0,t.jsx)("div",{className:"w-6 h-6 rounded-full bg-primary/20 flex items-center justify-center text-[8px] font-bold",children:N}),(0,t.jsx)("span",{className:"text-[8px] font-bold text-slate-500",children:w})]})]})})]})]})]})};var f=e.i(47163);let g=({title:e,oversizedTitle:a,description:l,ctaText:i,reversed:n=!1,accentColor:o="text-primary",children:c,href:x,customCTA:m,externalLink:h=!1})=>(0,t.jsx)("section",{className:"py-12 md:py-16 overflow-hidden",children:(0,t.jsx)("div",{className:"max-w-7xl mx-auto px-6",children:(0,t.jsxs)("div",{className:(0,f.cn)("flex flex-col lg:flex-row items-center gap-16",n&&"lg:flex-row-reverse"),children:[(0,t.jsxs)("div",{className:"flex-1 space-y-8",children:[(0,t.jsxs)("div",{className:"space-y-2",children:[(0,t.jsx)("h3",{className:(0,f.cn)("text-6xl md:text-8xl font-black uppercase tracking-tighter opacity-20",o),children:a}),(0,t.jsx)("h2",{className:"text-4xl font-bold tracking-tight -mt-8 md:-mt-12 ml-2",children:e})]}),(0,t.jsx)("p",{className:"text-xl text-slate-600 leading-relaxed max-w-xl",children:l}),m||i&&(x?(0,t.jsx)(s.Button,{asChild:!0,variant:"pill",className:(0,f.cn)("px-8 bg-white border-none shadow-xl hover:shadow-2xl text-lg font-black uppercase tracking-widest",o),children:h?(0,t.jsx)("a",{href:x,target:"_blank",rel:"noopener noreferrer",children:i}):(0,t.jsx)(d.default,{href:x,children:i})}):(0,t.jsx)(s.Button,{variant:"pill",className:(0,f.cn)("px-8 bg-white border-none shadow-xl hover:shadow-2xl text-lg font-black uppercase tracking-widest",o),children:i}))]}),(0,t.jsx)("div",{className:"flex-1 w-full flex justify-center",children:c||(0,t.jsxs)("div",{className:"relative group",children:[(0,t.jsx)("div",{className:(0,f.cn)("absolute inset-0 blur-3xl opacity-20 rounded-full transition-all duration-500 scale-110 group-hover:scale-125",o.replace("text-","bg-"))}),(0,t.jsx)(r.Card,{className:"relative w-full aspect-video md:w-[500px] md:h-[350px] bg-white shadow-2xl rounded-[2.5rem] overflow-hidden border-none transform transition-transform duration-700 group-hover:scale-105",children:(0,t.jsx)("div",{className:"w-full h-full bg-slate-50 flex items-center justify-center",children:(0,t.jsx)("div",{className:(0,f.cn)("w-20 h-20 rounded-full opacity-20",o.replace("text-","bg-"))})})})]})})]})})});var b=e.i(46932),v=e.i(88653);let j=()=>{let{t:e}=(0,c.useLanguage)(),[a,r]=p.useState(!1);return p.useEffect(()=>{localStorage.getItem("cookie-consent")||setTimeout(()=>r(!0),2e3)},[]),(0,t.jsx)(v.AnimatePresence,{children:a&&(0,t.jsx)(b.motion.div,{initial:{y:100,opacity:0},animate:{y:0,opacity:1},exit:{y:100,opacity:0},className:"fixed bottom-6 left-6 right-6 md:left-auto md:right-6 md:w-[400px] bg-white shadow-2xl rounded-3xl p-6 z-[100] border border-slate-100",children:(0,t.jsxs)("div",{className:"space-y-4",children:[(0,t.jsx)("h4",{className:"font-bold text-lg",children:e.cookie.title}),(0,t.jsx)("p",{className:"text-sm text-slate-600 leading-relaxed",children:e.cookie.description}),(0,t.jsxs)("div",{className:"flex gap-3",children:[(0,t.jsx)(s.Button,{onClick:()=>{localStorage.setItem("cookie-consent","true"),r(!1)},className:"flex-1 rounded-full",children:e.cookie.accept}),(0,t.jsx)(s.Button,{variant:"outline",onClick:()=>r(!1),className:"flex-1 rounded-full",children:e.cookie.decline})]})]})})})};var k=e.i(76841),w=e.i(71689),N=e.i(83157);function y(){let{t:e}=(0,c.useLanguage)();return(0,t.jsxs)("main",{className:"relative min-h-screen",children:[(0,t.jsx)(a.default,{darkMode:!0}),(0,t.jsxs)("div",{className:"absolute md:fixed inset-0 pointer-events-none -z-10 overflow-hidden",children:[(0,t.jsx)("div",{className:"absolute top-1/4 -left-20 w-96 h-96 bg-purple-200 rounded-full blur-3xl opacity-30 animate-blob"}),(0,t.jsx)("div",{className:"absolute top-1/2 -right-20 w-80 h-80 bg-blue-200 rounded-full blur-3xl opacity-30 animate-blob animation-delay-2000"}),(0,t.jsx)("div",{className:"absolute bottom-1/4 left-1/2 -translate-x-1/2 w-[500px] h-[500px] bg-pink-100 rounded-full blur-3xl opacity-20 animate-blob animation-delay-4000"})]}),(0,t.jsx)(u,{}),(0,t.jsx)(g,{oversizedTitle:e.features.transfer.oversized,title:e.features.transfer.title,description:e.features.transfer.description,ctaText:e.features.transfer.cta,accentColor:"text-blue-500",href:"https://app.skyflytravel.hu/public/offers/new",children:(0,t.jsxs)("div",{className:"relative group p-4",children:[(0,t.jsx)("div",{className:"absolute inset-0 bg-blue-500/10 blur-3xl rounded-full scale-110 group-hover:scale-125 transition-transform"}),(0,t.jsxs)(r.Card,{className:"relative w-full aspect-square md:w-[450px] md:h-[450px] rounded-[3rem] overflow-hidden border-none shadow-2xl",children:[(0,t.jsx)(x.default,{src:"/images/IMG_3602.jpeg",alt:"Reptéri transzfer",fill:!0,sizes:"(min-width: 768px) 450px, 90vw",className:"object-cover group-hover:scale-105 transition-transform duration-700"}),(0,t.jsx)("div",{className:"absolute bottom-0 left-0 right-0 p-8 bg-gradient-to-t from-black/90 via-black/50 to-transparent pt-32",children:(0,t.jsxs)("div",{className:"space-y-2",children:[(0,t.jsx)("p",{className:"text-white text-xl font-black uppercase tracking-widest",children:e.features.transfer.cardCaption}),(0,t.jsx)("p",{className:"text-white/80 text-sm font-medium leading-relaxed",children:e.features.transfer.cardDescription})]})})]})]})}),(0,t.jsx)(g,{oversizedTitle:e.features.packages.oversized,title:e.features.packages.title,description:e.features.packages.description,ctaText:e.features.packages.cta,reversed:!0,accentColor:"text-purple-500",href:"/szolgaltatasok",children:(0,t.jsxs)("div",{className:"relative group p-4",children:[(0,t.jsx)("div",{className:"absolute inset-0 bg-purple-500/10 blur-3xl rounded-full scale-110 group-hover:scale-125 transition-transform"}),(0,t.jsxs)(r.Card,{className:"relative w-full aspect-square md:w-[450px] md:h-[450px] rounded-[3rem] overflow-hidden border-none shadow-2xl",children:[(0,t.jsx)(x.default,{src:"/images/family.jpg",alt:"Family Packages",fill:!0,sizes:"(min-width: 768px) 450px, 90vw",className:"object-cover group-hover:scale-105 transition-transform duration-700"}),(0,t.jsx)("div",{className:"absolute bottom-0 left-0 right-0 p-8 bg-gradient-to-t from-black/90 via-black/50 to-transparent pt-32",children:(0,t.jsxs)("div",{className:"space-y-2",children:[(0,t.jsx)("p",{className:"text-white text-xl font-black uppercase tracking-widest",children:e.features.packages.cardCaption}),(0,t.jsx)("p",{className:"text-white/80 text-sm font-medium leading-relaxed",children:e.features.packages.cardDescription})]})})]})]})}),(0,t.jsx)(g,{oversizedTitle:e.features.security.oversized,title:e.features.security.title,description:e.features.security.description,accentColor:"text-green-500",children:(0,t.jsxs)("div",{className:"relative group p-4",children:[(0,t.jsx)("div",{className:"absolute inset-0 bg-green-500/10 blur-3xl rounded-full scale-110 group-hover:scale-125 transition-transform"}),(0,t.jsxs)(r.Card,{className:"relative w-full aspect-square md:w-[450px] md:h-[450px] rounded-[3rem] overflow-hidden border-none shadow-2xl",children:[(0,t.jsx)(x.default,{src:"/images/interior.jpg",alt:"Security and Comfort",fill:!0,sizes:"(min-width: 768px) 450px, 90vw",className:"object-cover group-hover:scale-105 transition-transform duration-700"}),(0,t.jsx)("div",{className:"absolute bottom-0 left-0 right-0 p-8 bg-gradient-to-t from-black/90 via-black/50 to-transparent pt-32",children:(0,t.jsxs)("div",{className:"space-y-2",children:[(0,t.jsx)("p",{className:"text-white text-xl font-black uppercase tracking-widest",children:e.features.security.cardCaption}),(0,t.jsx)("p",{className:"text-white/80 text-sm font-medium leading-relaxed",children:e.features.security.cardDescription})]})})]})]})}),(0,t.jsx)(g,{oversizedTitle:e.features.booking.oversized,title:e.features.booking.title,description:e.features.booking.description,ctaText:e.features.booking.cta,reversed:!0,accentColor:"text-orange-500",href:"https://app.skyflytravel.hu/public/offers/new",externalLink:!0,children:(0,t.jsxs)("div",{className:"relative group p-4",children:[(0,t.jsx)("div",{className:"absolute inset-0 bg-orange-500/10 blur-3xl rounded-full scale-110 group-hover:scale-125 transition-transform"}),(0,t.jsxs)(r.Card,{className:"relative w-full aspect-square md:w-[450px] md:h-[450px] rounded-[3rem] overflow-hidden border-none shadow-2xl bg-white flex items-center justify-center p-8",children:[(0,t.jsx)(x.default,{src:"/images/booking-bg.svg",alt:"",fill:!0,sizes:"(min-width: 768px) 450px, 90vw",className:"object-cover opacity-35","aria-hidden":!0}),(0,t.jsx)("div",{className:"absolute inset-0 bg-gradient-to-b from-white/95 via-white/80 to-white/95"}),(0,t.jsx)("div",{className:"absolute inset-0 backdrop-blur-[1px]"}),(0,t.jsxs)("div",{className:"relative text-center space-y-6",children:[(0,t.jsx)("div",{className:"w-20 h-20 bg-white rounded-2xl flex items-center justify-center mx-auto shadow-[0_20px_40px_rgba(15,23,42,0.15)] ring-1 ring-orange-200/70",children:(0,t.jsx)(l.Star,{className:"w-10 h-10 text-orange-500"})}),(0,t.jsx)("h4",{className:"text-2xl font-black uppercase tracking-tighter text-slate-900",children:e.features.booking.cardCaption}),(0,t.jsx)("p",{className:"text-slate-700 text-sm font-medium leading-relaxed max-w-xs mx-auto",children:e.features.booking.cardDescription}),(0,t.jsxs)("div",{className:"space-y-2 pt-4",children:[(0,t.jsx)("div",{className:"h-2 w-48 bg-slate-200/70 rounded-full mx-auto"}),(0,t.jsx)("div",{className:"h-2 w-32 bg-slate-200/40 rounded-full mx-auto"})]})]})]})]})}),(0,t.jsx)(g,{oversizedTitle:e.features.fleet.oversized,title:e.features.fleet.title,description:e.features.fleet.description,ctaText:e.features.fleet.cta,accentColor:"text-pink-500",href:"/flotta",children:(0,t.jsxs)("div",{className:"relative group p-4",children:[(0,t.jsx)("div",{className:"absolute inset-0 bg-pink-500/10 blur-3xl rounded-full scale-110 group-hover:scale-125 transition-transform"}),(0,t.jsxs)(r.Card,{className:"relative w-full aspect-square md:w-[450px] md:h-[450px] rounded-[3rem] overflow-hidden border-none shadow-2xl",children:[(0,t.jsx)(x.default,{src:"/images/fleet-modern.jpg",alt:"Our Fleet",fill:!0,sizes:"(min-width: 768px) 450px, 90vw",className:"object-cover group-hover:scale-105 transition-transform duration-700"}),(0,t.jsx)("div",{className:"absolute bottom-0 left-0 right-0 p-8 bg-gradient-to-t from-black/90 via-black/50 to-transparent pt-32",children:(0,t.jsxs)("div",{className:"space-y-2",children:[(0,t.jsx)("p",{className:"text-white text-xl font-black uppercase tracking-widest",children:e.features.fleet.cardCaption}),(0,t.jsx)("p",{className:"text-white/80 text-sm font-medium leading-relaxed",children:e.features.fleet.cardDescription})]})})]})]})}),(0,t.jsx)(g,{oversizedTitle:e.features.nonstop.oversized,title:e.features.nonstop.title,description:e.features.nonstop.description,reversed:!0,accentColor:"text-cyan-500",customCTA:(0,t.jsxs)("div",{className:"flex flex-wrap gap-6 pt-2",children:[(0,t.jsxs)("div",{className:"space-y-1",children:[(0,t.jsx)("p",{className:"text-[10px] font-black uppercase tracking-widest text-slate-400",children:e.contactPage.info.phone}),(0,t.jsx)("a",{href:`tel:${e.common.phone.replace(/\s/g,"")}`,className:"text-xl font-black text-white bg-cyan-500 px-4 py-2 rounded-xl inline-block hover:scale-105 transition-transform",children:e.common.phone})]}),(0,t.jsxs)("div",{className:"space-y-1",children:[(0,t.jsx)("p",{className:"text-[10px] font-black uppercase tracking-widest text-slate-400",children:e.contactPage.info.email}),(0,t.jsx)("a",{href:`mailto:${e.common.email}`,className:"text-lg font-bold text-slate-900 hover:text-cyan-500 transition-colors block italic",children:e.common.email})]})]}),children:(0,t.jsxs)("div",{className:"relative group p-4",children:[(0,t.jsx)("div",{className:"absolute inset-0 bg-cyan-500/10 blur-3xl rounded-full scale-110 group-hover:scale-125 transition-transform"}),(0,t.jsxs)(r.Card,{className:"relative w-full aspect-square md:w-[450px] md:h-[450px] rounded-[3rem] overflow-hidden border-none shadow-2xl",children:[(0,t.jsx)(x.default,{src:"/images/IMG_4376.jpeg",alt:"Non-stop help",fill:!0,sizes:"(min-width: 768px) 450px, 90vw",className:"object-cover group-hover:scale-105 transition-transform duration-700"}),(0,t.jsx)("div",{className:"absolute bottom-0 left-0 right-0 p-6 bg-gradient-to-t from-black/80 to-transparent",children:(0,t.jsx)("p",{className:"text-white text-lg font-bold uppercase tracking-widest",children:e.features.nonstop.cardCaption})})]})]})}),(0,t.jsx)(g,{oversizedTitle:e.discounts.oversized,title:e.discounts.title,description:e.discounts.description,accentColor:"text-primary",customCTA:(0,t.jsxs)("div",{className:"flex flex-wrap gap-4",children:[(0,t.jsx)(s.Button,{asChild:!0,size:"lg",className:"rounded-full px-8 h-12 text-xs font-bold uppercase tracking-widest bg-blue-600 text-white hover:bg-blue-700 transition-all shadow-xl",children:(0,t.jsx)(d.default,{href:"/akciok/facebook-google",children:e.discounts.fbGoogle.title})}),(0,t.jsx)(s.Button,{asChild:!0,size:"lg",className:"rounded-full px-8 h-12 text-xs font-bold uppercase tracking-widest bg-black text-white hover:bg-slate-900 transition-all shadow-xl",children:(0,t.jsx)(d.default,{href:"/akciok/tiktok",children:e.discounts.tiktok.title})})]}),children:(0,t.jsxs)("div",{className:"relative group p-4",children:[(0,t.jsx)("div",{className:"absolute inset-0 bg-primary/20 blur-3xl rounded-full scale-110 group-hover:scale-125 transition-transform"}),(0,t.jsxs)(r.Card,{className:"relative w-full aspect-square md:w-[450px] md:h-[450px] rounded-[3rem] overflow-hidden border-none shadow-2xl bg-slate-900",children:[(0,t.jsx)(x.default,{src:"/images/discounts_bg.png",alt:"Special Discounts",fill:!0,sizes:"(min-width: 768px) 450px, 90vw",className:"object-cover opacity-50 group-hover:opacity-70 transition-all duration-700 blur-[2px] group-hover:blur-0"}),(0,t.jsxs)("div",{className:"absolute inset-0 p-8 flex flex-col justify-center space-y-4",children:[(0,t.jsxs)("div",{className:"bg-white/95 backdrop-blur-xl p-6 rounded-3xl shadow-2xl transform transition-all duration-500 hover:-translate-y-2",children:[(0,t.jsxs)("div",{className:"flex items-center gap-4 mb-3",children:[(0,t.jsx)("div",{className:"bg-blue-600 p-2 rounded-lg",children:(0,t.jsx)(N.Facebook,{className:"w-4 h-4 text-white"})}),(0,t.jsx)("h4",{className:"font-black text-slate-900 text-sm uppercase",children:e.discounts.fbGoogle.title})]}),(0,t.jsx)("p",{className:"text-slate-500 text-xs font-medium mb-4",children:e.discounts.fbGoogle.desc}),(0,t.jsxs)(d.default,{href:"/akciok/facebook-google",className:"text-[10px] font-black text-primary uppercase tracking-widest hover:gap-3 flex items-center gap-2 group/link transition-all",children:[e.discounts.fbGoogle.cta," ",(0,t.jsx)(w.ArrowLeft,{className:"w-3 h-3 rotate-180"})]})]}),(0,t.jsxs)("div",{className:"bg-white/95 backdrop-blur-xl p-6 rounded-3xl shadow-2xl transform transition-all duration-500 hover:-translate-y-2",children:[(0,t.jsxs)("div",{className:"flex items-center gap-4 mb-3",children:[(0,t.jsx)("div",{className:"bg-black p-2 rounded-lg",children:(0,t.jsx)("svg",{viewBox:"0 0 24 24",className:"w-4 h-4 fill-white",xmlns:"http://www.w3.org/2000/svg",children:(0,t.jsx)("path",{d:"M12.525.02c1.31-.036 2.612-.01 3.91-.01.1.993.414 1.956.96 2.784.73 1.096 1.764 1.93 2.97 2.45v3.91c-.815-.09-1.62-.315-2.38-.64-.816-.35-1.545-.88-2.15-1.53-.102.043-.102.164-.102.26v9.06c0 1.54-.34 3.05-1 4.41-.65 1.35-1.63 2.5-2.83 3.33-1.4.95-3.08 1.45-4.79 1.45-1.68 0-3.32-.48-4.73-1.39-1.21-.79-2.2-1.9-2.86-3.21-.71-1.37-1.07-2.9-1.07-4.47s.36-3.1 1.07-4.47c.66-1.31 1.65-2.42 2.86-3.21 1.25-.8 2.69-1.23 4.18-1.25.102 0 .204-.006.307-.006v3.94c-.037-.006-.074-.012-.112-.012-1.25.038-2.44.57-3.31 1.49-.89.92-1.38 2.16-1.38 3.45 0 1.29.49 2.53 1.38 3.45.87.92 2.06 1.45 3.31 1.49 1.25-.038 2.44-.57 3.31-1.49.89-.92 1.38-2.16 1.38-3.45V0l.024.02z"})})}),(0,t.jsx)("h4",{className:"font-black text-slate-900 text-sm uppercase",children:e.discounts.tiktok.title})]}),(0,t.jsx)("p",{className:"text-slate-500 text-xs font-medium mb-4",children:e.discounts.tiktok.desc}),(0,t.jsxs)(d.default,{href:"/akciok/tiktok",className:"text-[10px] font-black text-primary uppercase tracking-widest hover:gap-3 flex items-center gap-2 group/link transition-all",children:[e.discounts.tiktok.cta," ",(0,t.jsx)(w.ArrowLeft,{className:"w-3 h-3 rotate-180"})]})]})]})]})]})}),(0,t.jsx)("section",{className:"py-12 md:py-16 bg-white",children:(0,t.jsx)("div",{className:"max-w-4xl mx-auto px-6",children:(0,t.jsxs)("div",{className:"space-y-12",children:[(0,t.jsxs)("div",{className:"text-center",children:[(0,t.jsx)("h2",{className:"text-[10px] font-black uppercase tracking-[0.5em] text-primary mb-6",children:e.common.brand}),(0,t.jsx)("h3",{className:"text-4xl md:text-7xl font-black uppercase tracking-tighter leading-tight text-slate-900",children:e.contactPage.seo.title}),(0,t.jsx)("p",{className:"text-xl md:text-2xl font-bold text-primary italic mt-4",children:e.contactPage.seo.subtitle})]}),(0,t.jsx)("div",{className:"space-y-8",children:e.contactPage.seo.content.map((e,a)=>(0,t.jsx)("p",{className:"text-slate-500 leading-relaxed font-medium text-lg md:text-xl text-center md:text-left",children:e},a))})]})})}),(0,t.jsx)(k.default,{}),(0,t.jsx)(j,{})]})}e.s(["default",()=>y],31713)}]); \ No newline at end of file diff --git a/out/_next/static/chunks/7644c98974b8d3d8.js b/out/_next/static/chunks/7644c98974b8d3d8.js deleted file mode 100644 index 42788a5..0000000 --- a/out/_next/static/chunks/7644c98974b8d3d8.js +++ /dev/null @@ -1 +0,0 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,95468,e=>{"use strict";let a=(0,e.i(75254).default)("circle-check",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);e.s(["CheckCircle2",()=>a],95468)},83157,e=>{"use strict";let a=(0,e.i(75254).default)("facebook",[["path",{d:"M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z",key:"1jg4f8"}]]);e.s(["Facebook",()=>a],83157)},33525,(e,a,s)=>{"use strict";Object.defineProperty(s,"__esModule",{value:!0}),Object.defineProperty(s,"warnOnce",{enumerable:!0,get:function(){return t}});let t=e=>{}},26577,e=>{e.v({data:[{area:"SkyFly Travel",placeId:"ChIJQz_NzJm_a0cRGW1U_iUDLuU",rating:5,userRatingCount:285,reviews:[{text:"Mindig a SkyFly-jal utazunk a repülőterekre. Utastársaim nevében is a legjobbakat tudom mondani a cégről és szívesen ajánlom őket mindenkinek. Pontos szervezés, kedves, udvarias és rutinos sofőrök.",rating:5,author:"Gyopar Kallos",publishTime:"2026-01-13T13:05:09.781273430Z"},{text:"Évente több alkalommal használom reptéri transzfer szolgáltatásukat. Minden alkalommal a megbeszéltek szerint, pontosan a helyszínen voltak. Sofőrjeik segítőkészek. A megrendelés leadása után nem zaklatják az embert különféle emailekkel. Az utazás előtti napon küldik a sofőr nevét, elérhetőségét.",rating:5,author:"Péter",publishTime:"2025-12-04T13:51:00.646252562Z"},{text:"Évek óta a SkyFly szolgáltatását használjuk, mindig maximálisan elégedett voltunk. Megbízhatóak, pontosak és rugalmasak, ami hosszú utazások előtt és után különösen sokat jelent. A sofőrök kedvesek, figyelmesek és biztonságosan vezetnek.\nAz autók tiszták, kényelmesek, minden alkalommal gördülékeny a teljes transzfer. Bátran ajánlom mindenkinek, aki minőségi és profi szolgáltatást keres!",rating:5,author:"Csaba Farkas",publishTime:"2025-11-19T10:02:24.246395337Z"},{text:"Nagyon elégedett voltam a szolgáltatással! A sofőr pontosan érkezett, udvarias és segítőkész volt, az autó tiszta és kényelmes. Az út gyorsan és biztonságosan telt, minden gördülékenyen zajlott. Bátran ajánlom mindenkinek, aki megbízható reptéri transzfert keres.",rating:5,author:"Tunde Csendes",publishTime:"2025-10-08T06:21:01.050570478Z"},{text:"100%-os pozitív tapasztalat, nagyon örülök, hogy rátaláltunk a cégre. A kapott árajánlatok közül messze a legjobb árat kaptuk tőlük reptéri transzferre.Korrekt ár, gördülékeny kommunikáció, gyors és precíz választ kaptunk minden kérdésünkre. A sofőr nagyon kedves, udvarias, pontos és megbízható volt. A járatunk késését is nagyon rugalmasan kezelték. Csak ajánlani tudjuk őket a legjobb szívvel.",rating:5,author:"Gruber Andrea",publishTime:"2025-09-22T12:24:38.650812077Z"}]}]})},61405,e=>{e.v({data:[{area:"SkyFly Travel",placeId:"ChIJQz_NzJm_a0cRGW1U_iUDLuU",rating:5,userRatingCount:285,reviews:[{text:"Sky fly is a great company. The booking website is easy to understand. And the prices are fare. Also when a last minute situation occurs they always make it work to get you to your destination. Over the years I had a couple situations where I needed a last second change and every time the make it work. The drivers are also great. I would recommend this shuttle service.",rating:5,author:"matthijs van leijenhorst",publishTime:"2025-09-22T07:55:17.174730841Z"},{text:"Travel SkyFly has been providing an outstanding experience. The drivers are professional, punctual, and polite, and their cars are always immaculate and comfortable. Whether you're traveling between Vienna and Budapest or need reliable airport transportation, I highly recommend their services. Truly a hassle-free and dependable choice!",rating:5,author:"Krisztian Nagy",publishTime:"2024-12-04T16:27:45.117418Z"},{text:"SkyFly Travel Kft is MORE than a partner in providing the best chauffeur service — professional, reliable, and always exceeding expectations. Highly recommended for anyone seeking comfort, punctuality, and premium service in every ride - ViziZene Kft",rating:5,author:"Zoltan Biczo",publishTime:"2025-05-11T05:53:25.464513Z"},{text:"Professional, punctual, polite driver. Nice clean cars. I would highly recommend to those who needs a ride from or to airport from Vienna or to Budapest. I had a last minute booking, they were there as promised. Punctual arriving for my flight. Highly recommend.",rating:5,author:"Judit Csibi",publishTime:"2023-09-05T21:47:44.438396Z"},{text:"I was asked to fill in a review about my experiences with flysky travel. I have been able to experience a taxi ride with them 6 times so far. Everything is arranged down to the last detail, the reservation, the information provided about how the trip will go.. and especially the drivers. I have no complaints about this, polite and friendly drivers. In my case I have been picked up several times by Roland Klauz. This driver is recommended to be picked up by. Super friendly guy. Who takes you from A to B in a relaxed way. And with whom good contact can be maintained before / during and after the ride. Applause for Skyfly. Greetings Martijn van der Meer.",rating:5,author:"Martijn van der Meer",publishTime:"2024-08-05T15:18:27.019324Z"}]}]})},95010,e=>{"use strict";var a=e.i(43476),s=e.i(46932),t=e.i(47163);e.s(["default",0,({className:e,children:i})=>(0,a.jsx)(s.motion.main,{className:(0,t.cn)(e),initial:{opacity:0,y:24},animate:{opacity:1,y:0},transition:{duration:.7,ease:[.16,1,.3,1]},children:i})])},70065,e=>{"use strict";var a=e.i(43476),s=e.i(71645),t=e.i(47163);let i=s.forwardRef(({className:e,...s},i)=>(0,a.jsx)("div",{ref:i,className:(0,t.cn)("rounded-3xl border bg-card text-card-foreground shadow-sm",e),...s}));i.displayName="Card",s.forwardRef(({className:e,...s},i)=>(0,a.jsx)("div",{ref:i,className:(0,t.cn)("flex flex-col space-y-1.5 p-6",e),...s})).displayName="CardHeader",s.forwardRef(({className:e,...s},i)=>(0,a.jsx)("h3",{ref:i,className:(0,t.cn)("text-2xl font-semibold leading-none tracking-tight",e),...s})).displayName="CardTitle",s.forwardRef(({className:e,...s},i)=>(0,a.jsx)("p",{ref:i,className:(0,t.cn)("text-sm text-muted-foreground",e),...s})).displayName="CardDescription",s.forwardRef(({className:e,...s},i)=>(0,a.jsx)("div",{ref:i,className:(0,t.cn)("p-6 pt-0",e),...s})).displayName="CardContent",s.forwardRef(({className:e,...s},i)=>(0,a.jsx)("div",{ref:i,className:(0,t.cn)("flex items-center p-6 pt-0",e),...s})).displayName="CardFooter",e.s(["Card",()=>i])},3116,e=>{"use strict";let a=(0,e.i(75254).default)("clock",[["path",{d:"M12 6v6l4 2",key:"mmk7yg"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);e.s(["Clock",()=>a],3116)},43432,e=>{"use strict";let a=(0,e.i(75254).default)("phone",[["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",key:"9njp5v"}]]);e.s(["Phone",()=>a],43432)},98919,46897,e=>{"use strict";var a=e.i(75254);let s=(0,a.default)("shield",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}]]);e.s(["Shield",()=>s],98919);let t=(0,a.default)("map-pin",[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}]]);e.s(["MapPin",()=>t],46897)},3339,e=>{"use strict";var a=e.i(43476),s=e.i(63780),t=e.i(76841),i=e.i(95010),r=e.i(70065),l=e.i(71689),n=e.i(95468),c=e.i(83157),o=e.i(43432);let d=(0,e.i(75254).default)("sparkles",[["path",{d:"M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z",key:"1s2grr"}],["path",{d:"M20 2v4",key:"1rf3ol"}],["path",{d:"M22 4h-4",key:"gwowj6"}],["circle",{cx:"4",cy:"20",r:"2",key:"6kqj1y"}]]);var m=e.i(98919),p=e.i(3116),g=e.i(46897),h=e.i(22016),x=e.i(50661);function u(){let{t:e}=(0,x.useLanguage)(),u=[{unique:e.servicesPage.packages.classic.unique,name:e.servicesPage.packages.classic.title,desc:e.servicesPage.packages.classic.desc,toAirport:e.servicesPage.packages.classic.toAirport,toCity:e.servicesPage.packages.classic.toCity},{unique:e.servicesPage.packages.express.unique,name:e.servicesPage.packages.express.title,desc:e.servicesPage.packages.express.desc,toAirport:e.servicesPage.packages.express.toAirport,toCity:e.servicesPage.packages.express.toCity},{unique:e.servicesPage.packages.private.unique,name:e.servicesPage.packages.private.title,desc:e.servicesPage.packages.private.desc,toAirport:e.servicesPage.packages.private.toAirport,toCity:e.servicesPage.packages.private.toCity},{unique:e.servicesPage.packages.family.unique,name:e.servicesPage.packages.family.title,desc:e.servicesPage.packages.family.desc,toAirport:e.servicesPage.packages.family.toAirport,toCity:e.servicesPage.packages.family.toCity},{unique:e.servicesPage.packages.bigFamily.unique,name:e.servicesPage.packages.bigFamily.title,desc:e.servicesPage.packages.bigFamily.desc,toAirport:e.servicesPage.packages.bigFamily.toAirport,toCity:e.servicesPage.packages.bigFamily.toCity}];return(0,a.jsxs)(i.default,{className:"relative min-h-screen bg-slate-50",children:[(0,a.jsx)(s.default,{darkMode:!1}),(0,a.jsxs)("div",{className:"absolute md:fixed inset-0 pointer-events-none -z-10 overflow-hidden",children:[(0,a.jsx)("div",{className:"absolute -top-24 -right-24 w-[420px] h-[420px] bg-purple-200 rounded-full blur-3xl opacity-30 animate-blob"}),(0,a.jsx)("div",{className:"absolute top-1/2 -left-20 w-[360px] h-[360px] bg-blue-200 rounded-full blur-3xl opacity-30 animate-blob animation-delay-2000"}),(0,a.jsx)("div",{className:"absolute bottom-0 right-1/3 w-[280px] h-[280px] bg-pink-100 rounded-full blur-3xl opacity-30 animate-blob animation-delay-4000"})]}),(0,a.jsxs)("section",{className:"relative pt-32 pb-20 overflow-hidden",children:[(0,a.jsx)("div",{className:"absolute inset-0 -z-10 bg-[#fafaf9]"}),(0,a.jsx)("div",{className:"absolute bottom-0 left-0 w-full h-[90px] bg-white transform -skew-y-2 origin-bottom-left -z-10"}),(0,a.jsxs)("div",{className:"max-w-7xl mx-auto px-6",children:[(0,a.jsxs)(h.default,{href:"/",className:"inline-flex items-center text-slate-400 hover:text-primary mb-10 transition-colors group",children:[(0,a.jsx)("div",{className:"bg-slate-100 p-2 rounded-full mr-3 group-hover:bg-primary/10 transition-colors",children:(0,a.jsx)(l.ArrowLeft,{className:"w-4 h-4"})}),(0,a.jsx)("span",{className:"text-[10px] font-black uppercase tracking-[0.3em]",children:e.servicesPage.back})]}),(0,a.jsxs)("div",{className:"space-y-8 max-w-4xl",children:[(0,a.jsxs)("h1",{className:"text-6xl md:text-9xl font-black uppercase tracking-tighter leading-[0.85] text-slate-900",children:[e.servicesPage.title,(0,a.jsx)("br",{}),(0,a.jsx)("span",{className:"text-primary italic",children:e.servicesPage.titleAccent})]}),(0,a.jsx)("p",{className:"text-lg md:text-2xl text-slate-500 leading-relaxed font-medium",children:e.servicesPage.description})]})]})]}),(0,a.jsx)("section",{className:"py-16",children:(0,a.jsx)("div",{className:"max-w-7xl mx-auto px-6",children:(0,a.jsxs)("div",{className:"grid grid-cols-1 lg:grid-cols-3 gap-10",children:[(0,a.jsxs)("div",{className:"lg:col-span-2 space-y-8",children:[(0,a.jsxs)(r.Card,{className:"rounded-[3rem] border-none shadow-2xl bg-white overflow-hidden",children:[(0,a.jsx)("div",{className:"bg-gradient-to-r from-primary to-secondary px-8 py-6",children:(0,a.jsxs)("div",{className:"flex items-center gap-3 text-white",children:[(0,a.jsx)(d,{className:"w-5 h-5"}),(0,a.jsx)("h2",{className:"text-sm font-black uppercase tracking-[0.3em]",children:e.servicesPage.commonFeatures.title})]})}),(0,a.jsxs)("div",{className:"p-8 space-y-6",children:[(0,a.jsxs)("div",{className:"grid md:grid-cols-3 gap-6 border-b border-slate-100 pb-6",children:[(0,a.jsx)("div",{className:"text-[10px] font-black uppercase tracking-[0.3em] text-primary",children:e.servicesPage.commonFeatures.toAirport}),(0,a.jsx)("div",{className:"md:col-span-2 text-slate-500 text-sm leading-relaxed font-medium",children:e.servicesPage.commonFeatures.toAirportDesc})]}),(0,a.jsxs)("div",{className:"grid md:grid-cols-3 gap-6",children:[(0,a.jsx)("div",{className:"text-[10px] font-black uppercase tracking-[0.3em] text-primary",children:e.servicesPage.commonFeatures.toCity}),(0,a.jsx)("div",{className:"md:col-span-2 text-slate-500 text-sm leading-relaxed font-medium",children:e.servicesPage.commonFeatures.toCityDesc})]})]})]}),(0,a.jsx)("div",{className:"grid grid-cols-1 gap-6",children:u.map((s,t)=>(0,a.jsx)(r.Card,{className:"rounded-[3rem] border-none shadow-xl bg-white overflow-hidden group",children:(0,a.jsxs)("div",{className:"flex flex-col md:flex-row",children:[(0,a.jsxs)("div",{className:"md:w-1/3 bg-slate-900 text-white p-8",children:[(0,a.jsx)("p",{className:"text-[10px] font-black uppercase tracking-[0.35em] text-white/60",children:s.unique}),(0,a.jsx)("h3",{className:"text-2xl font-black uppercase tracking-tight mt-3",children:s.name})]}),(0,a.jsxs)("div",{className:"md:w-2/3 p-8 space-y-6",children:[(0,a.jsx)("p",{className:"text-slate-500 text-sm leading-relaxed font-medium",children:s.desc}),(0,a.jsxs)("div",{className:"grid md:grid-cols-2 gap-6",children:[(0,a.jsxs)("div",{className:"rounded-[2rem] bg-slate-50 p-5 border border-slate-100",children:[(0,a.jsxs)("div",{className:"flex items-center gap-3 mb-3",children:[(0,a.jsx)(g.MapPin,{className:"w-4 h-4 text-primary"}),(0,a.jsx)("span",{className:"text-[10px] font-black uppercase tracking-[0.3em] text-slate-400",children:e.servicesPage.commonFeatures.toAirport})]}),(0,a.jsx)("p",{className:"text-slate-600 text-sm leading-relaxed font-medium",children:s.toAirport})]}),(0,a.jsxs)("div",{className:"rounded-[2rem] bg-slate-50 p-5 border border-slate-100",children:[(0,a.jsxs)("div",{className:"flex items-center gap-3 mb-3",children:[(0,a.jsx)(p.Clock,{className:"w-4 h-4 text-secondary"}),(0,a.jsx)("span",{className:"text-[10px] font-black uppercase tracking-[0.3em] text-slate-400",children:e.servicesPage.commonFeatures.toCity})]}),(0,a.jsx)("p",{className:"text-slate-600 text-sm leading-relaxed font-medium",children:s.toCity})]})]})]})]})},t))})]}),(0,a.jsxs)("div",{className:"space-y-8",children:[(0,a.jsxs)(r.Card,{className:"rounded-[3rem] border-none shadow-2xl bg-white overflow-hidden",children:[(0,a.jsx)("div",{className:"bg-slate-900 px-8 py-6",children:(0,a.jsx)("h2",{className:"text-white text-sm font-black uppercase tracking-[0.3em]",children:e.servicesPage.whyUs.title})}),(0,a.jsx)("div",{className:"p-8 space-y-4",children:e.servicesPage.whyUs.items.map((e,s)=>(0,a.jsxs)("div",{className:"flex items-start gap-3",children:[(0,a.jsx)(n.CheckCircle2,{className:"w-4 h-4 text-primary mt-1"}),(0,a.jsx)("span",{className:"text-slate-600 text-sm leading-relaxed font-medium",children:e})]},s))})]}),(0,a.jsxs)(r.Card,{className:"rounded-[3rem] border-none shadow-2xl bg-white overflow-hidden",children:[(0,a.jsx)("div",{className:"bg-gradient-to-r from-secondary to-primary px-8 py-6",children:(0,a.jsx)("h2",{className:"text-white text-sm font-black uppercase tracking-[0.3em]",children:e.servicesPage.freeOfCharge.title})}),(0,a.jsx)("div",{className:"p-8 space-y-4",children:e.servicesPage.freeOfCharge.items.map((e,s)=>(0,a.jsxs)("div",{className:"flex items-start gap-3",children:[(0,a.jsx)(m.Shield,{className:"w-4 h-4 text-secondary mt-1"}),(0,a.jsx)("span",{className:"text-slate-600 text-sm leading-relaxed font-medium",children:e})]},s))})]}),(0,a.jsxs)(r.Card,{className:"rounded-[3rem] border-none shadow-2xl bg-white overflow-hidden",children:[(0,a.jsx)("div",{className:"bg-slate-900 px-8 py-6",children:(0,a.jsx)("h2",{className:"text-white text-sm font-black uppercase tracking-[0.3em]",children:e.servicesPage.discounts.title})}),(0,a.jsxs)("div",{className:"p-8 space-y-6",children:[(0,a.jsxs)("p",{className:"text-slate-600 text-sm leading-relaxed font-medium",children:[e.servicesPage.discounts.fb," ",(0,a.jsx)(h.default,{href:"/akciok/facebook-google",className:"text-primary font-black hover:underline",children:e.servicesPage.discounts.fbLink})]}),(0,a.jsxs)("div",{className:"flex items-center justify-between rounded-[2rem] bg-slate-50 border border-slate-100 p-4",children:[(0,a.jsx)("div",{className:"text-[10px] font-black uppercase tracking-[0.3em] text-slate-400",children:e.servicesPage.discounts.fbLink}),(0,a.jsx)(h.default,{href:"/akciok/facebook-google",className:"bg-[#4D69A1] p-3 rounded-2xl hover:scale-105 transition-transform",children:(0,a.jsx)(c.Facebook,{className:"text-white w-6 h-6 fill-white"})})]}),(0,a.jsx)("div",{className:"rounded-[2rem] bg-slate-900 text-white p-5",children:(0,a.jsxs)("p",{className:"text-xs leading-relaxed",children:[(0,a.jsxs)("span",{className:"font-black uppercase tracking-wide text-primary",children:[e.servicesPage.discounts.loyalty.split(":")[0],":"]})," ",e.servicesPage.discounts.loyalty.split(":")[1]]})})]})]}),(0,a.jsxs)(r.Card,{className:"rounded-[3rem] border-none shadow-2xl bg-slate-900 text-white p-6 flex items-center gap-4",children:[(0,a.jsx)("div",{className:"bg-primary p-3 rounded-2xl shadow-lg",children:(0,a.jsx)(o.Phone,{className:"w-6 h-6 text-white"})}),(0,a.jsxs)("div",{children:[(0,a.jsx)("p",{className:"text-[10px] font-black text-white/50 uppercase tracking-[0.3em]",children:e.contactPage.info.hotlineShort}),(0,a.jsx)("p",{className:"text-lg font-black",children:e.common.phone})]})]})]})]})})}),(0,a.jsx)(t.default,{})]})}e.s(["default",()=>u],3339)}]); \ No newline at end of file diff --git a/out/_next/static/chunks/76d30fbb78df77de.js b/out/_next/static/chunks/76d30fbb78df77de.js deleted file mode 100644 index 5f735bd..0000000 --- a/out/_next/static/chunks/76d30fbb78df77de.js +++ /dev/null @@ -1 +0,0 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,33525,(e,a,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"warnOnce",{enumerable:!0,get:function(){return s}});let s=e=>{}},26577,e=>{e.v({data:[{area:"SkyFly Travel",placeId:"ChIJQz_NzJm_a0cRGW1U_iUDLuU",rating:5,userRatingCount:285,reviews:[{text:"Mindig a SkyFly-jal utazunk a repülőterekre. Utastársaim nevében is a legjobbakat tudom mondani a cégről és szívesen ajánlom őket mindenkinek. Pontos szervezés, kedves, udvarias és rutinos sofőrök.",rating:5,author:"Gyopar Kallos",publishTime:"2026-01-13T13:05:09.781273430Z"},{text:"Évente több alkalommal használom reptéri transzfer szolgáltatásukat. Minden alkalommal a megbeszéltek szerint, pontosan a helyszínen voltak. Sofőrjeik segítőkészek. A megrendelés leadása után nem zaklatják az embert különféle emailekkel. Az utazás előtti napon küldik a sofőr nevét, elérhetőségét.",rating:5,author:"Péter",publishTime:"2025-12-04T13:51:00.646252562Z"},{text:"Évek óta a SkyFly szolgáltatását használjuk, mindig maximálisan elégedett voltunk. Megbízhatóak, pontosak és rugalmasak, ami hosszú utazások előtt és után különösen sokat jelent. A sofőrök kedvesek, figyelmesek és biztonságosan vezetnek.\nAz autók tiszták, kényelmesek, minden alkalommal gördülékeny a teljes transzfer. Bátran ajánlom mindenkinek, aki minőségi és profi szolgáltatást keres!",rating:5,author:"Csaba Farkas",publishTime:"2025-11-19T10:02:24.246395337Z"},{text:"Nagyon elégedett voltam a szolgáltatással! A sofőr pontosan érkezett, udvarias és segítőkész volt, az autó tiszta és kényelmes. Az út gyorsan és biztonságosan telt, minden gördülékenyen zajlott. Bátran ajánlom mindenkinek, aki megbízható reptéri transzfert keres.",rating:5,author:"Tunde Csendes",publishTime:"2025-10-08T06:21:01.050570478Z"},{text:"100%-os pozitív tapasztalat, nagyon örülök, hogy rátaláltunk a cégre. A kapott árajánlatok közül messze a legjobb árat kaptuk tőlük reptéri transzferre.Korrekt ár, gördülékeny kommunikáció, gyors és precíz választ kaptunk minden kérdésünkre. A sofőr nagyon kedves, udvarias, pontos és megbízható volt. A járatunk késését is nagyon rugalmasan kezelték. Csak ajánlani tudjuk őket a legjobb szívvel.",rating:5,author:"Gruber Andrea",publishTime:"2025-09-22T12:24:38.650812077Z"}]}]})},61405,e=>{e.v({data:[{area:"SkyFly Travel",placeId:"ChIJQz_NzJm_a0cRGW1U_iUDLuU",rating:5,userRatingCount:285,reviews:[{text:"Sky fly is a great company. The booking website is easy to understand. And the prices are fare. Also when a last minute situation occurs they always make it work to get you to your destination. Over the years I had a couple situations where I needed a last second change and every time the make it work. The drivers are also great. I would recommend this shuttle service.",rating:5,author:"matthijs van leijenhorst",publishTime:"2025-09-22T07:55:17.174730841Z"},{text:"Travel SkyFly has been providing an outstanding experience. The drivers are professional, punctual, and polite, and their cars are always immaculate and comfortable. Whether you're traveling between Vienna and Budapest or need reliable airport transportation, I highly recommend their services. Truly a hassle-free and dependable choice!",rating:5,author:"Krisztian Nagy",publishTime:"2024-12-04T16:27:45.117418Z"},{text:"SkyFly Travel Kft is MORE than a partner in providing the best chauffeur service — professional, reliable, and always exceeding expectations. Highly recommended for anyone seeking comfort, punctuality, and premium service in every ride - ViziZene Kft",rating:5,author:"Zoltan Biczo",publishTime:"2025-05-11T05:53:25.464513Z"},{text:"Professional, punctual, polite driver. Nice clean cars. I would highly recommend to those who needs a ride from or to airport from Vienna or to Budapest. I had a last minute booking, they were there as promised. Punctual arriving for my flight. Highly recommend.",rating:5,author:"Judit Csibi",publishTime:"2023-09-05T21:47:44.438396Z"},{text:"I was asked to fill in a review about my experiences with flysky travel. I have been able to experience a taxi ride with them 6 times so far. Everything is arranged down to the last detail, the reservation, the information provided about how the trip will go.. and especially the drivers. I have no complaints about this, polite and friendly drivers. In my case I have been picked up several times by Roland Klauz. This driver is recommended to be picked up by. Super friendly guy. Who takes you from A to B in a relaxed way. And with whom good contact can be maintained before / during and after the ride. Applause for Skyfly. Greetings Martijn van der Meer.",rating:5,author:"Martijn van der Meer",publishTime:"2024-08-05T15:18:27.019324Z"}]}]})},95010,e=>{"use strict";var a=e.i(43476),t=e.i(46932),s=e.i(47163);e.s(["default",0,({className:e,children:r})=>(0,a.jsx)(t.motion.main,{className:(0,s.cn)(e),initial:{opacity:0,y:24},animate:{opacity:1,y:0},transition:{duration:.7,ease:[.16,1,.3,1]},children:r})])},70065,e=>{"use strict";var a=e.i(43476),t=e.i(71645),s=e.i(47163);let r=t.forwardRef(({className:e,...t},r)=>(0,a.jsx)("div",{ref:r,className:(0,s.cn)("rounded-3xl border bg-card text-card-foreground shadow-sm",e),...t}));r.displayName="Card",t.forwardRef(({className:e,...t},r)=>(0,a.jsx)("div",{ref:r,className:(0,s.cn)("flex flex-col space-y-1.5 p-6",e),...t})).displayName="CardHeader",t.forwardRef(({className:e,...t},r)=>(0,a.jsx)("h3",{ref:r,className:(0,s.cn)("text-2xl font-semibold leading-none tracking-tight",e),...t})).displayName="CardTitle",t.forwardRef(({className:e,...t},r)=>(0,a.jsx)("p",{ref:r,className:(0,s.cn)("text-sm text-muted-foreground",e),...t})).displayName="CardDescription",t.forwardRef(({className:e,...t},r)=>(0,a.jsx)("div",{ref:r,className:(0,s.cn)("p-6 pt-0",e),...t})).displayName="CardContent",t.forwardRef(({className:e,...t},r)=>(0,a.jsx)("div",{ref:r,className:(0,s.cn)("flex items-center p-6 pt-0",e),...t})).displayName="CardFooter",e.s(["Card",()=>r])},52571,e=>{"use strict";let a=(0,e.i(75254).default)("info",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 16v-4",key:"1dtifu"}],["path",{d:"M12 8h.01",key:"e9boi3"}]]);e.s(["Info",()=>a],52571)},22604,e=>{"use strict";var a=e.i(43476),t=e.i(63780),s=e.i(76841),r=e.i(95010),i=e.i(70065),n=e.i(71689),l=e.i(52571),o=e.i(22016),d=e.i(50661);function c(){let{t:e}=(0,d.useLanguage)();return(0,a.jsxs)(r.default,{className:"relative min-h-screen bg-slate-50",children:[(0,a.jsx)(t.default,{darkMode:!0}),(0,a.jsxs)("div",{className:"fixed inset-0 pointer-events-none -z-10 overflow-hidden",children:[(0,a.jsx)("div",{className:"absolute top-1/4 -right-20 w-96 h-96 bg-primary/5 rounded-full blur-3xl opacity-30 animate-blob"}),(0,a.jsx)("div",{className:"absolute top-1/2 -left-20 w-80 h-80 bg-secondary/5 rounded-full blur-3xl opacity-30 animate-blob animation-delay-2000"})]}),(0,a.jsxs)("section",{className:"relative pt-40 pb-32 overflow-hidden bg-[#D9A321]",children:[(0,a.jsx)("div",{className:"absolute inset-0 bg-diagonal opacity-100 -z-10",style:{background:"linear-gradient(135deg, #D9A321 0%, #1A1A1A 100%)"}}),(0,a.jsx)("div",{className:"absolute bottom-0 left-0 w-full h-[100px] bg-slate-50 transform -skew-y-3 origin-bottom-left -z-10"}),(0,a.jsxs)("div",{className:"max-w-7xl mx-auto px-6 relative z-10",children:[(0,a.jsxs)(o.default,{href:"/",className:"inline-flex items-center text-white/70 hover:text-white mb-10 transition-colors group",children:[(0,a.jsx)("div",{className:"bg-white/10 p-2 rounded-full mr-3 group-hover:bg-white/20 transition-colors",children:(0,a.jsx)(n.ArrowLeft,{className:"w-4 h-4"})}),(0,a.jsx)("span",{className:"text-xs font-bold tracking-[0.2em] uppercase",children:e.conditionsPage.back})]}),(0,a.jsx)("div",{className:"space-y-4",children:(0,a.jsxs)("h1",{className:"text-5xl md:text-8xl font-black text-white tracking-tighter leading-none uppercase",children:[e.conditionsPage.title," ",(0,a.jsx)("br",{}),(0,a.jsx)("span",{className:"text-secondary/40 italic",children:e.conditionsPage.titleAccent})]})})]})]}),(0,a.jsx)("section",{className:"py-24",children:(0,a.jsxs)("div",{className:"max-w-5xl mx-auto px-6",children:[(0,a.jsx)("div",{className:"grid grid-cols-1 gap-12",children:e.conditionsPage.sections.map((e,t)=>(0,a.jsxs)("div",{className:"relative",children:[(0,a.jsxs)("div",{className:"flex items-center gap-4 mb-8",children:[(0,a.jsx)("div",{className:"bg-primary/10 p-2.5 rounded-xl",children:(0,a.jsx)(l.Info,{className:"w-5 h-5 text-primary"})}),(0,a.jsx)("h2",{className:"text-2xl md:text-3xl font-black text-slate-900 uppercase tracking-tight",children:e.title})]}),(0,a.jsx)(i.Card,{className:"p-8 md:p-12 rounded-[2.5rem] border-none shadow-xl bg-white space-y-6",children:e.content.map((e,t)=>(0,a.jsx)("p",{className:"text-slate-600 leading-relaxed font-medium text-lg",children:e},t))})]},t))}),(0,a.jsxs)("div",{className:"mt-24 bg-slate-900 rounded-[3rem] p-12 text-center text-white relative overflow-hidden shadow-2xl",children:[(0,a.jsx)("div",{className:"absolute top-0 right-0 w-64 h-64 bg-primary/10 rounded-full blur-3xl -mr-32 -mt-32"}),(0,a.jsx)("p",{className:"relative z-10 text-xl font-bold uppercase tracking-widest text-primary mb-4",children:"SkyFly Travel"}),(0,a.jsx)("h2",{className:"relative z-10 text-3xl md:text-4xl font-black uppercase tracking-tighter mb-8",children:e.nav.contact}),(0,a.jsxs)("div",{className:"relative z-10 flex flex-wrap justify-center gap-8",children:[(0,a.jsx)("a",{href:`tel:${e.common.phone.replace(/\s/g,"")}`,className:"font-bold text-lg hover:text-primary transition-colors",children:e.common.phone}),(0,a.jsx)("a",{href:`mailto:${e.common.email}`,className:"font-bold text-lg hover:text-primary transition-colors",children:e.common.email})]})]})]})}),(0,a.jsx)(s.default,{})]})}e.s(["default",()=>c])}]); \ No newline at end of file diff --git a/out/_next/static/chunks/7e5a7cffa7289968.js b/out/_next/static/chunks/7e5a7cffa7289968.js new file mode 100644 index 0000000..f582ec7 --- /dev/null +++ b/out/_next/static/chunks/7e5a7cffa7289968.js @@ -0,0 +1 @@ +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,52571,e=>{"use strict";let s=(0,e.i(75254).default)("info",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 16v-4",key:"1dtifu"}],["path",{d:"M12 8h.01",key:"e9boi3"}]]);e.s(["Info",()=>s],52571)},98919,46897,e=>{"use strict";var s=e.i(75254);let t=(0,s.default)("shield",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}]]);e.s(["Shield",()=>t],98919);let a=(0,s.default)("map-pin",[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}]]);e.s(["MapPin",()=>a],46897)},33525,(e,s,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"warnOnce",{enumerable:!0,get:function(){return a}});let a=e=>{}},95010,e=>{"use strict";var s=e.i(43476),t=e.i(46932),a=e.i(47163);e.s(["default",0,({className:e,children:r})=>(0,s.jsx)(t.motion.main,{className:(0,a.cn)(e),initial:{opacity:0,y:24},animate:{opacity:1,y:0},transition:{duration:.7,ease:[.16,1,.3,1]},children:r})])},70065,e=>{"use strict";var s=e.i(43476),t=e.i(71645),a=e.i(47163);let r=t.forwardRef(({className:e,...t},r)=>(0,s.jsx)("div",{ref:r,className:(0,a.cn)("rounded-3xl border bg-card text-card-foreground shadow-sm",e),...t}));r.displayName="Card",t.forwardRef(({className:e,...t},r)=>(0,s.jsx)("div",{ref:r,className:(0,a.cn)("flex flex-col space-y-1.5 p-6",e),...t})).displayName="CardHeader",t.forwardRef(({className:e,...t},r)=>(0,s.jsx)("h3",{ref:r,className:(0,a.cn)("text-2xl font-semibold leading-none tracking-tight",e),...t})).displayName="CardTitle",t.forwardRef(({className:e,...t},r)=>(0,s.jsx)("p",{ref:r,className:(0,a.cn)("text-sm text-muted-foreground",e),...t})).displayName="CardDescription",t.forwardRef(({className:e,...t},r)=>(0,s.jsx)("div",{ref:r,className:(0,a.cn)("p-6 pt-0",e),...t})).displayName="CardContent",t.forwardRef(({className:e,...t},r)=>(0,s.jsx)("div",{ref:r,className:(0,a.cn)("flex items-center p-6 pt-0",e),...t})).displayName="CardFooter",e.s(["Card",()=>r])},3116,e=>{"use strict";let s=(0,e.i(75254).default)("clock",[["path",{d:"M12 6v6l4 2",key:"mmk7yg"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);e.s(["Clock",()=>s],3116)},43432,e=>{"use strict";let s=(0,e.i(75254).default)("phone",[["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",key:"9njp5v"}]]);e.s(["Phone",()=>s],43432)},63488,e=>{"use strict";let s=(0,e.i(75254).default)("mail",[["path",{d:"m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7",key:"132q7q"}],["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2",key:"izxlao"}]]);e.s(["Mail",()=>s],63488)},61030,e=>{"use strict";var s=e.i(43476),t=e.i(63780),a=e.i(76841),r=e.i(95010),i=e.i(47163),l=e.i(52571),c=e.i(75254);let n=(0,c.default)("tag",[["path",{d:"M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z",key:"vktsd0"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor",key:"kqv944"}]]),d=(0,c.default)("check",[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]]);var o=e.i(98919);let x=(0,c.default)("circle-question-mark",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);var p=e.i(50661),m=e.i(71645);let h=({route:e,rows:t,specials:a,vipInfo:r,effectiveFrom:c,expressInfo:h,districtSurcharge:g})=>{let{t:u}=(0,p.useLanguage)(),[b,f]=(0,m.useState)(!1);return(0,s.jsxs)("div",{className:"w-full space-y-8 mb-24",children:[(0,s.jsxs)("div",{className:"space-y-2 mb-8",children:[(0,s.jsx)("h3",{className:"text-5xl md:text-7xl font-black uppercase tracking-tighter opacity-10 text-primary",children:e.includes("POZSONY")||e.includes("BRATISLAVA")?"BRATISLAVA":e.includes("BÉCS")||e.includes("VIENNA")?"VIENNA":"BUDAPEST"}),(0,s.jsx)("h2",{className:"text-2xl md:text-3xl font-black tracking-tight -mt-8 md:-mt-10 ml-1 text-slate-900 max-w-2xl uppercase",children:e}),g&&(0,s.jsxs)("button",{type:"button",onClick:()=>f(!0),className:"inline-flex items-center gap-2 rounded-full border border-secondary/40 bg-secondary/10 px-4 py-2 text-[11px] font-black uppercase tracking-[0.25em] text-secondary transition-colors hover:border-secondary hover:bg-secondary/20",children:[(0,s.jsx)(x,{className:"h-4 w-4"}),g.label]})]}),(0,s.jsxs)("div",{className:"bg-white rounded-[2.5rem] shadow-xl border border-slate-100 overflow-hidden",children:[(0,s.jsx)("div",{className:"block md:hidden divide-y divide-slate-100",children:t.map((e,t)=>(0,s.jsxs)("div",{className:(0,i.cn)("p-5",t%2==0?"bg-white":"bg-slate-50/30"),children:[(0,s.jsxs)("div",{className:"flex items-center gap-3 text-slate-900 font-bold mb-4",children:[(0,s.jsx)("div",{className:"w-1.5 h-1.5 rounded-full bg-primary"}),(0,s.jsx)("span",{children:e.persons})]}),(0,s.jsxs)("div",{className:"grid grid-cols-2 gap-4 text-sm",children:[(0,s.jsxs)("div",{className:"text-center",children:[(0,s.jsx)("div",{className:"text-[10px] uppercase tracking-[0.2em] text-slate-400 mb-2",children:u.pricing.table.express}),(0,s.jsxs)("div",{className:"font-extrabold text-blue-950 flex items-center justify-center gap-2",children:[(0,s.jsx)("span",{children:e.express}),0===t&&h&&(0,s.jsxs)("span",{className:"relative inline-flex items-center group",children:[(0,s.jsx)(l.Info,{className:"w-3 h-3 text-slate-300 hover:text-primary cursor-help transition-colors"}),(0,s.jsx)("span",{className:"pointer-events-none absolute bottom-full left-1/2 z-10 mb-2 w-64 -translate-x-1/2 rounded-lg bg-slate-900 px-3 py-2 text-[11px] font-medium text-white opacity-0 shadow-lg transition-opacity duration-150 group-hover:opacity-100",children:h})]})]})]}),(0,s.jsxs)("div",{className:"text-center",children:[(0,s.jsx)("div",{className:"text-[10px] uppercase tracking-[0.2em] text-slate-400 mb-2",children:u.pricing.table.private}),(0,s.jsx)("div",{className:"font-extrabold text-white px-4 py-1.5 bg-secondary rounded-full text-xs tracking-wider shadow-sm inline-block",children:e.private})]})]})]},t))}),(0,s.jsx)("div",{className:"hidden md:block overflow-x-auto",children:(0,s.jsxs)("table",{className:"w-full text-left border-collapse",children:[(0,s.jsx)("thead",{children:(0,s.jsxs)("tr",{className:"bg-slate-50/50 text-slate-500 text-[10px] uppercase tracking-[0.2em] border-b border-slate-100",children:[(0,s.jsx)("th",{className:"py-6 px-4 md:py-8 md:px-10 font-bold whitespace-nowrap",children:u.pricing.table.passengers}),(0,s.jsx)("th",{className:"py-6 px-2 md:py-8 md:px-4 font-bold text-center",children:(0,s.jsxs)("div",{className:"flex flex-col items-center gap-1 opacity-40",children:[(0,s.jsx)("span",{className:"text-slate-400",children:u.pricing.table.classic}),(0,s.jsx)("span",{className:"text-[10px] lowercase normal-case tracking-normal",children:u.pricing.table.classicNote})]})}),(0,s.jsx)("th",{className:"py-8 px-4 font-bold text-center",children:(0,s.jsxs)("div",{className:"flex items-center justify-center gap-2",children:[(0,s.jsx)("span",{className:"text-primary font-black",children:u.pricing.table.express}),(0,s.jsx)("div",{className:"bg-primary/10 p-1 rounded-md",children:(0,s.jsx)(n,{className:"w-3 h-3 text-primary"})})]})}),(0,s.jsx)("th",{className:"py-8 px-10 font-bold text-center",children:(0,s.jsxs)("div",{className:"flex items-center justify-center gap-2",children:[(0,s.jsx)("span",{className:"text-secondary font-black",children:u.pricing.table.private}),(0,s.jsx)("div",{className:"bg-secondary/10 p-1 rounded-md",children:(0,s.jsx)(o.Shield,{className:"w-3 h-3 text-secondary"})})]})})]})}),(0,s.jsx)("tbody",{className:"text-slate-700",children:t.map((e,t)=>(0,s.jsxs)("tr",{className:(0,i.cn)("border-b border-slate-50 transition-colors hover:bg-slate-50/80",t%2==0?"bg-white":"bg-slate-50/20"),children:[(0,s.jsx)("td",{className:"py-4 px-4 md:py-5 md:px-10 font-bold text-slate-900 whitespace-nowrap",children:(0,s.jsxs)("div",{className:"flex items-center gap-3",children:[(0,s.jsx)("div",{className:"w-1.5 h-1.5 rounded-full bg-primary"}),e.persons]})}),(0,s.jsx)("td",{className:"py-4 px-2 md:py-5 md:px-4 text-center text-slate-300",children:(0,s.jsx)("span",{className:"text-xs",children:"—"})}),(0,s.jsx)("td",{className:"py-5 px-4 text-center",children:(0,s.jsxs)("div",{className:"flex items-center justify-center gap-2",children:[(0,s.jsx)("span",{className:"font-extrabold text-blue-950",children:e.express}),0===t&&h&&(0,s.jsxs)("span",{className:"relative inline-flex items-center group",children:[(0,s.jsx)(l.Info,{className:"w-3 h-3 text-slate-300 hover:text-primary cursor-help transition-colors"}),(0,s.jsx)("span",{className:"pointer-events-none absolute bottom-full left-1/2 z-10 mb-2 w-64 -translate-x-1/2 rounded-lg bg-slate-900 px-3 py-2 text-[11px] font-medium text-white opacity-0 shadow-lg transition-opacity duration-150 group-hover:opacity-100",children:h})]})]})}),(0,s.jsx)("td",{className:"py-5 px-10 text-center",children:(0,s.jsx)("span",{className:"font-extrabold text-white px-5 py-1.5 bg-secondary rounded-full text-xs tracking-wider shadow-sm",children:e.private})})]},t))})]})}),a&&a.length>0&&(0,s.jsxs)("div",{className:"bg-gradient-to-r from-slate-950 to-slate-900 text-white p-10 space-y-8",children:[(0,s.jsx)("div",{className:"grid grid-cols-1 lg:grid-cols-2 gap-10",children:a.map((e,t)=>(0,s.jsxs)("div",{className:"space-y-3 group",children:[(0,s.jsxs)("div",{className:"flex items-center gap-4",children:[(0,s.jsx)("div",{className:"bg-primary p-2 rounded-xl group-hover:scale-110 transition-transform duration-300 shadow-lg shadow-primary/20",children:(0,s.jsx)(d,{className:"w-4 h-4 text-white"})}),(0,s.jsxs)("span",{className:"font-black text-xl text-white group-hover:text-primary transition-colors tracking-tight",children:[e.name," — ",e.price]})]}),(0,s.jsx)("p",{className:"text-slate-400 text-sm leading-relaxed pl-12 font-medium",children:e.description})]},t))}),r&&r.length>0&&(0,s.jsxs)("div",{className:"pt-8 border-t border-white/5",children:[(0,s.jsx)("h4",{className:"text-[10px] uppercase tracking-[0.3em] text-primary font-black mb-6",children:u.pricing.table.premium}),(0,s.jsx)("div",{className:"flex flex-wrap gap-x-12 gap-y-4",children:r.map((e,t)=>(0,s.jsxs)("div",{className:"flex items-center gap-3 text-sm text-slate-300 font-bold italic",children:[(0,s.jsx)("div",{className:"w-2 h-2 rounded-full bg-primary shadow-[0_0_10px_rgba(217,163,33,0.5)]"}),e]},t))})]})]})]}),c&&(0,s.jsx)("div",{className:"text-right text-slate-400 text-[10px] uppercase tracking-[0.2em] font-black",children:c}),g&&b&&(0,s.jsx)("div",{className:"fixed inset-0 z-50 flex items-center justify-center bg-slate-950/70 px-4",children:(0,s.jsxs)("div",{className:"w-full max-w-2xl overflow-hidden rounded-[2rem] border border-slate-800/80 bg-slate-900 text-white shadow-[0_30px_80px_rgba(15,23,42,0.6)]",children:[(0,s.jsxs)("div",{className:"relative px-8 py-6",children:[(0,s.jsx)("div",{className:"absolute inset-0 bg-gradient-to-br from-slate-900 via-slate-900 to-slate-800 opacity-90"}),(0,s.jsxs)("div",{className:"relative flex items-center justify-between",children:[(0,s.jsxs)("div",{children:[(0,s.jsx)("p",{className:"text-[10px] uppercase tracking-[0.35em] text-secondary/80",children:g.label}),(0,s.jsx)("h4",{className:"text-lg font-black uppercase tracking-tight text-white",children:g.title})]}),(0,s.jsx)("button",{type:"button",onClick:()=>f(!1),className:"h-9 w-9 rounded-full border border-white/10 bg-white/5 text-white/70 transition-colors hover:bg-white/10 hover:text-white","aria-label":g.closeLabel,children:"×"})]})]}),(0,s.jsxs)("div",{className:"space-y-5 px-8 pb-8 pt-2 text-sm text-white/85",children:[(0,s.jsx)("p",{className:"leading-relaxed",children:g.description}),(0,s.jsx)("div",{className:"space-y-3",children:g.items.map((e,t)=>(0,s.jsxs)("div",{className:"flex items-start gap-3 rounded-xl border border-white/5 bg-white/5 px-4 py-3",children:[(0,s.jsx)("span",{className:"mt-0.5 h-2 w-2 flex-shrink-0 rounded-full bg-secondary shadow-[0_0_10px_rgba(217,163,33,0.6)]"}),(0,s.jsx)("span",{className:"font-semibold text-white/90",children:e})]},t))}),(0,s.jsx)("div",{className:"flex justify-end pt-2",children:(0,s.jsx)("button",{type:"button",onClick:()=>f(!1),className:"rounded-full bg-secondary px-6 py-2 text-[11px] font-black uppercase tracking-[0.25em] text-white hover:bg-secondary/90",children:g.closeLabel})})]})]})})]})};var g=e.i(67881),u=e.i(70065),b=e.i(71689),f=e.i(43432),j=e.i(63488),y=e.i(3116),v=e.i(46897),N=e.i(22016);function w(){let{t:e}=(0,p.useLanguage)(),i=s=>e.pricing.expressInfoTemplate.replace("{price}",s),l=i("23.500 HUF"),c=i("28.000 HUF"),n=i("23.500 HUF"),d=i("50.000 HUF"),x=e.pricing.districtSurcharge,m=[{id:"gyor-becs",label:e.pricing.routes.gyorBecs},{id:"gyor-budapest",label:e.pricing.routes.gyorBudapest},{id:"gyor-pozsony",label:e.pricing.routes.gyorPozsony},{id:"budapest-becs",label:e.pricing.routes.budapestBecs}];return(0,s.jsxs)(r.default,{className:"relative min-h-screen bg-slate-50",children:[(0,s.jsx)(t.default,{darkMode:!0}),(0,s.jsxs)("div",{className:"absolute md:fixed inset-0 pointer-events-none -z-10 overflow-hidden",children:[(0,s.jsx)("div",{className:"absolute top-1/4 -right-20 w-96 h-96 bg-purple-100 rounded-full blur-3xl opacity-30 animate-blob"}),(0,s.jsx)("div",{className:"absolute top-1/2 -left-20 w-80 h-80 bg-blue-100 rounded-full blur-3xl opacity-30 animate-blob animation-delay-2000"})]}),(0,s.jsxs)("section",{className:"relative pt-40 pb-32 overflow-hidden bg-[#D9A321]",children:[(0,s.jsx)("div",{className:"absolute inset-0 bg-diagonal opacity-100 -z-10",style:{background:"linear-gradient(135deg, #D9A321 0%, #1A1A1A 100%)"}}),(0,s.jsx)("div",{className:"absolute bottom-0 left-0 w-full h-[100px] bg-slate-50 transform -skew-y-3 origin-bottom-left -z-10"}),(0,s.jsxs)("div",{className:"max-w-7xl mx-auto px-6 relative z-10",children:[(0,s.jsxs)(N.default,{href:"/",className:"inline-flex items-center text-white/70 hover:text-white mb-10 transition-colors group",children:[(0,s.jsx)("div",{className:"bg-white/10 p-2 rounded-full mr-3 group-hover:bg-white/20 transition-colors",children:(0,s.jsx)(b.ArrowLeft,{className:"w-4 h-4"})}),(0,s.jsx)("span",{className:"text-xs font-bold tracking-[0.2em] uppercase",children:e.pricing.back})]}),(0,s.jsxs)("div",{className:"space-y-4",children:[(0,s.jsxs)("h1",{className:"text-5xl md:text-8xl font-black text-white tracking-tighter leading-none",children:[e.pricing.title," ",(0,s.jsx)("br",{}),(0,s.jsx)("span",{className:"text-secondary/40 italic",children:e.pricing.titleAccent})]}),(0,s.jsx)("p",{className:"text-xl text-white/70 max-w-2xl leading-relaxed font-medium",children:e.pricing.description})]})]})]}),(0,s.jsx)("section",{className:"py-16",children:(0,s.jsxs)("div",{className:"max-w-7xl mx-auto px-6",children:[(0,s.jsxs)(u.Card,{className:"p-6 mb-16 bg-white border-blue-100 shadow-xl rounded-[2rem] flex flex-col md:flex-row gap-8 items-center",children:[(0,s.jsx)("div",{className:"bg-primary/10 p-4 rounded-2xl",children:(0,s.jsx)(y.Clock,{className:"w-8 h-8 text-primary"})}),(0,s.jsxs)("div",{className:"flex-1",children:[(0,s.jsx)("h3",{className:"font-extrabold text-blue-950 uppercase tracking-tight mb-1",children:e.pricing.banner.title}),(0,s.jsx)("p",{className:"text-slate-500 text-sm leading-relaxed",children:e.pricing.banner.description})]}),(0,s.jsx)(g.Button,{asChild:!0,className:"rounded-full px-8 h-12 bg-primary hover:bg-primary/90 text-sm font-bold tracking-widest uppercase",children:(0,s.jsx)("a",{href:"https://app.skyflytravel.hu/public/offers/new",target:"_blank",rel:"noopener noreferrer",children:e.nav.cta})})]}),(0,s.jsxs)("div",{className:"mb-14",children:[(0,s.jsx)("div",{className:"text-center text-[10px] font-black uppercase tracking-[0.4em] text-slate-400 mb-4",children:e.pricing.routes.title}),(0,s.jsx)("div",{className:"flex flex-wrap justify-center gap-3",children:m.map(e=>(0,s.jsx)("a",{href:`#${e.id}`,className:"px-4 py-2 rounded-full bg-white text-slate-700 text-xs font-bold uppercase tracking-widest border border-slate-100 shadow-sm hover:border-primary hover:text-primary transition-colors",children:e.label},e.id))})]}),(0,s.jsx)("div",{id:"gyor-becs",children:(0,s.jsx)(h,{route:e.pricing.routesTable.gyorBecs,rows:e.pricing.rows.becs,specials:e.pricing.specials.base,vipInfo:e.pricing.vipInfo.base,effectiveFrom:`${e.pricing.table.effective}: 2026.01.15`,expressInfo:l})}),(0,s.jsx)("div",{id:"gyor-budapest",children:(0,s.jsx)(h,{route:e.pricing.routesTable.gyorBudapest,rows:e.pricing.rows.budapest,specials:e.pricing.specials.base,vipInfo:e.pricing.vipInfo.base,effectiveFrom:`${e.pricing.table.effective}: 2026.01.15`,expressInfo:c,districtSurcharge:x})}),(0,s.jsx)("div",{id:"gyor-pozsony",children:(0,s.jsx)(h,{route:e.pricing.routesTable.gyorPozsony,rows:e.pricing.rows.pozsony,specials:e.pricing.specials.base,vipInfo:e.pricing.vipInfo.base,effectiveFrom:`${e.pricing.table.effective}: 2026.01.15`,expressInfo:n})}),(0,s.jsx)("div",{id:"budapest-becs",children:(0,s.jsx)(h,{route:e.pricing.routesTable.budapestBecs,rows:e.pricing.rows.budapestVienna,specials:e.pricing.specials.budapestVienna,vipInfo:e.pricing.vipInfo.budapestVienna,effectiveFrom:`${e.pricing.table.effective}: 2026.01.15`,expressInfo:d,districtSurcharge:x})}),(0,s.jsxs)("div",{className:"grid grid-cols-1 md:grid-cols-3 gap-8 mt-24",children:[(0,s.jsxs)(u.Card,{className:"p-8 rounded-[2rem] border-none shadow-lg bg-white group hover:-translate-y-2 transition-all duration-300",children:[(0,s.jsx)("div",{className:"bg-green-50 w-16 h-16 rounded-2xl flex items-center justify-center mb-6 group-hover:bg-green-500 transition-colors duration-300",children:(0,s.jsx)(o.Shield,{className:"w-8 h-8 text-green-500 group-hover:text-white transition-colors duration-300"})}),(0,s.jsx)("h4",{className:"font-extrabold text-slate-900 text-xl mb-3 uppercase tracking-tight",children:e.pricing.extra.security.title}),(0,s.jsx)("p",{className:"text-slate-500 text-sm leading-relaxed",children:e.pricing.extra.security.desc})]}),(0,s.jsxs)(u.Card,{className:"p-8 rounded-[2rem] border-none shadow-lg bg-white group hover:-translate-y-2 transition-all duration-300",children:[(0,s.jsx)("div",{className:"bg-blue-50 w-16 h-16 rounded-2xl flex items-center justify-center mb-6 group-hover:bg-blue-500 transition-colors duration-300",children:(0,s.jsx)(v.MapPin,{className:"w-8 h-8 text-blue-500 group-hover:text-white transition-colors duration-300"})}),(0,s.jsx)("h4",{className:"font-extrabold text-slate-900 text-xl mb-3 uppercase tracking-tight",children:e.pricing.extra.addresses.title}),(0,s.jsx)("p",{className:"text-slate-500 text-sm leading-relaxed",children:e.pricing.extra.addresses.desc})]}),(0,s.jsxs)(u.Card,{className:"p-8 rounded-[2rem] border-none shadow-lg bg-white group hover:-translate-y-2 transition-all duration-300",children:[(0,s.jsx)("div",{className:"bg-purple-50 w-16 h-16 rounded-2xl flex items-center justify-center mb-6 group-hover:bg-purple-500 transition-colors duration-300",children:(0,s.jsx)(f.Phone,{className:"w-8 h-8 text-purple-500 group-hover:text-white transition-colors duration-300"})}),(0,s.jsx)("h4",{className:"font-extrabold text-slate-900 text-xl mb-3 uppercase tracking-tight",children:e.pricing.extra.custom.title}),(0,s.jsx)("p",{className:"text-slate-500 text-sm leading-relaxed",children:e.pricing.extra.custom.desc})]})]}),(0,s.jsxs)("div",{className:"mt-24 text-center space-y-8 bg-slate-900 rounded-[3rem] p-16 text-white overflow-hidden relative",children:[(0,s.jsx)("div",{className:"absolute top-0 right-0 w-64 h-64 bg-primary/20 rounded-full blur-3xl -mr-32 -mt-32"}),(0,s.jsxs)("div",{className:"relative z-10 flex flex-col items-center",children:[(0,s.jsx)("h2",{className:"text-3xl md:text-5xl font-black uppercase tracking-tighter mb-8",children:e.pricing.cta.title}),(0,s.jsxs)("div",{className:"flex flex-wrap justify-center gap-12",children:[(0,s.jsxs)("a",{href:`tel:${e.common.phone.replace(/\s/g,"")}`,className:"flex items-center gap-4 text-xl md:text-2xl font-black hover:text-primary transition-colors decoration-primary decoration-4 underline-offset-8 group",children:[(0,s.jsx)("div",{className:"bg-white/5 p-3 rounded-2xl group-hover:bg-primary transition-colors",children:(0,s.jsx)(f.Phone,{className:"text-primary group-hover:text-white"})}),e.common.phone]}),(0,s.jsxs)("a",{href:`mailto:${e.common.email}`,className:"flex items-center gap-4 text-xl md:text-2xl font-black hover:text-primary transition-colors decoration-primary decoration-4 underline-offset-8 group",children:[(0,s.jsx)("div",{className:"bg-white/5 p-3 rounded-2xl group-hover:bg-primary transition-colors",children:(0,s.jsx)(j.Mail,{className:"text-primary group-hover:text-white"})}),e.common.email]})]})]})]})]})}),(0,s.jsx)(a.default,{})]})}e.s(["default",()=>w],61030)}]); \ No newline at end of file diff --git a/out/_next/static/chunks/922e34ac0731fb14.js b/out/_next/static/chunks/922e34ac0731fb14.js new file mode 100644 index 0000000..c5d4e44 --- /dev/null +++ b/out/_next/static/chunks/922e34ac0731fb14.js @@ -0,0 +1 @@ +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,33525,(e,a,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"warnOnce",{enumerable:!0,get:function(){return s}});let s=e=>{}},95010,e=>{"use strict";var a=e.i(43476),t=e.i(46932),s=e.i(47163);e.s(["default",0,({className:e,children:i})=>(0,a.jsx)(t.motion.main,{className:(0,s.cn)(e),initial:{opacity:0,y:24},animate:{opacity:1,y:0},transition:{duration:.7,ease:[.16,1,.3,1]},children:i})])},70065,e=>{"use strict";var a=e.i(43476),t=e.i(71645),s=e.i(47163);let i=t.forwardRef(({className:e,...t},i)=>(0,a.jsx)("div",{ref:i,className:(0,s.cn)("rounded-3xl border bg-card text-card-foreground shadow-sm",e),...t}));i.displayName="Card",t.forwardRef(({className:e,...t},i)=>(0,a.jsx)("div",{ref:i,className:(0,s.cn)("flex flex-col space-y-1.5 p-6",e),...t})).displayName="CardHeader",t.forwardRef(({className:e,...t},i)=>(0,a.jsx)("h3",{ref:i,className:(0,s.cn)("text-2xl font-semibold leading-none tracking-tight",e),...t})).displayName="CardTitle",t.forwardRef(({className:e,...t},i)=>(0,a.jsx)("p",{ref:i,className:(0,s.cn)("text-sm text-muted-foreground",e),...t})).displayName="CardDescription",t.forwardRef(({className:e,...t},i)=>(0,a.jsx)("div",{ref:i,className:(0,s.cn)("p-6 pt-0",e),...t})).displayName="CardContent",t.forwardRef(({className:e,...t},i)=>(0,a.jsx)("div",{ref:i,className:(0,s.cn)("flex items-center p-6 pt-0",e),...t})).displayName="CardFooter",e.s(["Card",()=>i])},52571,e=>{"use strict";let a=(0,e.i(75254).default)("info",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 16v-4",key:"1dtifu"}],["path",{d:"M12 8h.01",key:"e9boi3"}]]);e.s(["Info",()=>a],52571)},22604,e=>{"use strict";var a=e.i(43476),t=e.i(63780),s=e.i(76841),i=e.i(95010),l=e.i(70065),r=e.i(71689),n=e.i(52571),c=e.i(22016),d=e.i(50661);function o(){let{t:e}=(0,d.useLanguage)();return(0,a.jsxs)(i.default,{className:"relative min-h-screen bg-slate-50",children:[(0,a.jsx)(t.default,{darkMode:!0}),(0,a.jsxs)("div",{className:"fixed inset-0 pointer-events-none -z-10 overflow-hidden",children:[(0,a.jsx)("div",{className:"absolute top-1/4 -right-20 w-96 h-96 bg-primary/5 rounded-full blur-3xl opacity-30 animate-blob"}),(0,a.jsx)("div",{className:"absolute top-1/2 -left-20 w-80 h-80 bg-secondary/5 rounded-full blur-3xl opacity-30 animate-blob animation-delay-2000"})]}),(0,a.jsxs)("section",{className:"relative pt-40 pb-32 overflow-hidden bg-[#D9A321]",children:[(0,a.jsx)("div",{className:"absolute inset-0 bg-diagonal opacity-100 -z-10",style:{background:"linear-gradient(135deg, #D9A321 0%, #1A1A1A 100%)"}}),(0,a.jsx)("div",{className:"absolute bottom-0 left-0 w-full h-[100px] bg-slate-50 transform -skew-y-3 origin-bottom-left -z-10"}),(0,a.jsxs)("div",{className:"max-w-7xl mx-auto px-6 relative z-10",children:[(0,a.jsxs)(c.default,{href:"/",className:"inline-flex items-center text-white/70 hover:text-white mb-10 transition-colors group",children:[(0,a.jsx)("div",{className:"bg-white/10 p-2 rounded-full mr-3 group-hover:bg-white/20 transition-colors",children:(0,a.jsx)(r.ArrowLeft,{className:"w-4 h-4"})}),(0,a.jsx)("span",{className:"text-xs font-bold tracking-[0.2em] uppercase",children:e.conditionsPage.back})]}),(0,a.jsx)("div",{className:"space-y-4",children:(0,a.jsxs)("h1",{className:"text-5xl md:text-8xl font-black text-white tracking-tighter leading-none uppercase",children:[e.conditionsPage.title," ",(0,a.jsx)("br",{}),(0,a.jsx)("span",{className:"text-secondary/40 italic",children:e.conditionsPage.titleAccent})]})})]})]}),(0,a.jsx)("section",{className:"py-24",children:(0,a.jsxs)("div",{className:"max-w-5xl mx-auto px-6",children:[(0,a.jsx)("div",{className:"grid grid-cols-1 gap-12",children:e.conditionsPage.sections.map((e,t)=>(0,a.jsxs)("div",{className:"relative",children:[(0,a.jsxs)("div",{className:"flex items-center gap-4 mb-8",children:[(0,a.jsx)("div",{className:"bg-primary/10 p-2.5 rounded-xl",children:(0,a.jsx)(n.Info,{className:"w-5 h-5 text-primary"})}),(0,a.jsx)("h2",{className:"text-2xl md:text-3xl font-black text-slate-900 uppercase tracking-tight",children:e.title})]}),(0,a.jsx)(l.Card,{className:"p-8 md:p-12 rounded-[2.5rem] border-none shadow-xl bg-white space-y-6",children:e.content.map((e,t)=>(0,a.jsx)("p",{className:"text-slate-600 leading-relaxed font-medium text-lg",children:e},t))})]},t))}),(0,a.jsxs)("div",{className:"mt-24 bg-slate-900 rounded-[3rem] p-12 text-center text-white relative overflow-hidden shadow-2xl",children:[(0,a.jsx)("div",{className:"absolute top-0 right-0 w-64 h-64 bg-primary/10 rounded-full blur-3xl -mr-32 -mt-32"}),(0,a.jsx)("p",{className:"relative z-10 text-xl font-bold uppercase tracking-widest text-primary mb-4",children:"SkyFly Travel"}),(0,a.jsx)("h2",{className:"relative z-10 text-3xl md:text-4xl font-black uppercase tracking-tighter mb-8",children:e.nav.contact}),(0,a.jsxs)("div",{className:"relative z-10 flex flex-wrap justify-center gap-8",children:[(0,a.jsx)("a",{href:`tel:${e.common.phone.replace(/\s/g,"")}`,className:"font-bold text-lg hover:text-primary transition-colors",children:e.common.phone}),(0,a.jsx)("a",{href:`mailto:${e.common.email}`,className:"font-bold text-lg hover:text-primary transition-colors",children:e.common.email})]})]})]})}),(0,a.jsx)(s.default,{})]})}e.s(["default",()=>o])}]); \ No newline at end of file diff --git a/out/_next/static/chunks/395811fdad4290d6.js b/out/_next/static/chunks/9d04f56e53f43e3d.js similarity index 66% rename from out/_next/static/chunks/395811fdad4290d6.js rename to out/_next/static/chunks/9d04f56e53f43e3d.js index a595712..d6ba23e 100644 --- a/out/_next/static/chunks/395811fdad4290d6.js +++ b/out/_next/static/chunks/9d04f56e53f43e3d.js @@ -1,3 +1,3 @@ (globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,98183,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={assign:function(){return s},searchParamsToUrlQuery:function(){return i},urlQueryToSearchParams:function(){return l}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});function i(e){let t={};for(let[r,n]of e.entries()){let e=t[r];void 0===e?t[r]=n:Array.isArray(e)?e.push(n):t[r]=[e,n]}return t}function o(e){return"string"==typeof e?e:("number"!=typeof e||isNaN(e))&&"boolean"!=typeof e?"":String(e)}function l(e){let t=new URLSearchParams;for(let[r,n]of Object.entries(e))if(Array.isArray(n))for(let e of n)t.append(r,o(e));else t.set(r,o(n));return t}function s(e,...t){for(let r of t){for(let t of r.keys())e.delete(t);for(let[t,n]of r.entries())e.append(t,n)}return e}},95057,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={formatUrl:function(){return l},formatWithValidation:function(){return c},urlObjectKeys:function(){return s}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let i=e.r(90809)._(e.r(98183)),o=/https?|ftp|gopher|file/;function l(e){let{auth:t,hostname:r}=e,n=e.protocol||"",a=e.pathname||"",l=e.hash||"",s=e.query||"",c=!1;t=t?encodeURIComponent(t).replace(/%3A/i,":")+"@":"",e.host?c=t+e.host:r&&(c=t+(~r.indexOf(":")?`[${r}]`:r),e.port&&(c+=":"+e.port)),s&&"object"==typeof s&&(s=String(i.urlQueryToSearchParams(s)));let u=e.search||s&&`?${s}`||"";return n&&!n.endsWith(":")&&(n+=":"),e.slashes||(!n||o.test(n))&&!1!==c?(c="//"+(c||""),a&&"/"!==a[0]&&(a="/"+a)):c||(c=""),l&&"#"!==l[0]&&(l="#"+l),u&&"?"!==u[0]&&(u="?"+u),a=a.replace(/[?#]/g,encodeURIComponent),u=u.replace("#","%23"),`${n}${c}${a}${u}${l}`}let s=["auth","hash","host","hostname","href","path","pathname","port","protocol","query","search","slashes"];function c(e){return l(e)}},18581,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"useMergedRef",{enumerable:!0,get:function(){return a}});let n=e.r(71645);function a(e,t){let r=(0,n.useRef)(null),a=(0,n.useRef)(null);return(0,n.useCallback)(n=>{if(null===n){let e=r.current;e&&(r.current=null,e());let t=a.current;t&&(a.current=null,t())}else e&&(r.current=i(e,n)),t&&(a.current=i(t,n))},[e,t])}function i(e,t){if("function"!=typeof e)return e.current=t,()=>{e.current=null};{let r=e(t);return"function"==typeof r?r:()=>e(null)}}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},18967,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={DecodeError:function(){return x},MiddlewareNotFoundError:function(){return w},MissingStaticPage:function(){return v},NormalizeError:function(){return y},PageNotFoundError:function(){return b},SP:function(){return m},ST:function(){return g},WEB_VITALS:function(){return i},execOnce:function(){return o},getDisplayName:function(){return d},getLocationOrigin:function(){return c},getURL:function(){return u},isAbsoluteUrl:function(){return s},isResSent:function(){return f},loadGetInitialProps:function(){return h},normalizeRepeatedSlashes:function(){return p},stringifyError:function(){return j}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let i=["CLS","FCP","FID","INP","LCP","TTFB"];function o(e){let t,r=!1;return(...n)=>(r||(r=!0,t=e(...n)),t)}let l=/^[a-zA-Z][a-zA-Z\d+\-.]*?:/,s=e=>l.test(e);function c(){let{protocol:e,hostname:t,port:r}=window.location;return`${e}//${t}${r?":"+r:""}`}function u(){let{href:e}=window.location,t=c();return e.substring(t.length)}function d(e){return"string"==typeof e?e:e.displayName||e.name||"Unknown"}function f(e){return e.finished||e.headersSent}function p(e){let t=e.split("?");return t[0].replace(/\\/g,"/").replace(/\/\/+/g,"/")+(t[1]?`?${t.slice(1).join("?")}`:"")}async function h(e,t){let r=t.res||t.ctx&&t.ctx.res;if(!e.getInitialProps)return t.ctx&&t.Component?{pageProps:await h(t.Component,t.ctx)}:{};let n=await e.getInitialProps(t);if(r&&f(r))return n;if(!n)throw Object.defineProperty(Error(`"${d(e)}.getInitialProps()" should resolve to an object. But found "${n}" instead.`),"__NEXT_ERROR_CODE",{value:"E394",enumerable:!1,configurable:!0});return n}let m="u">typeof performance,g=m&&["mark","measure","getEntriesByName"].every(e=>"function"==typeof performance[e]);class x extends Error{}class y extends Error{}class b extends Error{constructor(e){super(),this.code="ENOENT",this.name="PageNotFoundError",this.message=`Cannot find module for page: ${e}`}}class v extends Error{constructor(e,t){super(),this.message=`Failed to load static file for page: ${e} ${t}`}}class w extends Error{constructor(){super(),this.code="ENOENT",this.message="Cannot find the middleware module"}}function j(e){return JSON.stringify({message:e.message,stack:e.stack})}},73668,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"isLocalURL",{enumerable:!0,get:function(){return i}});let n=e.r(18967),a=e.r(52817);function i(e){if(!(0,n.isAbsoluteUrl)(e))return!0;try{let t=(0,n.getLocationOrigin)(),r=new URL(e,t);return r.origin===t&&(0,a.hasBasePath)(r.pathname)}catch(e){return!1}}},84508,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"errorOnce",{enumerable:!0,get:function(){return n}});let n=e=>{}},22016,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={default:function(){return x},useLinkStatus:function(){return b}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let i=e.r(90809),o=e.r(43476),l=i._(e.r(71645)),s=e.r(95057),c=e.r(8372),u=e.r(18581),d=e.r(18967),f=e.r(5550);e.r(33525);let p=e.r(91949),h=e.r(73668),m=e.r(9396);function g(e){return"string"==typeof e?e:(0,s.formatUrl)(e)}function x(t){var r;let n,a,i,[s,x]=(0,l.useOptimistic)(p.IDLE_LINK_STATUS),b=(0,l.useRef)(null),{href:v,as:w,children:j,prefetch:_=null,passHref:N,replace:k,shallow:P,scroll:E,onClick:C,onMouseEnter:O,onTouchStart:S,legacyBehavior:R=!1,onNavigate:M,ref:z,unstable_dynamicOnHover:T,...$}=t;n=j,R&&("string"==typeof n||"number"==typeof n)&&(n=(0,o.jsx)("a",{children:n}));let I=l.default.useContext(c.AppRouterContext),A=!1!==_,L=!1!==_?null===(r=_)||"auto"===r?m.FetchStrategy.PPR:m.FetchStrategy.Full:m.FetchStrategy.PPR,{href:D,as:F}=l.default.useMemo(()=>{let e=g(v);return{href:e,as:w?g(w):e}},[v,w]);if(R){if(n?.$$typeof===Symbol.for("react.lazy"))throw Object.defineProperty(Error("`` received a direct child that is either a Server Component, or JSX that was loaded with React.lazy(). This is not supported. Either remove legacyBehavior, or make the direct child a Client Component that renders the Link's `` tag."),"__NEXT_ERROR_CODE",{value:"E863",enumerable:!1,configurable:!0});a=l.default.Children.only(n)}let U=R?a&&"object"==typeof a&&a.ref:z,B=l.default.useCallback(e=>(null!==I&&(b.current=(0,p.mountLinkInstance)(e,D,I,L,A,x)),()=>{b.current&&((0,p.unmountLinkForCurrentNavigation)(b.current),b.current=null),(0,p.unmountPrefetchableInstance)(e)}),[A,D,I,L,x]),W={ref:(0,u.useMergedRef)(B,U),onClick(t){R||"function"!=typeof C||C(t),R&&a.props&&"function"==typeof a.props.onClick&&a.props.onClick(t),!I||t.defaultPrevented||function(t,r,n,a,i,o,s){if("u">typeof window){let c,{nodeName:u}=t.currentTarget;if("A"===u.toUpperCase()&&((c=t.currentTarget.getAttribute("target"))&&"_self"!==c||t.metaKey||t.ctrlKey||t.shiftKey||t.altKey||t.nativeEvent&&2===t.nativeEvent.which)||t.currentTarget.hasAttribute("download"))return;if(!(0,h.isLocalURL)(r)){i&&(t.preventDefault(),location.replace(r));return}if(t.preventDefault(),s){let e=!1;if(s({preventDefault:()=>{e=!0}}),e)return}let{dispatchNavigateAction:d}=e.r(99781);l.default.startTransition(()=>{d(n||r,i?"replace":"push",o??!0,a.current)})}}(t,D,F,b,k,E,M)},onMouseEnter(e){R||"function"!=typeof O||O(e),R&&a.props&&"function"==typeof a.props.onMouseEnter&&a.props.onMouseEnter(e),I&&A&&(0,p.onNavigationIntent)(e.currentTarget,!0===T)},onTouchStart:function(e){R||"function"!=typeof S||S(e),R&&a.props&&"function"==typeof a.props.onTouchStart&&a.props.onTouchStart(e),I&&A&&(0,p.onNavigationIntent)(e.currentTarget,!0===T)}};return(0,d.isAbsoluteUrl)(F)?W.href=F:R&&!N&&("a"!==a.type||"href"in a.props)||(W.href=(0,f.addBasePath)(F)),i=R?l.default.cloneElement(a,W):(0,o.jsx)("a",{...$,...W,children:n}),(0,o.jsx)(y.Provider,{value:s,children:i})}e.r(84508);let y=(0,l.createContext)(p.IDLE_LINK_STATUS),b=()=>(0,l.useContext)(y);("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},88143,(e,t,r)=>{"use strict";function n({widthInt:e,heightInt:t,blurWidth:r,blurHeight:n,blurDataURL:a,objectFit:i}){let o=r?40*r:e,l=n?40*n:t,s=o&&l?`viewBox='0 0 ${o} ${l}'`:"";return`%3Csvg xmlns='http://www.w3.org/2000/svg' ${s}%3E%3Cfilter id='b' color-interpolation-filters='sRGB'%3E%3CfeGaussianBlur stdDeviation='20'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 100 -1' result='s'/%3E%3CfeFlood x='0' y='0' width='100%25' height='100%25'/%3E%3CfeComposite operator='out' in='s'/%3E%3CfeComposite in2='SourceGraphic'/%3E%3CfeGaussianBlur stdDeviation='20'/%3E%3C/filter%3E%3Cimage width='100%25' height='100%25' x='0' y='0' preserveAspectRatio='${s?"none":"contain"===i?"xMidYMid":"cover"===i?"xMidYMid slice":"none"}' style='filter: url(%23b);' href='${a}'/%3E%3C/svg%3E`}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"getImageBlurSvg",{enumerable:!0,get:function(){return n}})},87690,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={VALID_LOADERS:function(){return i},imageConfigDefault:function(){return o}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let i=["default","imgix","cloudinary","akamai","custom"],o={deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],path:"/_next/image",loader:"default",loaderFile:"",domains:[],disableStaticImages:!1,minimumCacheTTL:14400,formats:["image/webp"],maximumRedirects:3,dangerouslyAllowLocalIP:!1,dangerouslyAllowSVG:!1,contentSecurityPolicy:"script-src 'none'; frame-src 'none'; sandbox;",contentDispositionType:"attachment",localPatterns:void 0,remotePatterns:[],qualities:[75],unoptimized:!1}},8927,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"getImgProps",{enumerable:!0,get:function(){return c}}),e.r(33525);let n=e.r(43369),a=e.r(88143),i=e.r(87690),o=["-moz-initial","fill","none","scale-down",void 0];function l(e){return void 0!==e.default}function s(e){return void 0===e?e:"number"==typeof e?Number.isFinite(e)?e:NaN:"string"==typeof e&&/^[0-9]+$/.test(e)?parseInt(e,10):NaN}function c({src:e,sizes:t,unoptimized:r=!1,priority:c=!1,preload:u=!1,loading:d,className:f,quality:p,width:h,height:m,fill:g=!1,style:x,overrideSrc:y,onLoad:b,onLoadingComplete:v,placeholder:w="empty",blurDataURL:j,fetchPriority:_,decoding:N="async",layout:k,objectFit:P,objectPosition:E,lazyBoundary:C,lazyRoot:O,...S},R){var M;let z,T,$,{imgConf:I,showAltText:A,blurComplete:L,defaultLoader:D}=R,F=I||i.imageConfigDefault;if("allSizes"in F)z=F;else{let e=[...F.deviceSizes,...F.imageSizes].sort((e,t)=>e-t),t=F.deviceSizes.sort((e,t)=>e-t),r=F.qualities?.sort((e,t)=>e-t);z={...F,allSizes:e,deviceSizes:t,qualities:r}}if(void 0===D)throw Object.defineProperty(Error("images.loaderFile detected but the file is missing default export.\nRead more: https://nextjs.org/docs/messages/invalid-images-config"),"__NEXT_ERROR_CODE",{value:"E163",enumerable:!1,configurable:!0});let U=S.loader||D;delete S.loader,delete S.srcSet;let B="__next_img_default"in U;if(B){if("custom"===z.loader)throw Object.defineProperty(Error(`Image with src "${e}" is missing "loader" prop. Read more: https://nextjs.org/docs/messages/next-image-missing-loader`),"__NEXT_ERROR_CODE",{value:"E252",enumerable:!1,configurable:!0})}else{let e=U;U=t=>{let{config:r,...n}=t;return e(n)}}if(k){"fill"===k&&(g=!0);let e={intrinsic:{maxWidth:"100%",height:"auto"},responsive:{width:"100%",height:"auto"}}[k];e&&(x={...x,...e});let r={responsive:"100vw",fill:"100vw"}[k];r&&!t&&(t=r)}let W="",V=s(h),q=s(m);if((M=e)&&"object"==typeof M&&(l(M)||void 0!==M.src)){let t=l(e)?e.default:e;if(!t.src)throw Object.defineProperty(Error(`An object should only be passed to the image component src parameter if it comes from a static image import. It must include src. Received ${JSON.stringify(t)}`),"__NEXT_ERROR_CODE",{value:"E460",enumerable:!1,configurable:!0});if(!t.height||!t.width)throw Object.defineProperty(Error(`An object should only be passed to the image component src parameter if it comes from a static image import. It must include height and width. Received ${JSON.stringify(t)}`),"__NEXT_ERROR_CODE",{value:"E48",enumerable:!1,configurable:!0});if(T=t.blurWidth,$=t.blurHeight,j=j||t.blurDataURL,W=t.src,!g)if(V||q){if(V&&!q){let e=V/t.width;q=Math.round(t.height*e)}else if(!V&&q){let e=q/t.height;V=Math.round(t.width*e)}}else V=t.width,q=t.height}let G=!c&&!u&&("lazy"===d||void 0===d);(!(e="string"==typeof e?e:W)||e.startsWith("data:")||e.startsWith("blob:"))&&(r=!0,G=!1),z.unoptimized&&(r=!0),B&&!z.dangerouslyAllowSVG&&e.split("?",1)[0].endsWith(".svg")&&(r=!0);let X=s(p),K=Object.assign(g?{position:"absolute",height:"100%",width:"100%",left:0,top:0,right:0,bottom:0,objectFit:P,objectPosition:E}:{},A?{}:{color:"transparent"},x),Z=L||"empty"===w?null:"blur"===w?`url("data:image/svg+xml;charset=utf-8,${(0,a.getImageBlurSvg)({widthInt:V,heightInt:q,blurWidth:T,blurHeight:$,blurDataURL:j||"",objectFit:K.objectFit})}")`:`url("${w}")`,H=o.includes(K.objectFit)?"fill"===K.objectFit?"100% 100%":"cover":K.objectFit,Q=Z?{backgroundSize:H,backgroundPosition:K.objectPosition||"50% 50%",backgroundRepeat:"no-repeat",backgroundImage:Z}:{},Y=function({config:e,src:t,unoptimized:r,width:a,quality:i,sizes:o,loader:l}){if(r){let e=(0,n.getDeploymentId)();if(t.startsWith("/")&&!t.startsWith("//")&&e){let r=t.includes("?")?"&":"?";t=`${t}${r}dpl=${e}`}return{src:t,srcSet:void 0,sizes:void 0}}let{widths:s,kind:c}=function({deviceSizes:e,allSizes:t},r,n){if(n){let r=/(^|\s)(1?\d?\d)vw/g,a=[];for(let e;e=r.exec(n);)a.push(parseInt(e[2]));if(a.length){let r=.01*Math.min(...a);return{widths:t.filter(t=>t>=e[0]*r),kind:"w"}}return{widths:t,kind:"w"}}return"number"!=typeof r?{widths:e,kind:"w"}:{widths:[...new Set([r,2*r].map(e=>t.find(t=>t>=e)||t[t.length-1]))],kind:"x"}}(e,a,o),u=s.length-1;return{sizes:o||"w"!==c?o:"100vw",srcSet:s.map((r,n)=>`${l({config:e,src:t,quality:i,width:r})} ${"w"===c?r:n+1}${c}`).join(", "),src:l({config:e,src:t,quality:i,width:s[u]})}}({config:z,src:e,unoptimized:r,width:V,quality:X,sizes:t,loader:U}),J=G?"lazy":d;return{props:{...S,loading:J,fetchPriority:_,width:V,height:q,decoding:N,className:f,style:{...K,...Q},sizes:Y.sizes,srcSet:Y.srcSet,src:y||Y.src},meta:{unoptimized:r,preload:u||c,placeholder:w,fill:g}}}},98879,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"default",{enumerable:!0,get:function(){return l}});let n=e.r(71645),a="u"{}:n.useLayoutEffect,o=a?()=>{}:n.useEffect;function l(e){let{headManager:t,reduceComponentsToState:r}=e;function l(){if(t&&t.mountedInstances){let e=n.Children.toArray(Array.from(t.mountedInstances).filter(Boolean));t.updateHead(r(e))}}return a&&(t?.mountedInstances?.add(e.children),l()),i(()=>(t?.mountedInstances?.add(e.children),()=>{t?.mountedInstances?.delete(e.children)})),i(()=>(t&&(t._pendingUpdate=l),()=>{t&&(t._pendingUpdate=l)})),o(()=>(t&&t._pendingUpdate&&(t._pendingUpdate(),t._pendingUpdate=null),()=>{t&&t._pendingUpdate&&(t._pendingUpdate(),t._pendingUpdate=null)})),null}},25633,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={default:function(){return m},defaultHead:function(){return d}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let i=e.r(55682),o=e.r(90809),l=e.r(43476),s=o._(e.r(71645)),c=i._(e.r(98879)),u=e.r(42732);function d(){return[(0,l.jsx)("meta",{charSet:"utf-8"},"charset"),(0,l.jsx)("meta",{name:"viewport",content:"width=device-width"},"viewport")]}function f(e,t){return"string"==typeof t||"number"==typeof t?e:t.type===s.default.Fragment?e.concat(s.default.Children.toArray(t.props.children).reduce((e,t)=>"string"==typeof t||"number"==typeof t?e:e.concat(t),[])):e.concat(t)}e.r(33525);let p=["name","httpEquiv","charSet","itemProp"];function h(e){let t,r,n,a;return e.reduce(f,[]).reverse().concat(d().reverse()).filter((t=new Set,r=new Set,n=new Set,a={},e=>{let i=!0,o=!1;if(e.key&&"number"!=typeof e.key&&e.key.indexOf("$")>0){o=!0;let r=e.key.slice(e.key.indexOf("$")+1);t.has(r)?i=!1:t.add(r)}switch(e.type){case"title":case"base":r.has(e.type)?i=!1:r.add(e.type);break;case"meta":for(let t=0,r=p.length;t{let r=e.key||t;return s.default.cloneElement(e,{key:r})})}let m=function({children:e}){let t=(0,s.useContext)(u.HeadManagerContext);return(0,l.jsx)(c.default,{reduceComponentsToState:h,headManager:t,children:e})};("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},18556,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"ImageConfigContext",{enumerable:!0,get:function(){return i}});let n=e.r(55682)._(e.r(71645)),a=e.r(87690),i=n.default.createContext(a.imageConfigDefault)},65856,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"RouterContext",{enumerable:!0,get:function(){return n}});let n=e.r(55682)._(e.r(71645)).default.createContext(null)},70965,(e,t,r)=>{"use strict";function n(e,t){let r=e||75;return t?.qualities?.length?t.qualities.reduce((e,t)=>Math.abs(t-r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"default",{enumerable:!0,get:function(){return o}});let n=e.r(70965),a=e.r(43369);function i({config:e,src:t,width:r,quality:i}){if(t.startsWith("/")&&t.includes("?")&&e.localPatterns?.length===1&&"**"===e.localPatterns[0].pathname&&""===e.localPatterns[0].search)throw Object.defineProperty(Error(`Image with src "${t}" is using a query string which is not configured in images.localPatterns. -Read more: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns`),"__NEXT_ERROR_CODE",{value:"E871",enumerable:!1,configurable:!0});let o=(0,n.findClosestQuality)(i,e),l=(0,a.getDeploymentId)();return`${e.path}?url=${encodeURIComponent(t)}&w=${r}&q=${o}${t.startsWith("/")&&l?`&dpl=${l}`:""}`}i.__next_img_default=!0;let o=i},85437,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"Image",{enumerable:!0,get:function(){return v}});let n=e.r(55682),a=e.r(90809),i=e.r(43476),o=a._(e.r(71645)),l=n._(e.r(74080)),s=n._(e.r(25633)),c=e.r(8927),u=e.r(87690),d=e.r(18556);e.r(33525);let f=e.r(65856),p=n._(e.r(1948)),h=e.r(18581),m={deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],qualities:[75],path:"/_next/image/",loader:"default",dangerouslyAllowSVG:!1,unoptimized:!0};function g(e,t,r,n,a,i,o){let l=e?.src;e&&e["data-loaded-src"]!==l&&(e["data-loaded-src"]=l,("decode"in e?e.decode():Promise.resolve()).catch(()=>{}).then(()=>{if(e.parentElement&&e.isConnected){if("empty"!==t&&a(!0),r?.current){let t=new Event("load");Object.defineProperty(t,"target",{writable:!1,value:e});let n=!1,a=!1;r.current({...t,nativeEvent:t,currentTarget:e,target:e,isDefaultPrevented:()=>n,isPropagationStopped:()=>a,persist:()=>{},preventDefault:()=>{n=!0,t.preventDefault()},stopPropagation:()=>{a=!0,t.stopPropagation()}})}n?.current&&n.current(e)}}))}function x(e){return o.use?{fetchPriority:e}:{fetchpriority:e}}"u"{let E=(0,o.useCallback)(e=>{e&&(N&&(e.src=e.src),e.complete&&g(e,d,y,b,v,p,j))},[e,d,y,b,v,N,p,j]),C=(0,h.useMergedRef)(P,E);return(0,i.jsx)("img",{...k,...x(u),loading:f,width:a,height:n,decoding:l,"data-nimg":m?"fill":"1",className:s,style:c,sizes:r,srcSet:t,src:e,ref:C,onLoad:e=>{g(e.currentTarget,d,y,b,v,p,j)},onError:e=>{w(!0),"empty"!==d&&v(!0),N&&N(e)}})});function b({isAppRouter:e,imgAttributes:t}){let r={as:"image",imageSrcSet:t.srcSet,imageSizes:t.sizes,crossOrigin:t.crossOrigin,referrerPolicy:t.referrerPolicy,...x(t.fetchPriority)};return e&&l.default.preload?(l.default.preload(t.src,r),null):(0,i.jsx)(s.default,{children:(0,i.jsx)("link",{rel:"preload",href:t.srcSet?void 0:t.src,...r},"__nimg-"+t.src+t.srcSet+t.sizes)})}let v=(0,o.forwardRef)((e,t)=>{let r=(0,o.useContext)(f.RouterContext),n=(0,o.useContext)(d.ImageConfigContext),a=(0,o.useMemo)(()=>{let e=m||n||u.imageConfigDefault,t=[...e.deviceSizes,...e.imageSizes].sort((e,t)=>e-t),r=e.deviceSizes.sort((e,t)=>e-t),a=e.qualities?.sort((e,t)=>e-t);return{...e,allSizes:t,deviceSizes:r,qualities:a,localPatterns:"u"{h.current=l},[l]);let g=(0,o.useRef)(s);(0,o.useEffect)(()=>{g.current=s},[s]);let[x,v]=(0,o.useState)(!1),[w,j]=(0,o.useState)(!1),{props:_,meta:N}=(0,c.getImgProps)(e,{defaultLoader:p.default,imgConf:a,blurComplete:x,showAltText:w});return(0,i.jsxs)(i.Fragment,{children:[(0,i.jsx)(y,{..._,unoptimized:N.unoptimized,placeholder:N.placeholder,fill:N.fill,onLoadRef:h,onLoadingCompleteRef:g,setBlurComplete:v,setShowAltText:j,sizesInput:e.sizes,ref:t}),N.preload?(0,i.jsx)(b,{isAppRouter:!r,imgAttributes:_}):null]})});("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},94909,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={default:function(){return u},getImageProps:function(){return c}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let i=e.r(55682),o=e.r(8927),l=e.r(85437),s=i._(e.r(1948));function c(e){let{props:t}=(0,o.getImgProps)(e,{defaultLoader:s.default,imgConf:{deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],qualities:[75],path:"/_next/image/",loader:"default",dangerouslyAllowSVG:!1,unoptimized:!0}});for(let[e,r]of Object.entries(t))void 0===r&&delete t[e];return{props:t}}let u=l.Image},57688,(e,t,r)=>{t.exports=e.r(94909)},63780,67881,76841,71689,e=>{"use strict";let t,r,n,a,i;var o=e.i(43476),l=e.i(71645),s=e.i(22016),c=e.i(57688);function u(e,t){if("function"==typeof e)return e(t);null!=e&&(e.current=t)}var d=Symbol.for("react.lazy"),f=l[" use ".trim().toString()];function p(e){var t;return null!=e&&"object"==typeof e&&"$$typeof"in e&&e.$$typeof===d&&"_payload"in e&&"object"==typeof(t=e._payload)&&null!==t&&"then"in t}var h=((i=l.forwardRef((e,t)=>{let{children:r,...n}=e;if(p(r)&&"function"==typeof f&&(r=f(r._payload)),l.isValidElement(r)){var a;let e,i,o=(a=r,(i=(e=Object.getOwnPropertyDescriptor(a.props,"ref")?.get)&&"isReactWarning"in e&&e.isReactWarning)?a.ref:(i=(e=Object.getOwnPropertyDescriptor(a,"ref")?.get)&&"isReactWarning"in e&&e.isReactWarning)?a.props.ref:a.props.ref||a.ref),s=function(e,t){let r={...t};for(let n in t){let a=e[n],i=t[n];/^on[A-Z]/.test(n)?a&&i?r[n]=(...e)=>{let t=i(...e);return a(...e),t}:a&&(r[n]=a):"style"===n?r[n]={...a,...i}:"className"===n&&(r[n]=[a,i].filter(Boolean).join(" "))}return{...e,...r}}(n,r.props);return r.type!==l.Fragment&&(s.ref=t?function(...e){return t=>{let r=!1,n=e.map(e=>{let n=u(e,t);return r||"function"!=typeof n||(r=!0),n});if(r)return()=>{for(let t=0;t1?l.Children.only(null):null})).displayName="Slot.SlotClone",t=i,(r=l.forwardRef((e,r)=>{let{children:n,...a}=e;p(n)&&"function"==typeof f&&(n=f(n._payload));let i=l.Children.toArray(n),s=i.find(g);if(s){let e=s.props.children,n=i.map(t=>t!==s?t:l.Children.count(e)>1?l.Children.only(null):l.isValidElement(e)?e.props.children:null);return(0,o.jsx)(t,{...a,ref:r,children:l.isValidElement(e)?l.cloneElement(e,void 0,n):null})}return(0,o.jsx)(t,{...a,ref:r,children:n})})).displayName="Slot.Slot",r),m=Symbol("radix.slottable");function g(e){return l.isValidElement(e)&&"function"==typeof e.type&&"__radixId"in e.type&&e.type.__radixId===m}var x=e.i(7670);let y=e=>"boolean"==typeof e?`${e}`:0===e?"0":e,b=x.clsx;var v=e.i(47163);let w=(n="inline-flex items-center justify-center whitespace-nowrap rounded-full text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50",a={variants:{variant:{default:"bg-primary text-primary-foreground shadow hover:bg-primary/90",destructive:"bg-destructive text-destructive-foreground shadow-sm hover:bg-destructive/90",outline:"border border-input bg-background shadow-sm hover:bg-accent hover:text-accent-foreground",secondary:"bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80",ghost:"hover:bg-accent hover:text-accent-foreground",link:"text-primary underline-offset-4 hover:underline",pill:"bg-primary text-primary-foreground shadow-lg hover:shadow-xl hover:-translate-y-0.5 transition-all duration-300 rounded-full"},size:{default:"h-11 px-8 py-2",sm:"h-9 rounded-full px-6 text-xs",lg:"h-12 rounded-full px-10 text-base",icon:"h-9 w-9"}},defaultVariants:{variant:"default",size:"default"}},e=>{var t;if((null==a?void 0:a.variants)==null)return b(n,null==e?void 0:e.class,null==e?void 0:e.className);let{variants:r,defaultVariants:i}=a,o=Object.keys(r).map(t=>{let n=null==e?void 0:e[t],a=null==i?void 0:i[t];if(null===n)return null;let o=y(n)||y(a);return r[t][o]}),l=e&&Object.entries(e).reduce((e,t)=>{let[r,n]=t;return void 0===n||(e[r]=n),e},{});return b(n,o,null==a||null==(t=a.compoundVariants)?void 0:t.reduce((e,t)=>{let{class:r,className:n,...a}=t;return Object.entries(a).every(e=>{let[t,r]=e;return Array.isArray(r)?r.includes({...i,...l}[t]):({...i,...l})[t]===r})?[...e,r,n]:e},[]),null==e?void 0:e.class,null==e?void 0:e.className)}),j=l.forwardRef(({className:e,variant:t,size:r,asChild:n=!1,...a},i)=>(0,o.jsx)(n?h:"button",{className:(0,v.cn)(w({variant:t,size:r,className:e})),ref:i,...a}));j.displayName="Button",e.s(["Button",()=>j],67881);var _=e.i(50661),N=e.i(75254);let k=(0,N.default)("menu",[["path",{d:"M4 5h16",key:"1tepv9"}],["path",{d:"M4 12h16",key:"1lakjw"}],["path",{d:"M4 19h16",key:"1djgab"}]]);e.s(["default",0,({darkMode:e=!1})=>{let[t,r]=l.useState(!1),[n,a]=l.useState(!1),{language:i,setLanguage:u,t:d}=(0,_.useLanguage)(),f=t||!e;return l.useEffect(()=>{let e=()=>{r(window.scrollY>20)};return window.addEventListener("scroll",e),()=>window.removeEventListener("scroll",e)},[]),(0,o.jsxs)(o.Fragment,{children:[(0,o.jsx)("nav",{className:(0,v.cn)("fixed top-0 left-0 right-0 z-50 transition-all duration-300 px-6 py-4",f?"bg-white/80 backdrop-blur-md shadow-sm border-b border-slate-200/60":"bg-transparent"),children:(0,o.jsxs)("div",{className:"max-w-7xl mx-auto flex items-center justify-between",children:[(0,o.jsx)(s.default,{href:"/",className:"flex items-center space-x-3 group z-50",children:(0,o.jsx)("div",{className:"relative w-40 h-10 md:w-48 md:h-12",children:(0,o.jsx)(c.default,{src:f?"/images/logo-dark.svg":"/images/logo-white.svg",alt:"SkyFly Travel",fill:!0,sizes:"(min-width: 768px) 192px, 160px",className:"object-contain",priority:!0})})}),(0,o.jsxs)("div",{className:"hidden md:flex items-center space-x-8",children:[(0,o.jsx)(s.default,{href:"/arak",className:(0,v.cn)("text-sm font-medium transition-colors",f?"text-slate-700 hover:text-primary":"text-white/90 hover:text-slate-900"),children:d.nav.prices}),(0,o.jsx)(s.default,{href:"/szolgaltatasok",className:(0,v.cn)("text-sm font-medium transition-colors",f?"text-slate-700 hover:text-primary":"text-white/90 hover:text-slate-900"),children:d.nav.services}),(0,o.jsx)(s.default,{href:"/feltetelek",className:(0,v.cn)("text-sm font-medium transition-colors",f?"text-slate-700 hover:text-primary":"text-white/90 hover:text-slate-900"),children:d.nav.conditions}),(0,o.jsx)(s.default,{href:"/flotta",className:(0,v.cn)("text-sm font-medium transition-colors",f?"text-slate-700 hover:text-primary":"text-white/90 hover:text-slate-900"),children:d.nav.fleet}),(0,o.jsx)(s.default,{href:"/kapcsolat",className:(0,v.cn)("text-sm font-medium transition-colors",f?"text-slate-700 hover:text-primary":"text-white/90 hover:text-slate-900"),children:d.nav.contact})]}),(0,o.jsxs)("div",{className:"hidden md:flex items-center space-x-4",children:[(0,o.jsxs)("div",{className:(0,v.cn)("flex items-center rounded-full p-1 mr-2 transition-colors",f?"bg-white border border-slate-200/70 shadow-sm":"bg-white/10 border border-white/10 backdrop-blur-sm"),children:[(0,o.jsx)("button",{onClick:()=>u("hu"),className:(0,v.cn)("text-[10px] font-bold px-3 py-1 rounded-full transition-all","hu"===i?"bg-white text-slate-900 shadow-sm":f?"text-slate-600 hover:text-slate-900":"text-white/60 hover:text-white"),children:d.nav.language.hu}),(0,o.jsx)("button",{onClick:()=>u("en"),className:(0,v.cn)("text-[10px] font-bold px-3 py-1 rounded-full transition-all","en"===i?"bg-white text-slate-900 shadow-sm":f?"text-slate-600 hover:text-slate-900":"text-white/60 hover:text-white"),children:d.nav.language.en})]}),(0,o.jsx)(j,{asChild:!0,variant:f?"pill":"outline",className:(0,v.cn)("rounded-full px-6",!f&&e&&"text-white border-white/20 hover:bg-white/10 bg-transparent",f&&"bg-primary text-white"),children:(0,o.jsx)("a",{href:"https://app.skyflytravel.hu/public/offers/new",target:"_blank",rel:"noopener noreferrer",className:"text-[10px] md:text-sm",children:d.nav.cta})})]}),(0,o.jsx)("button",{className:(0,v.cn)("md:hidden p-2 z-50 rounded-lg backdrop-blur-sm transition-colors",f?"text-slate-900 bg-white/80 border border-slate-200/70 hover:bg-white":"text-white bg-black/50 hover:bg-black/70"),onClick:()=>a(!n),children:(0,o.jsx)(k,{className:"w-6 h-6"})})]})}),n&&(0,o.jsxs)("div",{className:"fixed inset-0 z-40 flex flex-col pt-32 px-8 animate-in slide-in-from-top duration-300",children:[(0,o.jsx)("div",{className:"absolute inset-0 bg-slate-950/95 backdrop-blur-md"}),(0,o.jsxs)("div",{className:"relative flex flex-col space-y-6 text-center",children:[(0,o.jsx)(s.default,{onClick:()=>a(!1),href:"/arak",className:"text-2xl font-bold text-white hover:text-primary transition-colors",children:d.nav.prices}),(0,o.jsx)(s.default,{onClick:()=>a(!1),href:"/szolgaltatasok",className:"text-2xl font-bold text-white hover:text-primary transition-colors",children:d.nav.services}),(0,o.jsx)(s.default,{onClick:()=>a(!1),href:"/feltetelek",className:"text-2xl font-bold text-white hover:text-primary transition-colors",children:d.nav.conditions}),(0,o.jsx)(s.default,{onClick:()=>a(!1),href:"/flotta",className:"text-2xl font-bold text-white hover:text-primary transition-colors",children:d.nav.fleet}),(0,o.jsx)(s.default,{onClick:()=>a(!1),href:"/kapcsolat",className:"text-2xl font-bold text-white hover:text-primary transition-colors",children:d.nav.contact}),(0,o.jsxs)("div",{className:"flex justify-center gap-4 pt-8",children:[(0,o.jsx)("button",{onClick:()=>{u("hu"),a(!1)},className:(0,v.cn)("px-6 py-2 rounded-full font-bold","hu"===i?"bg-white text-slate-900":"bg-white/10 text-white"),children:d.nav.language.hu}),(0,o.jsx)("button",{onClick:()=>{u("en"),a(!1)},className:(0,v.cn)("px-6 py-2 rounded-full font-bold","en"===i?"bg-white text-slate-900":"bg-white/10 text-white"),children:d.nav.language.en})]}),(0,o.jsx)(j,{asChild:!0,size:"lg",className:"mt-8 bg-primary text-white rounded-full",children:(0,o.jsx)("a",{href:"https://app.skyflytravel.hu/public/offers/new",target:"_blank",rel:"noopener noreferrer",children:d.nav.cta})})]})]})]})}],63780);var P=e.i(26577),E=e.i(61405);function C(){let{t:e,language:t}=(0,_.useLanguage)(),r=new Date().getFullYear().toString(),n="hu"===t?P.default:E.default,a=n?.data?.[0]?.rating??0,i=n?.data?.[0]?.userRatingCount??0,s=Math.max(0,Math.min(100,a/5*100)),u=n?.data?.[0]?.reviews??[],[d,f]=(0,l.useState)(u.slice(0,2)),p="https://g.page/r/CRltVP4lAy7lEBM/review";return(0,l.useEffect)(()=>{if(!u.length)return void f([]);if(u.length<=2)return void f(u);let e=Math.floor(Math.random()*u.length),t=Math.floor(Math.random()*(u.length-1));t>=e&&(t+=1),f([u[e],u[t]])},[t,u.length]),(0,o.jsx)("section",{className:"py-16 md:py-20 bg-slate-950 text-white",children:(0,o.jsxs)("div",{className:"max-w-6xl mx-auto px-6",children:[(0,o.jsxs)("div",{className:"grid gap-12 md:grid-cols-2 items-start",children:[(0,o.jsxs)("div",{className:"space-y-8 text-center flex flex-col items-center",children:[(0,o.jsx)("h2",{className:"text-4xl md:text-6xl font-black tracking-tighter uppercase",children:e.footer.ready}),(0,o.jsx)("p",{className:"text-xl text-slate-400 max-w-xl mx-auto",children:e.footer.description}),(0,o.jsx)("div",{className:"flex justify-center gap-6",children:(0,o.jsx)(j,{size:"lg",asChild:!0,className:"rounded-full px-12 h-14 text-sm font-bold uppercase tracking-widest bg-primary hover:bg-primary/90 transition-all shadow-2xl",children:(0,o.jsx)("a",{href:"https://app.skyflytravel.hu/public/offers/new",target:"_blank",rel:"noopener noreferrer",children:e.footer.cta})})})]}),(0,o.jsxs)("div",{className:"relative",children:[(0,o.jsx)("div",{className:"absolute -top-10 right-0 w-40 h-40 bg-primary/20 blur-3xl rounded-full"}),(0,o.jsxs)("div",{className:"relative rounded-[2.5rem] bg-white/5 border border-white/10 p-6 md:p-7 backdrop-blur-xl shadow-2xl",children:[(0,o.jsxs)("div",{className:"flex items-center justify-between gap-4",children:[(0,o.jsx)("div",{className:"text-[10px] font-black uppercase tracking-[0.3em] text-white/60",children:e.footer.reviewsTitle}),(0,o.jsx)("a",{href:p,target:"_blank",rel:"noopener noreferrer",className:"text-[10px] font-black uppercase tracking-[0.3em] text-primary hover:text-primary/80 transition-colors",children:"Google"})]}),(0,o.jsxs)("div",{className:"mt-4 flex items-center gap-4",children:[(0,o.jsx)("div",{className:"text-3xl md:text-4xl font-black text-white",children:a.toFixed(1)}),(0,o.jsxs)("div",{className:"space-y-1",children:[(0,o.jsx)("span",{className:"text-[14px] leading-none tracking-[0.1em] font-semibold",style:{backgroundImage:`linear-gradient(90deg, #fde047 ${s}%, rgba(255,255,255,0.35) ${s}%)`,WebkitBackgroundClip:"text",color:"transparent"},"aria-hidden":"true",children:"★★★★★"}),(0,o.jsxs)("div",{className:"text-[10px] font-black uppercase tracking-[0.3em] text-white/50",children:["(",i,")"]})]})]}),(0,o.jsx)("div",{className:"mt-6 grid gap-4",children:d.map((e,t)=>{let r,n;return(0,o.jsxs)("div",{className:"rounded-[1.5rem] bg-white/5 border border-white/10 p-4 hover:-translate-y-1 transition-transform duration-300",children:[(0,o.jsxs)("div",{className:"flex items-center justify-between gap-4",children:[(0,o.jsx)("div",{className:"text-[11px] tracking-[0.2em] text-yellow-300",children:(r=Math.max(0,Math.min(5,Math.round(e.rating??5))),"★".repeat(r)+"☆".repeat(5-r))}),(0,o.jsx)("div",{className:"text-[9px] uppercase tracking-widest text-white/40",children:e.author??"Customer"})]}),(0,o.jsx)("p",{className:"mt-3 text-sm text-white/80 leading-relaxed [display:-webkit-box] [webkit-line-clamp:3] [webkit-box-orient:vertical] overflow-hidden",children:(n=e.text??"").length>160?`${n.slice(0,160).trimEnd()}...`:n})]},`${e.author??"review"}-${t}`)})}),(0,o.jsx)("a",{href:p,target:"_blank",rel:"noopener noreferrer",className:"mt-5 inline-flex items-center gap-2 text-[11px] font-black uppercase tracking-[0.35em] text-white/80 hover:text-white transition-colors",children:e.footer.reviewsCta})]})]})]}),(0,o.jsxs)("div",{className:"pt-12 mt-12 border-t border-white/5 space-y-6 text-center",children:[(0,o.jsxs)("div",{className:"flex flex-wrap justify-center gap-x-8 gap-y-2 text-slate-400 text-xs font-bold uppercase tracking-widest",children:[(0,o.jsx)("a",{href:"/docs/impresszum.pdf",target:"_blank",rel:"noopener noreferrer",className:"hover:text-primary transition-colors",children:e.footer.impressum}),(0,o.jsx)("a",{href:"/docs/ADATVEDELEMI_SZABALYZAT_ZT.pdf",target:"_blank",rel:"noopener noreferrer",className:"hover:text-primary transition-colors",children:e.footer.privacy})]}),(0,o.jsxs)("div",{className:"flex flex-wrap justify-center gap-4",children:[(0,o.jsx)("a",{href:"https://www.facebook.com/airporttransfer.gyor",target:"_blank",rel:"noopener noreferrer","aria-label":"Facebook",className:"opacity-80 hover:opacity-100 transition-opacity",children:(0,o.jsx)(c.default,{src:"/images/social/facebook.png",alt:"Facebook",width:20,height:20,className:"object-contain"})}),(0,o.jsx)("a",{href:"https://plus.google.com/u/0/115420236176324532133/posts",target:"_blank",rel:"noopener noreferrer","aria-label":"Google Plus",className:"opacity-80 hover:opacity-100 transition-opacity",children:(0,o.jsx)(c.default,{src:"/images/social/googleplus.png",alt:"Google Plus",width:20,height:20,className:"object-contain"})}),(0,o.jsx)("a",{href:"https://x.com/SkyFlyTravel1",target:"_blank",rel:"noopener noreferrer","aria-label":"X (Twitter)",className:"opacity-80 hover:opacity-100 transition-opacity",children:(0,o.jsx)(c.default,{src:"/images/social/twitter.png",alt:"X (Twitter)",width:20,height:20,className:"object-contain"})}),(0,o.jsx)("a",{href:"http://skyflytravel.blogspot.hu/",target:"_blank",rel:"noopener noreferrer","aria-label":"Blogspot",className:"opacity-80 hover:opacity-100 transition-opacity",children:(0,o.jsx)(c.default,{src:"/images/social/blogspot.png",alt:"Blogspot",width:20,height:20,className:"object-contain"})}),(0,o.jsx)("a",{href:"https://www.tiktok.com/@skyflytravel.transfer",target:"_blank",rel:"noopener noreferrer","aria-label":"TikTok",className:"opacity-80 hover:opacity-100 transition-opacity",children:(0,o.jsx)("svg",{viewBox:"0 0 24 24",className:"w-5 h-5 fill-white","aria-hidden":"true",children:(0,o.jsx)("path",{d:"M12.525.02c1.31-.036 2.612-.01 3.91-.01.1.993.414 1.956.96 2.784.73 1.096 1.764 1.93 2.97 2.45v3.91c-.815-.09-1.62-.315-2.38-.64-.816-.35-1.545-.88-2.15-1.53-.102.043-.102.164-.102.26v9.06c0 1.54-.34 3.05-1 4.41-.65 1.35-1.63 2.5-2.83 3.33-1.4.95-3.08 1.45-4.79 1.45-1.68 0-3.32-.48-4.73-1.39-1.21-.79-2.2-1.9-2.86-3.21-.71-1.37-1.07-2.9-1.07-4.47s.36-3.1 1.07-4.47c.66-1.31 1.65-2.42 2.86-3.21 1.25-.8 2.69-1.23 4.18-1.25.102 0 .204-.006.307-.006v3.94c-.037-.006-.074-.012-.112-.012-1.25.038-2.44.57-3.31 1.49-.89.92-1.38 2.16-1.38 3.45 0 1.29.49 2.53 1.38 3.45.87.92 2.06 1.45 3.31 1.49 1.25-.038 2.44-.57 3.31-1.49.89-.92 1.38-2.16 1.38-3.45V0l.024.02z"})})}),(0,o.jsx)("a",{href:"https://www.instagram.com/skyfly_travel/",target:"_blank",rel:"noopener noreferrer","aria-label":"Instagram",className:"opacity-80 hover:opacity-100 transition-opacity",children:(0,o.jsx)(c.default,{src:"/images/social/instagram.png",alt:"Instagram",width:20,height:20,className:"object-contain"})})]}),(0,o.jsxs)("div",{className:"text-slate-600 text-[10px] font-bold uppercase tracking-widest",children:[e.footer.copyright.replace("{year}",r)," ",e.footer.rights]}),(0,o.jsx)("div",{className:"text-slate-900/10 text-[8px] leading-tight select-none",children:e.footer.seoLine}),(0,o.jsxs)("div",{className:"flex flex-col items-center gap-1 text-slate-800 text-[9px] font-bold uppercase tracking-widest pt-2 sm:flex-row sm:justify-center sm:gap-4",children:[(0,o.jsx)("a",{href:"https://transzfer.lap.hu",target:"_blank",rel:"noopener noreferrer",className:"hover:text-primary transition-colors",children:"transzfer.lap.hu"}),(0,o.jsx)("span",{className:"opacity-20 hidden sm:inline",children:"|"}),(0,o.jsx)("a",{href:"https://utasszallitas.lap.hu",target:"_blank",rel:"noopener noreferrer",className:"hover:text-primary transition-colors",children:"utasszallitas.lap.hu"}),(0,o.jsx)("span",{className:"opacity-20 hidden sm:inline",children:"|"}),(0,o.jsx)("a",{href:"https://repuloter.lap.hu",target:"_blank",rel:"noopener noreferrer",className:"hover:text-primary transition-colors",children:"repuloter.lap.hu"})]})]})]})})}e.s(["default",()=>C],76841);let O=(0,N.default)("arrow-left",[["path",{d:"m12 19-7-7 7-7",key:"1l729n"}],["path",{d:"M19 12H5",key:"x3x0zl"}]]);e.s(["ArrowLeft",()=>O],71689)}]); \ No newline at end of file +Read more: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns`),"__NEXT_ERROR_CODE",{value:"E871",enumerable:!1,configurable:!0});let o=(0,n.findClosestQuality)(i,e),l=(0,a.getDeploymentId)();return`${e.path}?url=${encodeURIComponent(t)}&w=${r}&q=${o}${t.startsWith("/")&&l?`&dpl=${l}`:""}`}i.__next_img_default=!0;let o=i},85437,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"Image",{enumerable:!0,get:function(){return v}});let n=e.r(55682),a=e.r(90809),i=e.r(43476),o=a._(e.r(71645)),l=n._(e.r(74080)),s=n._(e.r(25633)),c=e.r(8927),u=e.r(87690),d=e.r(18556);e.r(33525);let f=e.r(65856),p=n._(e.r(1948)),h=e.r(18581),m={deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],qualities:[75],path:"/_next/image/",loader:"default",dangerouslyAllowSVG:!1,unoptimized:!0};function g(e,t,r,n,a,i,o){let l=e?.src;e&&e["data-loaded-src"]!==l&&(e["data-loaded-src"]=l,("decode"in e?e.decode():Promise.resolve()).catch(()=>{}).then(()=>{if(e.parentElement&&e.isConnected){if("empty"!==t&&a(!0),r?.current){let t=new Event("load");Object.defineProperty(t,"target",{writable:!1,value:e});let n=!1,a=!1;r.current({...t,nativeEvent:t,currentTarget:e,target:e,isDefaultPrevented:()=>n,isPropagationStopped:()=>a,persist:()=>{},preventDefault:()=>{n=!0,t.preventDefault()},stopPropagation:()=>{a=!0,t.stopPropagation()}})}n?.current&&n.current(e)}}))}function x(e){return o.use?{fetchPriority:e}:{fetchpriority:e}}"u"{let E=(0,o.useCallback)(e=>{e&&(N&&(e.src=e.src),e.complete&&g(e,d,y,b,v,p,j))},[e,d,y,b,v,N,p,j]),C=(0,h.useMergedRef)(P,E);return(0,i.jsx)("img",{...k,...x(u),loading:f,width:a,height:n,decoding:l,"data-nimg":m?"fill":"1",className:s,style:c,sizes:r,srcSet:t,src:e,ref:C,onLoad:e=>{g(e.currentTarget,d,y,b,v,p,j)},onError:e=>{w(!0),"empty"!==d&&v(!0),N&&N(e)}})});function b({isAppRouter:e,imgAttributes:t}){let r={as:"image",imageSrcSet:t.srcSet,imageSizes:t.sizes,crossOrigin:t.crossOrigin,referrerPolicy:t.referrerPolicy,...x(t.fetchPriority)};return e&&l.default.preload?(l.default.preload(t.src,r),null):(0,i.jsx)(s.default,{children:(0,i.jsx)("link",{rel:"preload",href:t.srcSet?void 0:t.src,...r},"__nimg-"+t.src+t.srcSet+t.sizes)})}let v=(0,o.forwardRef)((e,t)=>{let r=(0,o.useContext)(f.RouterContext),n=(0,o.useContext)(d.ImageConfigContext),a=(0,o.useMemo)(()=>{let e=m||n||u.imageConfigDefault,t=[...e.deviceSizes,...e.imageSizes].sort((e,t)=>e-t),r=e.deviceSizes.sort((e,t)=>e-t),a=e.qualities?.sort((e,t)=>e-t);return{...e,allSizes:t,deviceSizes:r,qualities:a,localPatterns:"u"{h.current=l},[l]);let g=(0,o.useRef)(s);(0,o.useEffect)(()=>{g.current=s},[s]);let[x,v]=(0,o.useState)(!1),[w,j]=(0,o.useState)(!1),{props:_,meta:N}=(0,c.getImgProps)(e,{defaultLoader:p.default,imgConf:a,blurComplete:x,showAltText:w});return(0,i.jsxs)(i.Fragment,{children:[(0,i.jsx)(y,{..._,unoptimized:N.unoptimized,placeholder:N.placeholder,fill:N.fill,onLoadRef:h,onLoadingCompleteRef:g,setBlurComplete:v,setShowAltText:j,sizesInput:e.sizes,ref:t}),N.preload?(0,i.jsx)(b,{isAppRouter:!r,imgAttributes:_}):null]})});("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},94909,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={default:function(){return u},getImageProps:function(){return c}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let i=e.r(55682),o=e.r(8927),l=e.r(85437),s=i._(e.r(1948));function c(e){let{props:t}=(0,o.getImgProps)(e,{defaultLoader:s.default,imgConf:{deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],qualities:[75],path:"/_next/image/",loader:"default",dangerouslyAllowSVG:!1,unoptimized:!0}});for(let[e,r]of Object.entries(t))void 0===r&&delete t[e];return{props:t}}let u=l.Image},57688,(e,t,r)=>{t.exports=e.r(94909)},63780,67881,76841,71689,e=>{"use strict";let t,r,n,a,i;var o=e.i(43476),l=e.i(71645),s=e.i(22016),c=e.i(57688);function u(e,t){if("function"==typeof e)return e(t);null!=e&&(e.current=t)}var d=Symbol.for("react.lazy"),f=l[" use ".trim().toString()];function p(e){var t;return null!=e&&"object"==typeof e&&"$$typeof"in e&&e.$$typeof===d&&"_payload"in e&&"object"==typeof(t=e._payload)&&null!==t&&"then"in t}var h=((i=l.forwardRef((e,t)=>{let{children:r,...n}=e;if(p(r)&&"function"==typeof f&&(r=f(r._payload)),l.isValidElement(r)){var a;let e,i,o=(a=r,(i=(e=Object.getOwnPropertyDescriptor(a.props,"ref")?.get)&&"isReactWarning"in e&&e.isReactWarning)?a.ref:(i=(e=Object.getOwnPropertyDescriptor(a,"ref")?.get)&&"isReactWarning"in e&&e.isReactWarning)?a.props.ref:a.props.ref||a.ref),s=function(e,t){let r={...t};for(let n in t){let a=e[n],i=t[n];/^on[A-Z]/.test(n)?a&&i?r[n]=(...e)=>{let t=i(...e);return a(...e),t}:a&&(r[n]=a):"style"===n?r[n]={...a,...i}:"className"===n&&(r[n]=[a,i].filter(Boolean).join(" "))}return{...e,...r}}(n,r.props);return r.type!==l.Fragment&&(s.ref=t?function(...e){return t=>{let r=!1,n=e.map(e=>{let n=u(e,t);return r||"function"!=typeof n||(r=!0),n});if(r)return()=>{for(let t=0;t1?l.Children.only(null):null})).displayName="Slot.SlotClone",t=i,(r=l.forwardRef((e,r)=>{let{children:n,...a}=e;p(n)&&"function"==typeof f&&(n=f(n._payload));let i=l.Children.toArray(n),s=i.find(g);if(s){let e=s.props.children,n=i.map(t=>t!==s?t:l.Children.count(e)>1?l.Children.only(null):l.isValidElement(e)?e.props.children:null);return(0,o.jsx)(t,{...a,ref:r,children:l.isValidElement(e)?l.cloneElement(e,void 0,n):null})}return(0,o.jsx)(t,{...a,ref:r,children:n})})).displayName="Slot.Slot",r),m=Symbol("radix.slottable");function g(e){return l.isValidElement(e)&&"function"==typeof e.type&&"__radixId"in e.type&&e.type.__radixId===m}var x=e.i(7670);let y=e=>"boolean"==typeof e?`${e}`:0===e?"0":e,b=x.clsx;var v=e.i(47163);let w=(n="inline-flex items-center justify-center whitespace-nowrap rounded-full text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50",a={variants:{variant:{default:"bg-primary text-primary-foreground shadow hover:bg-primary/90",destructive:"bg-destructive text-destructive-foreground shadow-sm hover:bg-destructive/90",outline:"border border-input bg-background shadow-sm hover:bg-accent hover:text-accent-foreground",secondary:"bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80",ghost:"hover:bg-accent hover:text-accent-foreground",link:"text-primary underline-offset-4 hover:underline",pill:"bg-primary text-primary-foreground shadow-lg hover:shadow-xl hover:-translate-y-0.5 transition-all duration-300 rounded-full"},size:{default:"h-11 px-8 py-2",sm:"h-9 rounded-full px-6 text-xs",lg:"h-12 rounded-full px-10 text-base",icon:"h-9 w-9"}},defaultVariants:{variant:"default",size:"default"}},e=>{var t;if((null==a?void 0:a.variants)==null)return b(n,null==e?void 0:e.class,null==e?void 0:e.className);let{variants:r,defaultVariants:i}=a,o=Object.keys(r).map(t=>{let n=null==e?void 0:e[t],a=null==i?void 0:i[t];if(null===n)return null;let o=y(n)||y(a);return r[t][o]}),l=e&&Object.entries(e).reduce((e,t)=>{let[r,n]=t;return void 0===n||(e[r]=n),e},{});return b(n,o,null==a||null==(t=a.compoundVariants)?void 0:t.reduce((e,t)=>{let{class:r,className:n,...a}=t;return Object.entries(a).every(e=>{let[t,r]=e;return Array.isArray(r)?r.includes({...i,...l}[t]):({...i,...l})[t]===r})?[...e,r,n]:e},[]),null==e?void 0:e.class,null==e?void 0:e.className)}),j=l.forwardRef(({className:e,variant:t,size:r,asChild:n=!1,...a},i)=>(0,o.jsx)(n?h:"button",{className:(0,v.cn)(w({variant:t,size:r,className:e})),ref:i,...a}));j.displayName="Button",e.s(["Button",()=>j],67881);var _=e.i(50661),N=e.i(75254);let k=(0,N.default)("menu",[["path",{d:"M4 5h16",key:"1tepv9"}],["path",{d:"M4 12h16",key:"1lakjw"}],["path",{d:"M4 19h16",key:"1djgab"}]]);function P(){let{t:e,language:t}=(0,_.useLanguage)(),r=new Date().getFullYear().toString(),[n,a]=(0,l.useState)(null),[i,s]=(0,l.useState)([]);(0,l.useEffect)(()=>{(async()=>{try{let e=await fetch(`/ratings_${t}.json`),r=await e.json();a(r);let n=r?.data?.[0]?.reviews??[];if(0===n.length)return void s([]);if(n.length<=2)return void s(n);let i=Math.floor(Math.random()*n.length),o=Math.floor(Math.random()*(n.length-1));o>=i&&(o+=1),s([n[i],n[o]])}catch(e){console.error("Error fetching ratings:",e)}})()},[t]);let u=n?.data?.[0]?.rating??5,d=n?.data?.[0]?.userRatingCount??0,f=Math.max(0,Math.min(100,u/5*100)),p="https://g.page/r/CRltVP4lAy7lEBM/review";return(0,o.jsx)("section",{className:"py-16 md:py-20 bg-slate-950 text-white",children:(0,o.jsxs)("div",{className:"max-w-6xl mx-auto px-6",children:[(0,o.jsxs)("div",{className:"grid gap-12 md:grid-cols-2 items-start",children:[(0,o.jsxs)("div",{className:"space-y-8 text-center flex flex-col items-center",children:[(0,o.jsx)("h2",{className:"text-4xl md:text-6xl font-black tracking-tighter uppercase",children:e.footer.ready}),(0,o.jsx)("p",{className:"text-xl text-slate-400 max-w-xl mx-auto",children:e.footer.description}),(0,o.jsx)("div",{className:"flex justify-center gap-6",children:(0,o.jsx)(j,{size:"lg",asChild:!0,className:"rounded-full px-12 h-14 text-sm font-bold uppercase tracking-widest bg-primary hover:bg-primary/90 transition-all shadow-2xl",children:(0,o.jsx)("a",{href:"https://app.skyflytravel.hu/public/offers/new",target:"_blank",rel:"noopener noreferrer",children:e.footer.cta})})})]}),(0,o.jsxs)("div",{className:"relative",children:[(0,o.jsx)("div",{className:"absolute -top-10 right-0 w-40 h-40 bg-primary/20 blur-3xl rounded-full"}),(0,o.jsxs)("div",{className:"relative rounded-[2.5rem] bg-white/5 border border-white/10 p-6 md:p-7 backdrop-blur-xl shadow-2xl",children:[(0,o.jsxs)("div",{className:"flex items-center justify-between gap-4",children:[(0,o.jsx)("div",{className:"text-[10px] font-black uppercase tracking-[0.3em] text-white/60",children:e.footer.reviewsTitle}),(0,o.jsx)("a",{href:p,target:"_blank",rel:"noopener noreferrer",className:"text-[10px] font-black uppercase tracking-[0.3em] text-primary hover:text-primary/80 transition-colors",children:"Google"})]}),(0,o.jsxs)("div",{className:"mt-4 flex items-center gap-4",children:[(0,o.jsx)("div",{className:"text-3xl md:text-4xl font-black text-white",children:u.toFixed(1)}),(0,o.jsxs)("div",{className:"space-y-1",children:[(0,o.jsx)("span",{className:"text-[14px] leading-none tracking-[0.1em] font-semibold",style:{backgroundImage:`linear-gradient(90deg, #fde047 ${f}%, rgba(255,255,255,0.35) ${f}%)`,WebkitBackgroundClip:"text",color:"transparent"},"aria-hidden":"true",children:"★★★★★"}),(0,o.jsxs)("div",{className:"text-[10px] font-black uppercase tracking-[0.3em] text-white/50",children:["(",d,")"]})]})]}),(0,o.jsx)("div",{className:"mt-6 grid gap-4",children:i.map((e,t)=>{let r,n;return(0,o.jsxs)("div",{className:"rounded-[1.5rem] bg-white/5 border border-white/10 p-4 hover:-translate-y-1 transition-transform duration-300",children:[(0,o.jsxs)("div",{className:"flex items-center justify-between gap-4",children:[(0,o.jsx)("div",{className:"text-[11px] tracking-[0.2em] text-yellow-300",children:(r=Math.max(0,Math.min(5,Math.round(e.rating??5))),"★".repeat(r)+"☆".repeat(5-r))}),(0,o.jsx)("div",{className:"text-[9px] uppercase tracking-widest text-white/40",children:e.author??"Customer"})]}),(0,o.jsx)("p",{className:"mt-3 text-sm text-white/80 leading-relaxed [display:-webkit-box] [webkit-line-clamp:3] [webkit-box-orient:vertical] overflow-hidden",children:(n=e.text??"").length>160?`${n.slice(0,160).trimEnd()}...`:n})]},`${e.author??"review"}-${t}`)})}),(0,o.jsx)("a",{href:p,target:"_blank",rel:"noopener noreferrer",className:"mt-5 inline-flex items-center gap-2 text-[11px] font-black uppercase tracking-[0.35em] text-white/80 hover:text-white transition-colors",children:e.footer.reviewsCta})]})]})]}),(0,o.jsxs)("div",{className:"pt-12 mt-12 border-t border-white/5 space-y-6 text-center",children:[(0,o.jsxs)("div",{className:"flex flex-wrap justify-center gap-x-8 gap-y-2 text-slate-400 text-xs font-bold uppercase tracking-widest",children:[(0,o.jsx)("a",{href:"/docs/impresszum.pdf",target:"_blank",rel:"noopener noreferrer",className:"hover:text-primary transition-colors",children:e.footer.impressum}),(0,o.jsx)("a",{href:"/docs/ADATVEDELEMI_SZABALYZAT_ZT.pdf",target:"_blank",rel:"noopener noreferrer",className:"hover:text-primary transition-colors",children:e.footer.privacy})]}),(0,o.jsxs)("div",{className:"flex flex-wrap justify-center gap-4",children:[(0,o.jsx)("a",{href:"https://www.facebook.com/airporttransfer.gyor",target:"_blank",rel:"noopener noreferrer","aria-label":"Facebook",className:"opacity-80 hover:opacity-100 transition-opacity",children:(0,o.jsx)(c.default,{src:"/images/social/facebook.png",alt:"Facebook",width:20,height:20,className:"object-contain"})}),(0,o.jsx)("a",{href:"https://plus.google.com/u/0/115420236176324532133/posts",target:"_blank",rel:"noopener noreferrer","aria-label":"Google Plus",className:"opacity-80 hover:opacity-100 transition-opacity",children:(0,o.jsx)(c.default,{src:"/images/social/googleplus.png",alt:"Google Plus",width:20,height:20,className:"object-contain"})}),(0,o.jsx)("a",{href:"https://x.com/SkyFlyTravel1",target:"_blank",rel:"noopener noreferrer","aria-label":"X (Twitter)",className:"opacity-80 hover:opacity-100 transition-opacity",children:(0,o.jsx)(c.default,{src:"/images/social/twitter.png",alt:"X (Twitter)",width:20,height:20,className:"object-contain"})}),(0,o.jsx)("a",{href:"http://skyflytravel.blogspot.hu/",target:"_blank",rel:"noopener noreferrer","aria-label":"Blogspot",className:"opacity-80 hover:opacity-100 transition-opacity",children:(0,o.jsx)(c.default,{src:"/images/social/blogspot.png",alt:"Blogspot",width:20,height:20,className:"object-contain"})}),(0,o.jsx)("a",{href:"https://www.tiktok.com/@skyflytravel.transfer",target:"_blank",rel:"noopener noreferrer","aria-label":"TikTok",className:"opacity-80 hover:opacity-100 transition-opacity",children:(0,o.jsx)("svg",{viewBox:"0 0 24 24",className:"w-5 h-5 fill-white","aria-hidden":"true",children:(0,o.jsx)("path",{d:"M12.525.02c1.31-.036 2.612-.01 3.91-.01.1.993.414 1.956.96 2.784.73 1.096 1.764 1.93 2.97 2.45v3.91c-.815-.09-1.62-.315-2.38-.64-.816-.35-1.545-.88-2.15-1.53-.102.043-.102.164-.102.26v9.06c0 1.54-.34 3.05-1 4.41-.65 1.35-1.63 2.5-2.83 3.33-1.4.95-3.08 1.45-4.79 1.45-1.68 0-3.32-.48-4.73-1.39-1.21-.79-2.2-1.9-2.86-3.21-.71-1.37-1.07-2.9-1.07-4.47s.36-3.1 1.07-4.47c.66-1.31 1.65-2.42 2.86-3.21 1.25-.8 2.69-1.23 4.18-1.25.102 0 .204-.006.307-.006v3.94c-.037-.006-.074-.012-.112-.012-1.25.038-2.44.57-3.31 1.49-.89.92-1.38 2.16-1.38 3.45 0 1.29.49 2.53 1.38 3.45.87.92 2.06 1.45 3.31 1.49 1.25-.038 2.44-.57 3.31-1.49.89-.92 1.38-2.16 1.38-3.45V0l.024.02z"})})}),(0,o.jsx)("a",{href:"https://www.instagram.com/skyfly_travel/",target:"_blank",rel:"noopener noreferrer","aria-label":"Instagram",className:"opacity-80 hover:opacity-100 transition-opacity",children:(0,o.jsx)(c.default,{src:"/images/social/instagram.png",alt:"Instagram",width:20,height:20,className:"object-contain"})})]}),(0,o.jsxs)("div",{className:"text-slate-600 text-[10px] font-bold uppercase tracking-widest",children:[e.footer.copyright.replace("{year}",r)," ",e.footer.rights]}),(0,o.jsx)("div",{className:"text-slate-900/10 text-[8px] leading-tight select-none",children:e.footer.seoLine}),(0,o.jsxs)("div",{className:"flex flex-col items-center gap-1 text-slate-800 text-[9px] font-bold uppercase tracking-widest pt-2 sm:flex-row sm:justify-center sm:gap-4",children:[(0,o.jsx)("a",{href:"https://transzfer.lap.hu",target:"_blank",rel:"noopener noreferrer",className:"hover:text-primary transition-colors",children:"transzfer.lap.hu"}),(0,o.jsx)("span",{className:"opacity-20 hidden sm:inline",children:"|"}),(0,o.jsx)("a",{href:"https://utasszallitas.lap.hu",target:"_blank",rel:"noopener noreferrer",className:"hover:text-primary transition-colors",children:"utasszallitas.lap.hu"}),(0,o.jsx)("span",{className:"opacity-20 hidden sm:inline",children:"|"}),(0,o.jsx)("a",{href:"https://repuloter.lap.hu",target:"_blank",rel:"noopener noreferrer",className:"hover:text-primary transition-colors",children:"repuloter.lap.hu"})]})]})]})})}e.s(["default",0,({darkMode:e=!1})=>{let[t,r]=l.useState(!1),[n,a]=l.useState(!1),{language:i,setLanguage:u,t:d}=(0,_.useLanguage)(),f=t||!e;return l.useEffect(()=>{let e=()=>{r(window.scrollY>20)};return window.addEventListener("scroll",e),()=>window.removeEventListener("scroll",e)},[]),(0,o.jsxs)(o.Fragment,{children:[(0,o.jsx)("nav",{className:(0,v.cn)("fixed top-0 left-0 right-0 z-50 transition-all duration-300 px-6 py-4",f?"bg-white/80 backdrop-blur-md shadow-sm border-b border-slate-200/60":"bg-transparent"),children:(0,o.jsxs)("div",{className:"max-w-7xl mx-auto flex items-center justify-between",children:[(0,o.jsx)(s.default,{href:"/",className:"flex items-center space-x-3 group z-50",children:(0,o.jsx)("div",{className:"relative w-40 h-10 md:w-48 md:h-12",children:(0,o.jsx)(c.default,{src:f?"/images/logo-dark.svg":"/images/logo-white.svg",alt:"SkyFly Travel",fill:!0,sizes:"(min-width: 768px) 192px, 160px",className:"object-contain",priority:!0})})}),(0,o.jsxs)("div",{className:"hidden md:flex items-center space-x-8",children:[(0,o.jsx)(s.default,{href:"/arak",className:(0,v.cn)("text-sm font-medium transition-colors",f?"text-slate-700 hover:text-primary":"text-white/90 hover:text-slate-900"),children:d.nav.prices}),(0,o.jsx)(s.default,{href:"/szolgaltatasok",className:(0,v.cn)("text-sm font-medium transition-colors",f?"text-slate-700 hover:text-primary":"text-white/90 hover:text-slate-900"),children:d.nav.services}),(0,o.jsx)(s.default,{href:"/feltetelek",className:(0,v.cn)("text-sm font-medium transition-colors",f?"text-slate-700 hover:text-primary":"text-white/90 hover:text-slate-900"),children:d.nav.conditions}),(0,o.jsx)(s.default,{href:"/flotta",className:(0,v.cn)("text-sm font-medium transition-colors",f?"text-slate-700 hover:text-primary":"text-white/90 hover:text-slate-900"),children:d.nav.fleet}),(0,o.jsx)(s.default,{href:"/kapcsolat",className:(0,v.cn)("text-sm font-medium transition-colors",f?"text-slate-700 hover:text-primary":"text-white/90 hover:text-slate-900"),children:d.nav.contact})]}),(0,o.jsxs)("div",{className:"hidden md:flex items-center space-x-4",children:[(0,o.jsxs)("div",{className:(0,v.cn)("flex items-center rounded-full p-1 mr-2 transition-colors",f?"bg-white border border-slate-200/70 shadow-sm":"bg-white/10 border border-white/10 backdrop-blur-sm"),children:[(0,o.jsx)("button",{onClick:()=>u("hu"),className:(0,v.cn)("text-[10px] font-bold px-3 py-1 rounded-full transition-all","hu"===i?"bg-white text-slate-900 shadow-sm":f?"text-slate-600 hover:text-slate-900":"text-white/60 hover:text-white"),children:d.nav.language.hu}),(0,o.jsx)("button",{onClick:()=>u("en"),className:(0,v.cn)("text-[10px] font-bold px-3 py-1 rounded-full transition-all","en"===i?"bg-white text-slate-900 shadow-sm":f?"text-slate-600 hover:text-slate-900":"text-white/60 hover:text-white"),children:d.nav.language.en})]}),(0,o.jsx)(j,{asChild:!0,variant:f?"pill":"outline",className:(0,v.cn)("rounded-full px-6",!f&&e&&"text-white border-white/20 hover:bg-white/10 bg-transparent",f&&"bg-primary text-white"),children:(0,o.jsx)("a",{href:"https://app.skyflytravel.hu/public/offers/new",target:"_blank",rel:"noopener noreferrer",className:"text-[10px] md:text-sm",children:d.nav.cta})})]}),(0,o.jsx)("button",{className:(0,v.cn)("md:hidden p-2 z-50 rounded-lg backdrop-blur-sm transition-colors",f?"text-slate-900 bg-white/80 border border-slate-200/70 hover:bg-white":"text-white bg-black/50 hover:bg-black/70"),onClick:()=>a(!n),children:(0,o.jsx)(k,{className:"w-6 h-6"})})]})}),n&&(0,o.jsxs)("div",{className:"fixed inset-0 z-40 flex flex-col pt-32 px-8 animate-in slide-in-from-top duration-300",children:[(0,o.jsx)("div",{className:"absolute inset-0 bg-slate-950/95 backdrop-blur-md"}),(0,o.jsxs)("div",{className:"relative flex flex-col space-y-6 text-center",children:[(0,o.jsx)(s.default,{onClick:()=>a(!1),href:"/arak",className:"text-2xl font-bold text-white hover:text-primary transition-colors",children:d.nav.prices}),(0,o.jsx)(s.default,{onClick:()=>a(!1),href:"/szolgaltatasok",className:"text-2xl font-bold text-white hover:text-primary transition-colors",children:d.nav.services}),(0,o.jsx)(s.default,{onClick:()=>a(!1),href:"/feltetelek",className:"text-2xl font-bold text-white hover:text-primary transition-colors",children:d.nav.conditions}),(0,o.jsx)(s.default,{onClick:()=>a(!1),href:"/flotta",className:"text-2xl font-bold text-white hover:text-primary transition-colors",children:d.nav.fleet}),(0,o.jsx)(s.default,{onClick:()=>a(!1),href:"/kapcsolat",className:"text-2xl font-bold text-white hover:text-primary transition-colors",children:d.nav.contact}),(0,o.jsxs)("div",{className:"flex justify-center gap-4 pt-8",children:[(0,o.jsx)("button",{onClick:()=>{u("hu"),a(!1)},className:(0,v.cn)("px-6 py-2 rounded-full font-bold","hu"===i?"bg-white text-slate-900":"bg-white/10 text-white"),children:d.nav.language.hu}),(0,o.jsx)("button",{onClick:()=>{u("en"),a(!1)},className:(0,v.cn)("px-6 py-2 rounded-full font-bold","en"===i?"bg-white text-slate-900":"bg-white/10 text-white"),children:d.nav.language.en})]}),(0,o.jsx)(j,{asChild:!0,size:"lg",className:"mt-8 bg-primary text-white rounded-full",children:(0,o.jsx)("a",{href:"https://app.skyflytravel.hu/public/offers/new",target:"_blank",rel:"noopener noreferrer",children:d.nav.cta})})]})]})]})}],63780),e.s(["default",()=>P],76841);let E=(0,N.default)("arrow-left",[["path",{d:"m12 19-7-7 7-7",key:"1l729n"}],["path",{d:"M19 12H5",key:"x3x0zl"}]]);e.s(["ArrowLeft",()=>E],71689)}]); \ No newline at end of file diff --git a/out/_next/static/chunks/a05b0a9350a4e3d8.js b/out/_next/static/chunks/a05b0a9350a4e3d8.js deleted file mode 100644 index 8657561..0000000 --- a/out/_next/static/chunks/a05b0a9350a4e3d8.js +++ /dev/null @@ -1 +0,0 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,33525,(e,t,a)=>{"use strict";Object.defineProperty(a,"__esModule",{value:!0}),Object.defineProperty(a,"warnOnce",{enumerable:!0,get:function(){return r}});let r=e=>{}},26577,e=>{e.v({data:[{area:"SkyFly Travel",placeId:"ChIJQz_NzJm_a0cRGW1U_iUDLuU",rating:5,userRatingCount:285,reviews:[{text:"Mindig a SkyFly-jal utazunk a repülőterekre. Utastársaim nevében is a legjobbakat tudom mondani a cégről és szívesen ajánlom őket mindenkinek. Pontos szervezés, kedves, udvarias és rutinos sofőrök.",rating:5,author:"Gyopar Kallos",publishTime:"2026-01-13T13:05:09.781273430Z"},{text:"Évente több alkalommal használom reptéri transzfer szolgáltatásukat. Minden alkalommal a megbeszéltek szerint, pontosan a helyszínen voltak. Sofőrjeik segítőkészek. A megrendelés leadása után nem zaklatják az embert különféle emailekkel. Az utazás előtti napon küldik a sofőr nevét, elérhetőségét.",rating:5,author:"Péter",publishTime:"2025-12-04T13:51:00.646252562Z"},{text:"Évek óta a SkyFly szolgáltatását használjuk, mindig maximálisan elégedett voltunk. Megbízhatóak, pontosak és rugalmasak, ami hosszú utazások előtt és után különösen sokat jelent. A sofőrök kedvesek, figyelmesek és biztonságosan vezetnek.\nAz autók tiszták, kényelmesek, minden alkalommal gördülékeny a teljes transzfer. Bátran ajánlom mindenkinek, aki minőségi és profi szolgáltatást keres!",rating:5,author:"Csaba Farkas",publishTime:"2025-11-19T10:02:24.246395337Z"},{text:"Nagyon elégedett voltam a szolgáltatással! A sofőr pontosan érkezett, udvarias és segítőkész volt, az autó tiszta és kényelmes. Az út gyorsan és biztonságosan telt, minden gördülékenyen zajlott. Bátran ajánlom mindenkinek, aki megbízható reptéri transzfert keres.",rating:5,author:"Tunde Csendes",publishTime:"2025-10-08T06:21:01.050570478Z"},{text:"100%-os pozitív tapasztalat, nagyon örülök, hogy rátaláltunk a cégre. A kapott árajánlatok közül messze a legjobb árat kaptuk tőlük reptéri transzferre.Korrekt ár, gördülékeny kommunikáció, gyors és precíz választ kaptunk minden kérdésünkre. A sofőr nagyon kedves, udvarias, pontos és megbízható volt. A járatunk késését is nagyon rugalmasan kezelték. Csak ajánlani tudjuk őket a legjobb szívvel.",rating:5,author:"Gruber Andrea",publishTime:"2025-09-22T12:24:38.650812077Z"}]}]})},61405,e=>{e.v({data:[{area:"SkyFly Travel",placeId:"ChIJQz_NzJm_a0cRGW1U_iUDLuU",rating:5,userRatingCount:285,reviews:[{text:"Sky fly is a great company. The booking website is easy to understand. And the prices are fare. Also when a last minute situation occurs they always make it work to get you to your destination. Over the years I had a couple situations where I needed a last second change and every time the make it work. The drivers are also great. I would recommend this shuttle service.",rating:5,author:"matthijs van leijenhorst",publishTime:"2025-09-22T07:55:17.174730841Z"},{text:"Travel SkyFly has been providing an outstanding experience. The drivers are professional, punctual, and polite, and their cars are always immaculate and comfortable. Whether you're traveling between Vienna and Budapest or need reliable airport transportation, I highly recommend their services. Truly a hassle-free and dependable choice!",rating:5,author:"Krisztian Nagy",publishTime:"2024-12-04T16:27:45.117418Z"},{text:"SkyFly Travel Kft is MORE than a partner in providing the best chauffeur service — professional, reliable, and always exceeding expectations. Highly recommended for anyone seeking comfort, punctuality, and premium service in every ride - ViziZene Kft",rating:5,author:"Zoltan Biczo",publishTime:"2025-05-11T05:53:25.464513Z"},{text:"Professional, punctual, polite driver. Nice clean cars. I would highly recommend to those who needs a ride from or to airport from Vienna or to Budapest. I had a last minute booking, they were there as promised. Punctual arriving for my flight. Highly recommend.",rating:5,author:"Judit Csibi",publishTime:"2023-09-05T21:47:44.438396Z"},{text:"I was asked to fill in a review about my experiences with flysky travel. I have been able to experience a taxi ride with them 6 times so far. Everything is arranged down to the last detail, the reservation, the information provided about how the trip will go.. and especially the drivers. I have no complaints about this, polite and friendly drivers. In my case I have been picked up several times by Roland Klauz. This driver is recommended to be picked up by. Super friendly guy. Who takes you from A to B in a relaxed way. And with whom good contact can be maintained before / during and after the ride. Applause for Skyfly. Greetings Martijn van der Meer.",rating:5,author:"Martijn van der Meer",publishTime:"2024-08-05T15:18:27.019324Z"}]}]})},95010,e=>{"use strict";var t=e.i(43476),a=e.i(46932),r=e.i(47163);e.s(["default",0,({className:e,children:s})=>(0,t.jsx)(a.motion.main,{className:(0,r.cn)(e),initial:{opacity:0,y:24},animate:{opacity:1,y:0},transition:{duration:.7,ease:[.16,1,.3,1]},children:s})])},95468,e=>{"use strict";let t=(0,e.i(75254).default)("circle-check",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);e.s(["CheckCircle2",()=>t],95468)},8341,(e,t,a)=>{"use strict";Object.defineProperty(a,"__esModule",{value:!0});var r={cancelIdleCallback:function(){return i},requestIdleCallback:function(){return n}};for(var s in r)Object.defineProperty(a,s,{enumerable:!0,get:r[s]});let n="u">typeof self&&self.requestIdleCallback&&self.requestIdleCallback.bind(window)||function(e){let t=Date.now();return self.setTimeout(function(){e({didTimeout:!1,timeRemaining:function(){return Math.max(0,50-(Date.now()-t))}})},1)},i="u">typeof self&&self.cancelIdleCallback&&self.cancelIdleCallback.bind(window)||function(e){return clearTimeout(e)};("function"==typeof a.default||"object"==typeof a.default&&null!==a.default)&&void 0===a.default.__esModule&&(Object.defineProperty(a.default,"__esModule",{value:!0}),Object.assign(a.default,a),t.exports=a.default)},79520,(e,t,a)=>{"use strict";Object.defineProperty(a,"__esModule",{value:!0});var r={default:function(){return b},handleClientScriptLoad:function(){return k},initScriptLoader:function(){return g}};for(var s in r)Object.defineProperty(a,s,{enumerable:!0,get:r[s]});let n=e.r(55682),i=e.r(90809),l=e.r(43476),o=n._(e.r(74080)),d=i._(e.r(71645)),c=e.r(42732),u=e.r(22737),m=e.r(8341),h=new Map,f=new Set,p=e=>{let{src:t,id:a,onLoad:r=()=>{},onReady:s=null,dangerouslySetInnerHTML:n,children:i="",strategy:l="afterInteractive",onError:d,stylesheets:c}=e,m=a||t;if(m&&f.has(m))return;if(h.has(t)){f.add(m),h.get(t).then(r,d);return}let p=()=>{s&&s(),f.add(m)},k=document.createElement("script"),g=new Promise((e,t)=>{k.addEventListener("load",function(t){e(),r&&r.call(this,t),p()}),k.addEventListener("error",function(e){t(e)})}).catch(function(e){d&&d(e)});n?(k.innerHTML=n.__html||"",p()):i?(k.textContent="string"==typeof i?i:Array.isArray(i)?i.join(""):"",p()):t&&(k.src=t,h.set(t,g)),(0,u.setAttributesFromProps)(k,e),"worker"===l&&k.setAttribute("type","text/partytown"),k.setAttribute("data-nscript",l),c&&(e=>{if(o.default.preinit)return e.forEach(e=>{o.default.preinit(e,{as:"style"})});if("u">typeof window){let t=document.head;e.forEach(e=>{let a=document.createElement("link");a.type="text/css",a.rel="stylesheet",a.href=e,t.appendChild(a)})}})(c),document.body.appendChild(k)};function k(e){let{strategy:t="afterInteractive"}=e;"lazyOnload"===t?window.addEventListener("load",()=>{(0,m.requestIdleCallback)(()=>p(e))}):p(e)}function g(e){e.forEach(k),[...document.querySelectorAll('[data-nscript="beforeInteractive"]'),...document.querySelectorAll('[data-nscript="beforePageRender"]')].forEach(e=>{let t=e.id||e.getAttribute("src");f.add(t)})}function y(e){let{id:t,src:a="",onLoad:r=()=>{},onReady:s=null,strategy:n="afterInteractive",onError:i,stylesheets:u,...h}=e,{updateScripts:k,scripts:g,getIsSsr:y,appDir:b,nonce:v}=(0,d.useContext)(c.HeadManagerContext);v=h.nonce||v;let x=(0,d.useRef)(!1);(0,d.useEffect)(()=>{let e=t||a;x.current||(s&&e&&f.has(e)&&s(),x.current=!0)},[s,t,a]);let w=(0,d.useRef)(!1);if((0,d.useEffect)(()=>{if(!w.current){if("afterInteractive"===n)p(e);else"lazyOnload"===n&&("complete"===document.readyState?(0,m.requestIdleCallback)(()=>p(e)):window.addEventListener("load",()=>{(0,m.requestIdleCallback)(()=>p(e))}));w.current=!0}},[e,n]),("beforeInteractive"===n||"worker"===n)&&(k?(g[n]=(g[n]||[]).concat([{id:t,src:a,onLoad:r,onReady:s,onError:i,...h,nonce:v}]),k(g)):y&&y()?f.add(t||a):y&&!y()&&p({...e,nonce:v})),b){if(u&&u.forEach(e=>{o.default.preinit(e,{as:"style"})}),"beforeInteractive"===n)if(!a)return h.dangerouslySetInnerHTML&&(h.children=h.dangerouslySetInnerHTML.__html,delete h.dangerouslySetInnerHTML),(0,l.jsx)("script",{nonce:v,dangerouslySetInnerHTML:{__html:`(self.__next_s=self.__next_s||[]).push(${JSON.stringify([0,{...h,id:t}])})`}});else return o.default.preload(a,h.integrity?{as:"script",integrity:h.integrity,nonce:v,crossOrigin:h.crossOrigin}:{as:"script",nonce:v,crossOrigin:h.crossOrigin}),(0,l.jsx)("script",{nonce:v,dangerouslySetInnerHTML:{__html:`(self.__next_s=self.__next_s||[]).push(${JSON.stringify([a,{...h,id:t}])})`}});"afterInteractive"===n&&a&&o.default.preload(a,h.integrity?{as:"script",integrity:h.integrity,nonce:v,crossOrigin:h.crossOrigin}:{as:"script",nonce:v,crossOrigin:h.crossOrigin})}return null}Object.defineProperty(y,"__nextScript",{value:!0});let b=y;("function"==typeof a.default||"object"==typeof a.default&&null!==a.default)&&void 0===a.default.__esModule&&(Object.defineProperty(a.default,"__esModule",{value:!0}),Object.assign(a.default,a),t.exports=a.default)},3303,(e,t,a)=>{t.exports=e.r(79520)},6494,e=>{"use strict";var t=e.i(43476),a=e.i(63780),r=e.i(76841),s=e.i(95010),n=e.i(71689),i=e.i(95468),l=e.i(22016),o=e.i(3303),d=e.i(50661);function c(){let{t:e}=(0,d.useLanguage)();return(0,t.jsxs)(s.default,{className:"relative min-h-screen bg-slate-50",children:[(0,t.jsx)(a.default,{darkMode:!0}),(0,t.jsxs)("section",{className:"relative pt-40 pb-20 overflow-hidden bg-black",children:[(0,t.jsx)("div",{className:"absolute inset-0 bg-gradient-to-br from-pink-600/20 to-cyan-400/20 -z-10"}),(0,t.jsxs)("div",{className:"max-w-7xl mx-auto px-6 relative z-10",children:[(0,t.jsxs)(l.default,{href:"/",className:"inline-flex items-center text-white/70 hover:text-white mb-10 transition-colors group",children:[(0,t.jsx)(n.ArrowLeft,{className:"w-4 h-4 mr-2 group-hover:-translate-x-1 transition-transform"}),(0,t.jsx)("span",{className:"text-xs font-bold uppercase tracking-widest",children:e.discounts.pages.tiktok.back})]}),(0,t.jsxs)("h1",{className:"text-5xl md:text-7xl font-black text-white uppercase tracking-tighter leading-none mb-6",children:[e.discounts.tiktok.title," ",(0,t.jsx)("br",{}),(0,t.jsx)("span",{className:"text-primary italic",children:e.discounts.pages.tiktok.discountLabel})]})]})]}),(0,t.jsx)("section",{className:"py-24",children:(0,t.jsx)("div",{className:"max-w-4xl mx-auto px-6",children:(0,t.jsxs)("div",{className:"bg-white rounded-[3rem] p-10 md:p-16 shadow-2xl border border-slate-100 space-y-12",children:[(0,t.jsxs)("div",{className:"space-y-8",children:[(0,t.jsxs)("div",{className:"flex items-center gap-4",children:[(0,t.jsx)("div",{className:"w-12 h-12 bg-black rounded-2xl flex items-center justify-center shadow-lg",children:(0,t.jsx)("svg",{viewBox:"0 0 24 24",className:"w-6 h-6 fill-white",xmlns:"http://www.w3.org/2000/svg",children:(0,t.jsx)("path",{d:"M12.525.02c1.31-.036 2.612-.01 3.91-.01.1.993.414 1.956.96 2.784.73 1.096 1.764 1.93 2.97 2.45v3.91c-.815-.09-1.62-.315-2.38-.64-.816-.35-1.545-.88-2.15-1.53-.102.043-.102.164-.102.26v9.06c0 1.54-.34 3.05-1 4.41-.65 1.35-1.63 2.5-2.83 3.33-1.4.95-3.08 1.45-4.79 1.45-1.68 0-3.32-.48-4.73-1.39-1.21-.79-2.2-1.9-2.86-3.21-.71-1.37-1.07-2.9-1.07-4.47s.36-3.1 1.07-4.47c.66-1.31 1.65-2.42 2.86-3.21 1.25-.8 2.69-1.23 4.18-1.25.102 0 .204-.006.307-.006v3.94c-.037-.006-.074-.012-.112-.012-1.25.038-2.44.57-3.31 1.49-.89.92-1.38 2.16-1.38 3.45 0 1.29.49 2.53 1.38 3.45.87.92 2.06 1.45 3.31 1.49 1.25-.038 2.44-.57 3.31-1.49.89-.92 1.38-2.16 1.38-3.45V0l.024.02z"})})}),(0,t.jsx)("h2",{className:"text-3xl font-black text-slate-900 uppercase tracking-tight",children:e.discounts.pages.tiktok.claimTitle})]}),(0,t.jsx)("ul",{className:"grid grid-cols-1 md:grid-cols-2 gap-6",children:e.discounts.pages.tiktok.steps.map((e,a)=>(0,t.jsxs)("li",{className:"flex items-start gap-3 p-6 bg-slate-50 rounded-2xl border border-slate-100 text-slate-700 font-bold group hover:border-primary/30 transition-colors",children:[(0,t.jsx)(i.CheckCircle2,{className:"w-5 h-5 text-primary mt-1 shrink-0"}),(0,t.jsx)("span",{children:e})]},a))})]}),(0,t.jsxs)("div",{className:"space-y-8 pt-8 border-t border-slate-100 text-center",children:[(0,t.jsx)("h3",{className:"text-2xl font-black text-slate-900 uppercase tracking-tight",children:e.discounts.pages.tiktok.videoTitle}),(0,t.jsxs)("div",{className:"relative mx-auto max-w-[325px] aspect-[9/16] rounded-3xl overflow-hidden shadow-2xl border border-slate-200 bg-black",children:[(0,t.jsx)("blockquote",{className:"tiktok-embed",cite:"https://www.tiktok.com/@skyflytravel.transfer/video/7595495377424370966","data-video-id":"7595495377424370966",style:{maxWidth:"605px",minWidth:"325px"},children:(0,t.jsx)("section",{children:(0,t.jsx)("a",{target:"_blank",title:e.common.tiktokHandle,href:"https://www.tiktok.com/@skyflytravel.transfer?refer=embed",children:e.common.tiktokHandle})})}),(0,t.jsx)(o.default,{async:!0,src:"https://www.tiktok.com/embed.js"})]})]}),(0,t.jsx)("div",{className:"pt-10 flex justify-center",children:(0,t.jsxs)("a",{href:"https://www.tiktok.com/@skyflytravel.transfer",target:"_blank",rel:"noopener noreferrer",className:"inline-flex items-center gap-2 bg-black text-white px-10 py-5 rounded-full font-bold hover:bg-slate-900 transition-colors shadow-2xl",children:[(0,t.jsx)("svg",{viewBox:"0 0 24 24",className:"w-5 h-5 fill-white",xmlns:"http://www.w3.org/2000/svg",children:(0,t.jsx)("path",{d:"M12.525.02c1.31-.036 2.612-.01 3.91-.01.1.993.414 1.956.96 2.784.73 1.096 1.764 1.93 2.97 2.45v3.91c-.815-.09-1.62-.315-2.38-.64-.816-.35-1.545-.88-2.15-1.53-.102.043-.102.164-.102.26v9.06c0 1.54-.34 3.05-1 4.41-.65 1.35-1.63 2.5-2.83 3.33-1.4.95-3.08 1.45-4.79 1.45-1.68 0-3.32-.48-4.73-1.39-1.21-.79-2.2-1.9-2.86-3.21-.71-1.37-1.07-2.9-1.07-4.47s.36-3.1 1.07-4.47c.66-1.31 1.65-2.42 2.86-3.21 1.25-.8 2.69-1.23 4.18-1.25.102 0 .204-.006.307-.006v3.94c-.037-.006-.074-.012-.112-.012-1.25.038-2.44.57-3.31 1.49-.89.92-1.38 2.16-1.38 3.45 0 1.29.49 2.53 1.38 3.45.87.92 2.06 1.45 3.31 1.49 1.25-.038 2.44-.57 3.31-1.49.89-.92 1.38-2.16 1.38-3.45V0l.024.02z"})}),e.discounts.pages.tiktok.openPage]})})]})})}),(0,t.jsx)(r.default,{})]})}e.s(["default",()=>c])}]); \ No newline at end of file diff --git a/out/_next/static/chunks/a6e27160eef3e3ba.js b/out/_next/static/chunks/a6e27160eef3e3ba.js new file mode 100644 index 0000000..98449b7 --- /dev/null +++ b/out/_next/static/chunks/a6e27160eef3e3ba.js @@ -0,0 +1 @@ +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,33525,(e,a,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"warnOnce",{enumerable:!0,get:function(){return s}});let s=e=>{}},95010,e=>{"use strict";var a=e.i(43476),t=e.i(46932),s=e.i(47163);e.s(["default",0,({className:e,children:i})=>(0,a.jsx)(t.motion.main,{className:(0,s.cn)(e),initial:{opacity:0,y:24},animate:{opacity:1,y:0},transition:{duration:.7,ease:[.16,1,.3,1]},children:i})])},70065,e=>{"use strict";var a=e.i(43476),t=e.i(71645),s=e.i(47163);let i=t.forwardRef(({className:e,...t},i)=>(0,a.jsx)("div",{ref:i,className:(0,s.cn)("rounded-3xl border bg-card text-card-foreground shadow-sm",e),...t}));i.displayName="Card",t.forwardRef(({className:e,...t},i)=>(0,a.jsx)("div",{ref:i,className:(0,s.cn)("flex flex-col space-y-1.5 p-6",e),...t})).displayName="CardHeader",t.forwardRef(({className:e,...t},i)=>(0,a.jsx)("h3",{ref:i,className:(0,s.cn)("text-2xl font-semibold leading-none tracking-tight",e),...t})).displayName="CardTitle",t.forwardRef(({className:e,...t},i)=>(0,a.jsx)("p",{ref:i,className:(0,s.cn)("text-sm text-muted-foreground",e),...t})).displayName="CardDescription",t.forwardRef(({className:e,...t},i)=>(0,a.jsx)("div",{ref:i,className:(0,s.cn)("p-6 pt-0",e),...t})).displayName="CardContent",t.forwardRef(({className:e,...t},i)=>(0,a.jsx)("div",{ref:i,className:(0,s.cn)("flex items-center p-6 pt-0",e),...t})).displayName="CardFooter",e.s(["Card",()=>i])},61911,81418,e=>{"use strict";var a=e.i(75254);let t=(0,a.default)("users",[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["path",{d:"M16 3.128a4 4 0 0 1 0 7.744",key:"16gr8j"}],["path",{d:"M22 21v-2a4 4 0 0 0-3-3.87",key:"kshegd"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}]]);e.s(["Users",()=>t],61911);let s=(0,a.default)("shield-check",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);e.s(["ShieldCheck",()=>s],81418)},43138,e=>{"use strict";var a=e.i(43476),t=e.i(63780),s=e.i(76841),i=e.i(95010),l=e.i(70065),r=e.i(71689),c=e.i(61911),n=e.i(75254);let d=(0,n.default)("briefcase",[["path",{d:"M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16",key:"jecpp"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2",key:"i6l2r4"}]]),o=(0,n.default)("wind",[["path",{d:"M12.8 19.6A2 2 0 1 0 14 16H2",key:"148xed"}],["path",{d:"M17.5 8a2.5 2.5 0 1 1 2 4H2",key:"1u4tom"}],["path",{d:"M9.8 4.4A2 2 0 1 1 11 8H2",key:"75valh"}]]);var x=e.i(81418);let m=(0,n.default)("chevron-right",[["path",{d:"m9 18 6-6-6-6",key:"mthhwq"}]]);var p=e.i(22016),h=e.i(57688),f=e.i(50661),g=e.i(46932);function u(){let{t:e}=(0,f.useLanguage)(),n=[{id:"vclass",data:e.fleetPage.vehicles.vclass,image:"/images/fleet/v-class.jpg",large:!0,icon:c.Users},{id:"eclass",data:e.fleetPage.vehicles.eclass,image:"/images/fleet/e-class.jpg",large:!1,icon:d},{id:"superb",data:e.fleetPage.vehicles.superb,image:"/images/fleet/superb.jpg",large:!1,icon:o},{id:"transit",data:e.fleetPage.vehicles.transit,image:"/images/fleet/transit.jpg",large:!0,icon:c.Users}],u={hidden:{opacity:0,y:30},visible:{opacity:1,y:0,transition:{duration:.8}}};return(0,a.jsxs)(i.default,{className:"relative min-h-screen bg-[#fafaf9] text-slate-800 overflow-hidden",children:[(0,a.jsx)(t.default,{darkMode:!1}),(0,a.jsxs)("div",{className:"absolute top-0 left-0 w-full h-full overflow-hidden pointer-events-none -z-10",children:[(0,a.jsx)("div",{className:"absolute top-[-5%] left-[-5%] w-[50%] h-[50%] bg-primary/5 rounded-full blur-[140px] opacity-60"}),(0,a.jsx)("div",{className:"absolute top-[20%] right-[-10%] w-[40%] h-[40%] bg-blue-500/5 rounded-full blur-[120px] opacity-40"})]}),(0,a.jsx)("section",{className:"relative pt-32 pb-20 px-6",children:(0,a.jsxs)("div",{className:"max-w-7xl mx-auto",children:[(0,a.jsx)(g.motion.div,{initial:{opacity:0,x:-20},animate:{opacity:1,x:0},transition:{duration:.6},children:(0,a.jsxs)(p.default,{href:"/",className:"inline-flex items-center text-slate-400 hover:text-primary mb-10 transition-colors group",children:[(0,a.jsx)(r.ArrowLeft,{className:"w-4 h-4 mr-2 group-hover:-translate-x-1 transition-transform"}),(0,a.jsx)("span",{className:"text-[10px] font-black uppercase tracking-[0.3em]",children:e.fleetPage.back})]})}),(0,a.jsx)("div",{className:"max-w-4xl",children:(0,a.jsxs)(g.motion.div,{initial:{opacity:0,y:30},animate:{opacity:1,y:0},transition:{duration:.8},className:"space-y-8",children:[(0,a.jsxs)("h1",{className:"text-7xl md:text-9xl font-black uppercase tracking-tighter leading-[0.85] text-slate-900",children:[e.fleetPage.title," ",(0,a.jsx)("br",{}),(0,a.jsx)("span",{className:"text-primary italic",children:e.fleetPage.titleAccent})]}),(0,a.jsx)("p",{className:"text-xl md:text-2xl text-slate-500 max-w-2xl leading-relaxed font-medium",children:e.fleetPage.description})]})})]})}),(0,a.jsx)("section",{className:"pb-32 px-6",children:(0,a.jsx)(g.motion.div,{variants:{hidden:{opacity:0},visible:{opacity:1,transition:{staggerChildren:.2}}},initial:"hidden",whileInView:"visible",viewport:{once:!0},className:"max-w-7xl mx-auto grid grid-cols-1 md:grid-cols-2 gap-10",children:n.map((t,s)=>(0,a.jsx)(g.motion.div,{variants:u,className:t.large?"md:col-span-2":"md:col-span-1",children:(0,a.jsxs)(l.Card,{className:"group relative overflow-hidden rounded-[3.5rem] border-none bg-white shadow-[0_32px_64px_-16px_rgba(0,0,0,0.08)] transition-all duration-700 hover:shadow-[0_48px_80px_-20px_rgba(0,0,0,0.12)] aspect-[16/9] md:aspect-auto md:h-[700px]",children:[(0,a.jsx)(h.default,{src:t.image,alt:t.data.name,fill:!0,className:"object-cover transition-transform duration-[1.5s] ease-out group-hover:scale-110"}),(0,a.jsx)("div",{className:"absolute inset-0 bg-gradient-to-t from-black/80 via-black/20 to-transparent opacity-80 transition-opacity duration-700 group-hover:opacity-90"}),(0,a.jsx)("div",{className:"absolute inset-0 p-10 md:p-16 flex flex-col justify-end",children:(0,a.jsxs)("div",{className:"space-y-6 transform transition-all duration-700 group-hover:-translate-y-2",children:[(0,a.jsxs)("div",{className:"flex items-center justify-between",children:[(0,a.jsx)("div",{className:"flex items-center gap-3",children:(0,a.jsx)("span",{className:"px-5 py-2 rounded-full bg-primary text-white text-[9px] font-black uppercase tracking-[0.2em] shadow-xl",children:t.data.category})}),(0,a.jsxs)("div",{className:"flex items-center gap-2",children:[(0,a.jsx)("div",{className:"w-2 h-2 rounded-full bg-green-500 animate-pulse"}),(0,a.jsx)("span",{className:"text-[9px] font-black text-white/60 uppercase tracking-[0.3em]",children:e.fleetPage.availabilityLabel})]})]}),(0,a.jsxs)("div",{className:"space-y-4",children:[(0,a.jsx)("h3",{className:"text-4xl md:text-7xl font-black uppercase tracking-tighter text-white leading-tight",children:t.data.name}),(0,a.jsx)("p",{className:"text-white/70 max-w-2xl text-base md:text-lg font-medium leading-relaxed",children:t.data.description})]}),(0,a.jsx)("div",{className:"flex flex-wrap gap-x-8 gap-y-4 pt-4",children:t.data.features.map((e,t)=>(0,a.jsxs)("div",{className:"flex items-center gap-3 text-white/80",children:[(0,a.jsx)("div",{className:"w-1.5 h-1.5 rounded-full bg-primary"}),(0,a.jsx)("span",{className:"text-[10px] md:text-xs font-black uppercase tracking-widest",children:e})]},t))}),(0,a.jsxs)("div",{className:"pt-8 border-t border-white/10 flex items-center justify-between",children:[(0,a.jsxs)(p.default,{href:"https://app.skyflytravel.hu/public/offers/new",target:"_blank",className:"inline-flex items-center gap-4 text-primary font-black uppercase tracking-[0.2em] text-[10px] hover:gap-6 transition-all",children:[e.nav.cta,(0,a.jsx)(m,{className:"w-4 h-4"})]}),(0,a.jsx)("div",{className:"hidden md:flex gap-4",children:(0,a.jsx)("div",{className:"w-12 h-12 rounded-2xl bg-white/10 backdrop-blur-md flex items-center justify-center text-white border border-white/10 group-hover:bg-primary/20 group-hover:border-primary/30 transition-all",children:(0,a.jsx)(t.icon,{className:"w-6 h-6"})})})]})]})})]})},t.id))})}),(0,a.jsx)("section",{className:"py-32 px-6 bg-white relative",children:(0,a.jsxs)("div",{className:"max-w-5xl mx-auto text-center space-y-16",children:[(0,a.jsx)(g.motion.div,{initial:{opacity:0,scale:.9},whileInView:{opacity:1,scale:1},viewport:{once:!0},className:"bg-primary/10 w-24 h-24 rounded-[2rem] flex items-center justify-center mx-auto mb-8 rotate-6 hover:rotate-0 transition-transform duration-700",children:(0,a.jsx)(x.ShieldCheck,{className:"w-12 h-12 text-primary"})}),(0,a.jsx)("h2",{className:"text-4xl md:text-6xl font-black uppercase tracking-tighter leading-tight text-slate-900",children:e.servicesPage.whyUs.items[1]}),(0,a.jsxs)("div",{className:"grid grid-cols-1 md:grid-cols-3 gap-16 md:gap-8",children:[(0,a.jsxs)("div",{className:"space-y-4",children:[(0,a.jsx)("p",{className:"text-6xl font-black text-primary transition-transform hover:scale-110 duration-300",children:e.fleetPage.stats.ageValue}),(0,a.jsx)("p",{className:"text-[11px] font-black uppercase tracking-[0.2em] text-slate-400",children:e.fleetPage.stats.ageLabel})]}),(0,a.jsxs)("div",{className:"space-y-4",children:[(0,a.jsx)("p",{className:"text-6xl font-black text-primary transition-transform hover:scale-110 duration-300",children:e.fleetPage.stats.cleanlinessValue}),(0,a.jsx)("p",{className:"text-[11px] font-black uppercase tracking-[0.2em] text-slate-400",children:e.fleetPage.stats.cleanlinessLabel})]}),(0,a.jsxs)("div",{className:"space-y-4",children:[(0,a.jsx)("p",{className:"text-6xl font-black text-primary transition-transform hover:scale-110 duration-300",children:e.fleetPage.stats.maintenanceValue}),(0,a.jsx)("p",{className:"text-[11px] font-black uppercase tracking-[0.2em] text-slate-400",children:e.fleetPage.stats.maintenanceLabel})]})]})]})}),(0,a.jsx)(s.default,{})]})}e.s(["default",()=>u],43138)}]); \ No newline at end of file diff --git a/out/_next/static/chunks/aa30a9b38f1909fe.js b/out/_next/static/chunks/aa30a9b38f1909fe.js new file mode 100644 index 0000000..3c363d4 --- /dev/null +++ b/out/_next/static/chunks/aa30a9b38f1909fe.js @@ -0,0 +1 @@ +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,95468,e=>{"use strict";let a=(0,e.i(75254).default)("circle-check",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);e.s(["CheckCircle2",()=>a],95468)},33525,(e,a,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"warnOnce",{enumerable:!0,get:function(){return s}});let s=e=>{}},95010,e=>{"use strict";var a=e.i(43476),t=e.i(46932),s=e.i(47163);e.s(["default",0,({className:e,children:l})=>(0,a.jsx)(t.motion.main,{className:(0,s.cn)(e),initial:{opacity:0,y:24},animate:{opacity:1,y:0},transition:{duration:.7,ease:[.16,1,.3,1]},children:l})])},70065,e=>{"use strict";var a=e.i(43476),t=e.i(71645),s=e.i(47163);let l=t.forwardRef(({className:e,...t},l)=>(0,a.jsx)("div",{ref:l,className:(0,s.cn)("rounded-3xl border bg-card text-card-foreground shadow-sm",e),...t}));l.displayName="Card",t.forwardRef(({className:e,...t},l)=>(0,a.jsx)("div",{ref:l,className:(0,s.cn)("flex flex-col space-y-1.5 p-6",e),...t})).displayName="CardHeader",t.forwardRef(({className:e,...t},l)=>(0,a.jsx)("h3",{ref:l,className:(0,s.cn)("text-2xl font-semibold leading-none tracking-tight",e),...t})).displayName="CardTitle",t.forwardRef(({className:e,...t},l)=>(0,a.jsx)("p",{ref:l,className:(0,s.cn)("text-sm text-muted-foreground",e),...t})).displayName="CardDescription",t.forwardRef(({className:e,...t},l)=>(0,a.jsx)("div",{ref:l,className:(0,s.cn)("p-6 pt-0",e),...t})).displayName="CardContent",t.forwardRef(({className:e,...t},l)=>(0,a.jsx)("div",{ref:l,className:(0,s.cn)("flex items-center p-6 pt-0",e),...t})).displayName="CardFooter",e.s(["Card",()=>l])},3116,e=>{"use strict";let a=(0,e.i(75254).default)("clock",[["path",{d:"M12 6v6l4 2",key:"mmk7yg"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);e.s(["Clock",()=>a],3116)},43432,e=>{"use strict";let a=(0,e.i(75254).default)("phone",[["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",key:"9njp5v"}]]);e.s(["Phone",()=>a],43432)},63488,e=>{"use strict";let a=(0,e.i(75254).default)("mail",[["path",{d:"m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7",key:"132q7q"}],["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2",key:"izxlao"}]]);e.s(["Mail",()=>a],63488)},43114,e=>{"use strict";var a=e.i(43476),t=e.i(63780),s=e.i(76841),l=e.i(95010),r=e.i(70065),c=e.i(71689),i=e.i(43432),n=e.i(63488),o=e.i(3116),d=e.i(22016),m=e.i(50661),x=e.i(47163),p=e.i(47167),u=e.i(71645),h=e.i(67881);let f=u.forwardRef(({className:e,type:t,...s},l)=>(0,a.jsx)("input",{type:t,className:(0,x.cn)("flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-base ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",e),ref:l,...s}));f.displayName="Input";let g=u.forwardRef(({className:e,...t},s)=>(0,a.jsx)("textarea",{className:(0,x.cn)("flex min-h-[80px] w-full rounded-md border border-input bg-background px-3 py-2 text-base ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",e),ref:s,...t}));g.displayName="Textarea";var b=e.i(75254);let y=(0,b.default)("send",[["path",{d:"M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z",key:"1ffxy3"}],["path",{d:"m21.854 2.147-10.94 10.939",key:"12cjpa"}]]);var j=e.i(95468);let N=(0,b.default)("circle-alert",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);function v(){let{t:e,language:t}=(0,m.useLanguage)(),s=p.default.env.NEXT_PUBLIC_RECAPTCHA_SITE_KEY||"6LfqD1osAAAAANd6P-3qin0cRdFQSGX92F02A3dE",l="contact_form",c=e.contactPage.form.serviceOptions.airport,[i,n]=(0,u.useState)(!1),[o,d]=(0,u.useState)("idle"),[x,b]=(0,u.useState)({name:"",email:"",phone:"",service:c,message:"",consent:!1});(0,u.useEffect)(()=>{let e="recaptcha-v3",a=()=>{window.grecaptcha?.ready(()=>n(!0))};if(document.getElementById(e))return void a();let t=document.createElement("script");t.id=e,t.src=`https://www.google.com/recaptcha/api.js?render=${s}`,t.async=!0,t.defer=!0,t.onload=a,t.onerror=()=>n(!1),document.head.appendChild(t)},[s]),(0,u.useEffect)(()=>{b(e=>e.service===c?e:{...e,service:c})},[c]);let v=async()=>{if(!window.grecaptcha)throw Error("reCAPTCHA not ready");return new Promise((e,a)=>{window.grecaptcha?.ready(()=>{window.grecaptcha?.execute(s,{action:l}).then(e).catch(a)})})},w=e=>{let{name:a,value:t,type:s}=e.target;b(l=>({...l,[a]:"checkbox"===s?e.target.checked:t}))},P=async a=>{if(a.preventDefault(),!i)try{await ((e=4e3)=>new Promise((a,t)=>{let s=Date.now(),l=()=>{window.grecaptcha?window.grecaptcha.ready(()=>a()):Date.now()-s>=e?t(Error("reCAPTCHA not ready")):setTimeout(l,150)};l()}))(),n(!0)}catch{alert(e.contactPage.form.recaptchaNotReady);return}if(!x.consent)return void alert(e.contactPage.form.consentRequired);d("loading");try{let e=await v();(await fetch("/contact.php",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({...x,recaptchaToken:e,recaptchaAction:l,language:t})})).ok?(d("success"),b({name:"",email:"",phone:"",service:c,message:"",consent:!1})):d("error")}catch(e){d("error")}};return"success"===o?(0,a.jsxs)(r.Card,{className:"p-12 text-center rounded-[3rem] border-none shadow-2xl bg-white",children:[(0,a.jsx)("div",{className:"bg-green-100 w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-8",children:(0,a.jsx)(j.CheckCircle2,{className:"w-10 h-10 text-green-500"})}),(0,a.jsx)("h3",{className:"text-3xl font-black text-slate-900 uppercase tracking-tighter mb-4",children:e.contactPage.form.successTitle}),(0,a.jsx)("p",{className:"text-slate-600 font-medium max-w-md mx-auto",children:e.contactPage.form.success}),(0,a.jsx)(h.Button,{onClick:()=>d("idle"),variant:"outline",className:"mt-8 rounded-full px-8",children:e.contactPage.form.successAction})]}):(0,a.jsx)(r.Card,{className:"rounded-[3rem] overflow-hidden border-none shadow-2xl bg-white",children:(0,a.jsxs)("form",{onSubmit:P,className:"p-8 md:p-12 space-y-8",children:[(0,a.jsxs)("div",{className:"grid grid-cols-1 md:grid-cols-2 gap-8",children:[(0,a.jsxs)("div",{className:"space-y-2",children:[(0,a.jsx)("label",{className:"text-xs font-bold uppercase tracking-widest text-slate-400 ml-1",children:e.contactPage.form.name}),(0,a.jsx)(f,{required:!0,name:"name",value:x.name,onChange:w,placeholder:e.contactPage.form.placeholders.name,className:"rounded-2xl h-14 bg-slate-50 border-slate-100 focus:border-primary focus:ring-primary transition-all"})]}),(0,a.jsxs)("div",{className:"space-y-2",children:[(0,a.jsx)("label",{className:"text-xs font-bold uppercase tracking-widest text-slate-400 ml-1",children:e.contactPage.form.email}),(0,a.jsx)(f,{required:!0,type:"email",name:"email",value:x.email,onChange:w,placeholder:e.contactPage.form.placeholders.email,className:"rounded-2xl h-14 bg-slate-50 border-slate-100 focus:border-primary focus:ring-primary transition-all"})]})]}),(0,a.jsxs)("div",{className:"grid grid-cols-1 md:grid-cols-2 gap-8",children:[(0,a.jsxs)("div",{className:"space-y-2",children:[(0,a.jsx)("label",{className:"text-xs font-bold uppercase tracking-widest text-slate-400 ml-1",children:e.contactPage.form.phone}),(0,a.jsx)(f,{name:"phone",value:x.phone,onChange:w,placeholder:e.contactPage.form.placeholders.phone,className:"rounded-2xl h-14 bg-slate-50 border-slate-100 focus:border-primary focus:ring-primary transition-all"})]}),(0,a.jsxs)("div",{className:"space-y-2",children:[(0,a.jsx)("label",{className:"text-xs font-bold uppercase tracking-widest text-slate-400 ml-1",children:e.contactPage.form.service}),(0,a.jsxs)("select",{name:"service",value:x.service,onChange:w,className:"w-full rounded-2xl h-14 bg-slate-50 border-slate-100 focus:border-primary focus:ring-primary transition-all px-4 text-sm font-medium",children:[(0,a.jsx)("option",{value:e.contactPage.form.serviceOptions.airport,children:e.contactPage.form.serviceOptions.airport}),(0,a.jsx)("option",{value:e.contactPage.form.serviceOptions.private,children:e.contactPage.form.serviceOptions.private}),(0,a.jsx)("option",{value:e.contactPage.form.serviceOptions.other,children:e.contactPage.form.serviceOptions.other})]})]})]}),(0,a.jsxs)("div",{className:"space-y-2",children:[(0,a.jsx)("label",{className:"text-xs font-bold uppercase tracking-widest text-slate-400 ml-1",children:e.contactPage.form.message}),(0,a.jsx)(g,{required:!0,name:"message",value:x.message,onChange:w,placeholder:e.contactPage.form.placeholders.message,rows:5,className:"rounded-[2rem] bg-slate-50 border-slate-100 focus:border-primary focus:ring-primary transition-all p-6 min-h-[150px]"})]}),(0,a.jsxs)("div",{className:"flex items-start gap-3",children:[(0,a.jsx)("input",{required:!0,type:"checkbox",name:"consent",checked:x.consent,onChange:w,className:"mt-1 w-5 h-5 rounded-lg border-slate-200 text-primary focus:ring-primary cursor-pointer"}),(0,a.jsx)("p",{className:"text-sm text-slate-500 leading-relaxed font-medium",children:e.contactPage.form.consent})]}),(0,a.jsx)("div",{className:"pt-4 flex justify-center md:justify-start",children:(0,a.jsx)("span",{className:"text-xs text-slate-400",children:e.contactPage.form.recaptchaNotice})}),"error"===o&&(0,a.jsxs)("div",{className:"bg-red-50 text-red-600 p-4 rounded-2xl flex items-center gap-3 text-sm font-bold",children:[(0,a.jsx)(N,{className:"w-5 h-5"}),e.contactPage.form.error]}),(0,a.jsx)(h.Button,{disabled:"loading"===o,type:"submit",size:"lg",className:"w-full md:w-fit rounded-full px-12 h-16 bg-primary hover:bg-primary/90 text-sm font-bold uppercase tracking-widest transition-all shadow-xl disabled:opacity-50",children:"loading"===o?(0,a.jsxs)("span",{className:"flex items-center gap-2",children:[(0,a.jsx)("div",{className:"w-4 h-4 border-2 border-white/30 border-t-white rounded-full animate-spin"}),e.contactPage.form.submitting]}):(0,a.jsxs)("span",{className:"flex items-center gap-2",children:[(0,a.jsx)(y,{className:"w-4 h-4"}),e.contactPage.form.button]})})]})})}function w(){let{t:e}=(0,m.useLanguage)(),p=[{icon:o.Clock,label:e.contactPage.info.infoLine,values:e.contactPage.info.infoLineValues,type:"tel",color:"bg-blue-500"},{icon:i.Phone,label:e.contactPage.info.dutyLine,values:[e.contactPage.info.dutyLineValue],type:"tel",color:"bg-primary"},{icon:n.Mail,label:e.contactPage.info.email,values:[e.contactPage.info.emailValue],type:"mailto",color:"bg-purple-500"}];return(0,a.jsxs)(l.default,{className:"relative min-h-screen bg-slate-50",children:[(0,a.jsx)(t.default,{darkMode:!0}),(0,a.jsxs)("div",{className:"absolute md:fixed inset-0 pointer-events-none -z-10 overflow-hidden",children:[(0,a.jsx)("div",{className:"absolute top-1/4 -right-20 w-96 h-96 bg-primary/5 rounded-full blur-3xl opacity-30 animate-blob"}),(0,a.jsx)("div",{className:"absolute top-1/2 -left-20 w-80 h-80 bg-secondary/5 rounded-full blur-3xl opacity-30 animate-blob animation-delay-2000"})]}),(0,a.jsxs)("section",{className:"relative pt-40 pb-32 overflow-hidden bg-[#D9A321]",children:[(0,a.jsx)("div",{className:"absolute inset-0 bg-diagonal opacity-100 -z-10",style:{background:"linear-gradient(135deg, #D9A321 0%, #1A1A1A 100%)"}}),(0,a.jsx)("div",{className:"absolute bottom-0 left-0 w-full h-[100px] bg-slate-50 transform -skew-y-3 origin-bottom-left -z-10"}),(0,a.jsxs)("div",{className:"max-w-7xl mx-auto px-6 relative z-10",children:[(0,a.jsxs)(d.default,{href:"/",className:"inline-flex items-center text-white/70 hover:text-white mb-10 transition-colors group",children:[(0,a.jsx)("div",{className:"bg-white/10 p-2 rounded-full mr-3 group-hover:bg-white/20 transition-colors",children:(0,a.jsx)(c.ArrowLeft,{className:"w-4 h-4"})}),(0,a.jsx)("span",{className:"text-xs font-bold tracking-[0.2em] uppercase",children:e.contactPage.back})]}),(0,a.jsxs)("div",{className:"space-y-4",children:[(0,a.jsxs)("h1",{className:"text-5xl md:text-8xl font-black text-white tracking-tighter leading-none uppercase",children:[e.contactPage.title," ",(0,a.jsx)("br",{}),(0,a.jsx)("span",{className:"text-secondary/40 italic",children:e.contactPage.titleAccent})]}),(0,a.jsx)("p",{className:"text-xl text-white/70 max-w-2xl leading-relaxed font-medium",children:e.contactPage.description})]})]})]}),(0,a.jsx)("section",{className:"py-24",children:(0,a.jsxs)("div",{className:"max-w-7xl mx-auto px-6",children:[(0,a.jsx)("div",{className:"grid grid-cols-1 lg:grid-cols-3 gap-8",children:p.map((e,t)=>(0,a.jsxs)(r.Card,{className:"p-10 rounded-[2.5rem] border-none shadow-lg bg-white group hover:-translate-y-2 transition-all duration-300",children:[(0,a.jsx)("div",{className:(0,x.cn)("w-14 h-14 rounded-2xl flex items-center justify-center mb-8 shadow-lg",e.color),children:(0,a.jsx)(e.icon,{className:"w-6 h-6 text-white"})}),(0,a.jsx)("p",{className:"text-sm font-bold text-slate-400 uppercase tracking-widest mb-2",children:e.label}),(0,a.jsx)("div",{className:"space-y-2",children:e.values.map((t,s)=>{let l="mailto"===e.type?`mailto:${t}`:`tel:${t.replace(/\s/g,"")}`;return(0,a.jsx)("a",{href:l,className:"text-2xl font-black text-slate-900 hover:text-primary transition-colors",children:t},`${t}-${s}`)})})]},t))}),(0,a.jsx)("div",{className:"mt-24",children:(0,a.jsxs)("div",{className:"max-w-4xl mx-auto",children:[(0,a.jsxs)("div",{className:"text-center mb-16 space-y-4",children:[(0,a.jsx)("h2",{className:"text-4xl md:text-6xl font-black text-slate-900 uppercase tracking-tighter",children:e.contactPage.cta.title}),(0,a.jsx)("p",{className:"text-slate-500 font-medium max-w-xl mx-auto",children:e.contactPage.cta.description})]}),(0,a.jsx)(v,{})]})}),(0,a.jsxs)("div",{className:"mt-32 grid grid-cols-1 md:grid-cols-2 gap-12 pt-24 border-t border-slate-200",children:[(0,a.jsxs)("div",{className:"space-y-8",children:[(0,a.jsx)("div",{className:"bg-slate-900 text-white px-6 py-2 rounded-full inline-block text-[10px] font-black uppercase tracking-[0.3em]",children:e.contactPage.business.title}),(0,a.jsxs)("div",{className:"space-y-4",children:[(0,a.jsx)("p",{className:"text-xl font-black text-slate-900",children:e.contactPage.business.operator}),(0,a.jsxs)("div",{className:"space-y-2",children:[(0,a.jsx)("p",{className:"text-slate-500 font-medium",children:e.contactPage.business.address}),(0,a.jsx)("p",{className:"text-slate-500 font-medium",children:e.contactPage.business.taxNumber}),(0,a.jsx)("p",{className:"text-slate-500 font-medium",children:e.contactPage.business.bankAccount})]}),(0,a.jsxs)("div",{className:"space-y-2 pt-4",children:[(0,a.jsx)("p",{className:"text-primary font-black",children:e.contactPage.business.phone}),(0,a.jsx)("p",{className:"text-primary font-black",children:e.contactPage.business.infoLine}),(0,a.jsx)("p",{className:"text-slate-900 font-bold",children:e.contactPage.business.email})]})]})]}),(0,a.jsxs)("div",{className:"space-y-8",children:[(0,a.jsx)("div",{className:"bg-primary text-white px-6 py-2 rounded-full inline-block text-[10px] font-black uppercase tracking-[0.3em]",children:e.contactPage.legal.title}),(0,a.jsxs)("div",{className:"space-y-4",children:[(0,a.jsx)("p",{className:"text-xl font-black text-slate-900",children:e.contactPage.legal.name}),(0,a.jsxs)("div",{className:"space-y-2",children:[(0,a.jsx)("p",{className:"text-slate-500 font-medium",children:e.contactPage.legal.office}),(0,a.jsx)("p",{className:"text-slate-500 font-medium",children:e.contactPage.legal.address})]}),(0,a.jsxs)("div",{className:"space-y-2 pt-4",children:[(0,a.jsx)(d.default,{href:"https://www.12gyoriugyvediiroda.hu",target:"_blank",className:"text-primary font-black block hover:underline",children:e.contactPage.legal.web}),(0,a.jsx)("p",{className:"text-slate-900 font-bold",children:e.contactPage.legal.phone})]})]})]})]})]})}),(0,a.jsx)(s.default,{})]})}e.s(["default",()=>w],43114)}]); \ No newline at end of file diff --git a/out/_next/static/chunks/b82ba4ad59b06105.css b/out/_next/static/chunks/b82ba4ad59b06105.css deleted file mode 100644 index 30d0f1b..0000000 --- a/out/_next/static/chunks/b82ba4ad59b06105.css +++ /dev/null @@ -1,2 +0,0 @@ -@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(../media/2c55a0e60120577a-s.2a48534a.woff2)format("woff2");unicode-range:U+460-52F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(../media/9c72aa0f40e4eef8-s.18a48cbc.woff2)format("woff2");unicode-range:U+301,U+400-45F,U+490-491,U+4B0-4B1,U+2116}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(../media/ad66f9afd8947f86-s.7a40eb73.woff2)format("woff2");unicode-range:U+1F??}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(../media/5476f68d60460930-s.c995e352.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(../media/2bbe8d2671613f1f-s.76dcb0b2.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(../media/1bffadaabf893a1e-s.7cd81963.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(../media/83afe278b6a6bb3c-s.p.3a6ba036.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Inter Fallback;src:local(Arial);ascent-override:90.44%;descent-override:22.52%;line-gap-override:0.0%;size-adjust:107.12%}.inter_fe8b9d92-module__LINzvG__className{font-family:Inter,Inter Fallback;font-style:normal}.inter_fe8b9d92-module__LINzvG__variable{--font-inter:"Inter","Inter Fallback"} -@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-pan-x:initial;--tw-pan-y:initial;--tw-pinch-zoom:initial;--tw-space-y-reverse:0;--tw-space-x-reverse:0;--tw-divide-x-reverse:0;--tw-border-style:solid;--tw-divide-y-reverse:0;--tw-gradient-position:initial;--tw-gradient-from:#0000;--tw-gradient-via:#0000;--tw-gradient-to:#0000;--tw-gradient-stops:initial;--tw-gradient-via-stops:initial;--tw-gradient-from-position:0%;--tw-gradient-via-position:50%;--tw-gradient-to-position:100%;--tw-leading:initial;--tw-font-weight:initial;--tw-tracking:initial;--tw-ordinal:initial;--tw-slashed-zero:initial;--tw-numeric-figure:initial;--tw-numeric-spacing:initial;--tw-numeric-fraction:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial;--tw-duration:initial;--tw-ease:initial}}}@layer theme{:root,:host{--font-sans:var(--font-inter);--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-red-50:#fef2f2;--color-red-600:#e40014;--color-orange-100:#ffedd5;--color-orange-200:#ffd7a8;--color-orange-500:#fe6e00;--color-yellow-300:#ffe02a;--color-yellow-500:#edb200;--color-green-50:#f0fdf4;--color-green-100:#dcfce7;--color-green-500:#00c758;--color-cyan-400:#00d2ef;--color-cyan-500:#00b7d7;--color-blue-50:#eff6ff;--color-blue-100:#dbeafe;--color-blue-200:#bedbff;--color-blue-500:#3080ff;--color-blue-600:#155dfc;--color-blue-700:#1447e6;--color-blue-950:#162456;--color-purple-50:#faf5ff;--color-purple-100:#f3e8ff;--color-purple-200:#e9d5ff;--color-purple-500:#ac4bff;--color-purple-600:#9810fa;--color-pink-100:#fce7f3;--color-pink-500:#f6339a;--color-pink-600:#e30076;--color-slate-50:#f8fafc;--color-slate-100:#f1f5f9;--color-slate-200:#e2e8f0;--color-slate-300:#cad5e2;--color-slate-400:#90a1b9;--color-slate-500:#62748e;--color-slate-600:#45556c;--color-slate-700:#314158;--color-slate-800:#1d293d;--color-slate-900:#0f172b;--color-slate-950:#020618;--color-black:#000;--color-white:#fff;--spacing:.25rem;--container-xs:20rem;--container-md:28rem;--container-lg:32rem;--container-xl:36rem;--container-2xl:42rem;--container-4xl:56rem;--container-5xl:64rem;--container-6xl:72rem;--container-7xl:80rem;--text-xs:.75rem;--text-xs--line-height:calc(1/.75);--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--text-base:1rem;--text-base--line-height:calc(1.5/1);--text-lg:1.125rem;--text-lg--line-height:calc(1.75/1.125);--text-xl:1.25rem;--text-xl--line-height:calc(1.75/1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2/1.5);--text-3xl:1.875rem;--text-3xl--line-height:calc(2.25/1.875);--text-4xl:2.25rem;--text-4xl--line-height:calc(2.5/2.25);--text-5xl:3rem;--text-5xl--line-height:1;--text-6xl:3.75rem;--text-6xl--line-height:1;--text-7xl:4.5rem;--text-7xl--line-height:1;--text-8xl:6rem;--text-8xl--line-height:1;--text-9xl:8rem;--text-9xl--line-height:1;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--font-weight-extrabold:800;--font-weight-black:900;--tracking-tighter:-.05em;--tracking-tight:-.025em;--tracking-normal:0em;--tracking-wide:.025em;--tracking-wider:.05em;--tracking-widest:.1em;--leading-tight:1.25;--leading-relaxed:1.625;--radius-md:.375rem;--radius-lg:.5rem;--radius-xl:.75rem;--radius-2xl:1rem;--radius-3xl:1.5rem;--ease-in:cubic-bezier(.4,0,1,1);--ease-out:cubic-bezier(0,0,.2,1);--ease-in-out:cubic-bezier(.4,0,.2,1);--animate-spin:spin 1s linear infinite;--animate-pulse:pulse 2s cubic-bezier(.4,0,.6,1)infinite;--animate-bounce:bounce 1s infinite;--blur-sm:8px;--blur-md:12px;--blur-xl:24px;--blur-3xl:64px;--aspect-video:16/9;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono);--color-background:hsl(var(--background));--color-foreground:hsl(var(--foreground));--color-card:hsl(var(--card));--color-card-foreground:hsl(var(--card-foreground));--color-primary:hsl(var(--primary));--color-primary-foreground:hsl(var(--primary-foreground));--color-secondary:hsl(var(--secondary));--color-secondary-foreground:hsl(var(--secondary-foreground));--color-muted:hsl(var(--muted));--color-muted-foreground:hsl(var(--muted-foreground));--color-accent:hsl(var(--accent));--color-accent-foreground:hsl(var(--accent-foreground));--color-destructive:hsl(var(--destructive));--color-destructive-foreground:hsl(var(--destructive-foreground));--color-border:hsl(var(--border));--color-input:hsl(var(--input));--color-ring:hsl(var(--ring))}@supports (color:lab(0% 0 0)){:root,:host{--color-red-50:lab(96.5005% 4.18511 1.52329);--color-red-600:lab(48.4493% 77.4328 61.5452);--color-orange-100:lab(94.7127% 3.58391 14.3151);--color-orange-200:lab(88.4871% 9.94918 28.8378);--color-orange-500:lab(64.272% 57.1788 90.3583);--color-yellow-300:lab(89.7033% -.480324 84.4917);--color-yellow-500:lab(76.3898% 14.5258 98.4589);--color-green-50:lab(98.1563% -5.60117 2.75913);--color-green-100:lab(96.186% -13.8464 6.52362);--color-green-500:lab(70.5521% -66.5147 45.8072);--color-cyan-400:lab(76.6045% -40.9406 -29.6231);--color-cyan-500:lab(67.805% -35.3952 -30.2018);--color-blue-50:lab(96.492% -1.14647 -5.11479);--color-blue-100:lab(92.0301% -2.24757 -11.6453);--color-blue-200:lab(86.15% -4.04379 -21.0797);--color-blue-500:lab(54.1736% 13.3368 -74.6839);--color-blue-600:lab(44.0605% 29.0279 -86.0352);--color-blue-700:lab(36.9089% 35.0961 -85.6872);--color-blue-950:lab(15.6723% 8.86233 -32.2945);--color-purple-50:lab(97.1626% 2.99937 -4.13398);--color-purple-100:lab(93.3333% 6.9744 -9.83434);--color-purple-200:lab(87.8405% 13.4282 -18.7159);--color-purple-500:lab(52.0183% 66.11 -78.2316);--color-purple-600:lab(43.0295% 75.21 -86.5669);--color-pink-100:lab(93.5864% 9.01193 -3.15077);--color-pink-500:lab(56.9303% 76.8162 -8.07021);--color-pink-600:lab(49.5493% 79.8381 2.31769);--color-slate-50:lab(98.1434% -.369549 -1.05968);--color-slate-100:lab(96.286% -.852466 -2.46847);--color-slate-200:lab(91.7353% -.998765 -4.76968);--color-slate-300:lab(84.7652% -1.94535 -7.93337);--color-slate-400:lab(65.5349% -2.25151 -14.5072);--color-slate-500:lab(48.0876% -2.03595 -16.5814);--color-slate-600:lab(35.5623% -1.74978 -15.4316);--color-slate-700:lab(26.9569% -1.47018 -15.6993);--color-slate-800:lab(16.132% -.318021 -14.6672);--color-slate-900:lab(7.78673% 1.82346 -15.0537);--color-slate-950:lab(1.76974% 1.32743 -9.28855)}}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab, red, red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}:root{--background:0 0% 100%;--foreground:224 71.4% 4.1%;--card:0 0% 100%;--card-foreground:224 71.4% 4.1%;--popover:0 0% 100%;--popover-foreground:224 71.4% 4.1%;--primary:42 74% 49%;--primary-foreground:0 0% 100%;--secondary:0 0% 10%;--secondary-foreground:0 0% 100%;--muted:0 0% 96%;--muted-foreground:0 0% 45%;--accent:42 74% 95%;--accent-foreground:42 74% 20%;--destructive:0 84.2% 60.2%;--destructive-foreground:210 20% 98%;--border:0 0% 90%;--input:0 0% 90%;--ring:42 74% 49%;--radius:.75rem}.dark{--background:0 0% 10%;--foreground:0 0% 98%;--card:0 0% 10%;--card-foreground:0 0% 98%;--popover:0 0% 10%;--popover-foreground:0 0% 98%;--primary:42 74% 49%;--primary-foreground:0 0% 10%;--secondary:0 0% 20%;--secondary-foreground:0 0% 100%;--muted:0 0% 15%;--muted-foreground:0 0% 65%;--accent:42 74% 15%;--accent-foreground:42 74% 90%;--destructive:0 62.8% 30.6%;--destructive-foreground:210 20% 98%;--border:0 0% 20%;--input:0 0% 20%;--ring:42 74% 49%}*{border-color:var(--color-border)}body{background-color:var(--color-background);font-family:var(--font-sans);color:var(--color-foreground);font-feature-settings:"rlig" 1,"calt" 1}html{scroll-behavior:smooth}}@layer components;@layer utilities{.pointer-events-none{pointer-events:none}.collapse{visibility:collapse}.invisible{visibility:hidden}.visible{visibility:visible}.sr-only{clip-path:inset(50%);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.not-sr-only{clip-path:none;white-space:normal;width:auto;height:auto;margin:0;padding:0;position:static;overflow:visible}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.inset-0{inset:calc(var(--spacing)*0)}.-top-10{top:calc(var(--spacing)*-10)}.-top-16{top:calc(var(--spacing)*-16)}.-top-24{top:calc(var(--spacing)*-24)}.top-0{top:calc(var(--spacing)*0)}.top-1\/2{top:50%}.top-1\/4{top:25%}.top-2{top:calc(var(--spacing)*2)}.top-\[-5\%\]{top:-5%}.top-\[20\%\]{top:20%}.-right-10{right:calc(var(--spacing)*-10)}.-right-16{right:calc(var(--spacing)*-16)}.-right-20{right:calc(var(--spacing)*-20)}.-right-24{right:calc(var(--spacing)*-24)}.right-0{right:calc(var(--spacing)*0)}.right-1\/3{right:33.3333%}.right-2{right:calc(var(--spacing)*2)}.right-6{right:calc(var(--spacing)*6)}.right-8{right:calc(var(--spacing)*8)}.right-\[-10\%\]{right:-10%}.-bottom-16{bottom:calc(var(--spacing)*-16)}.bottom-0{bottom:calc(var(--spacing)*0)}.bottom-1\/4{bottom:25%}.bottom-6{bottom:calc(var(--spacing)*6)}.bottom-8{bottom:calc(var(--spacing)*8)}.bottom-full{bottom:100%}.-left-10{left:calc(var(--spacing)*-10)}.-left-20{left:calc(var(--spacing)*-20)}.left-0{left:calc(var(--spacing)*0)}.left-1\/2{left:50%}.left-6{left:calc(var(--spacing)*6)}.left-\[-5\%\]{left:-5%}.isolate{isolation:isolate}.isolation-auto{isolation:auto}.-z-10{z-index:calc(10*-1)}.z-10{z-index:10}.z-40{z-index:40}.z-50{z-index:50}.z-\[60\]{z-index:60}.z-\[100\]{z-index:100}.container{width:100%}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:48rem){.container{max-width:48rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:96rem){.container{max-width:96rem}}.mx-auto{margin-inline:auto}.-mt-8{margin-top:calc(var(--spacing)*-8)}.-mt-32{margin-top:calc(var(--spacing)*-32)}.mt-0\.5{margin-top:calc(var(--spacing)*.5)}.mt-1{margin-top:calc(var(--spacing)*1)}.mt-3{margin-top:calc(var(--spacing)*3)}.mt-4{margin-top:calc(var(--spacing)*4)}.mt-5{margin-top:calc(var(--spacing)*5)}.mt-6{margin-top:calc(var(--spacing)*6)}.mt-8{margin-top:calc(var(--spacing)*8)}.mt-12{margin-top:calc(var(--spacing)*12)}.mt-24{margin-top:calc(var(--spacing)*24)}.mt-32{margin-top:calc(var(--spacing)*32)}.-mr-32{margin-right:calc(var(--spacing)*-32)}.mr-2{margin-right:calc(var(--spacing)*2)}.mr-3{margin-right:calc(var(--spacing)*3)}.mb-1{margin-bottom:calc(var(--spacing)*1)}.mb-2{margin-bottom:calc(var(--spacing)*2)}.mb-3{margin-bottom:calc(var(--spacing)*3)}.mb-4{margin-bottom:calc(var(--spacing)*4)}.mb-6{margin-bottom:calc(var(--spacing)*6)}.mb-8{margin-bottom:calc(var(--spacing)*8)}.mb-10{margin-bottom:calc(var(--spacing)*10)}.mb-14{margin-bottom:calc(var(--spacing)*14)}.mb-16{margin-bottom:calc(var(--spacing)*16)}.mb-24{margin-bottom:calc(var(--spacing)*24)}.ml-1{margin-left:calc(var(--spacing)*1)}.ml-2{margin-left:calc(var(--spacing)*2)}.\[display\:-webkit-box\]{display:-webkit-box}.block{display:block}.contents{display:contents}.flex{display:flex}.flow-root{display:flow-root}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.inline-grid{display:inline-grid}.inline-table{display:inline-table}.list-item{display:list-item}.table{display:table}.table-caption{display:table-caption}.table-cell{display:table-cell}.table-column{display:table-column}.table-column-group{display:table-column-group}.table-footer-group{display:table-footer-group}.table-header-group{display:table-header-group}.table-row{display:table-row}.table-row-group{display:table-row-group}.aspect-\[9\/16\]{aspect-ratio:9/16}.aspect-\[16\/9\]{aspect-ratio:16/9}.aspect-square{aspect-ratio:1}.aspect-video{aspect-ratio:var(--aspect-video)}.h-1\.5{height:calc(var(--spacing)*1.5)}.h-2{height:calc(var(--spacing)*2)}.h-3{height:calc(var(--spacing)*3)}.h-4{height:calc(var(--spacing)*4)}.h-5{height:calc(var(--spacing)*5)}.h-6{height:calc(var(--spacing)*6)}.h-8{height:calc(var(--spacing)*8)}.h-9{height:calc(var(--spacing)*9)}.h-10{height:calc(var(--spacing)*10)}.h-11{height:calc(var(--spacing)*11)}.h-12{height:calc(var(--spacing)*12)}.h-14{height:calc(var(--spacing)*14)}.h-16{height:calc(var(--spacing)*16)}.h-20{height:calc(var(--spacing)*20)}.h-24{height:calc(var(--spacing)*24)}.h-40{height:calc(var(--spacing)*40)}.h-64{height:calc(var(--spacing)*64)}.h-80{height:calc(var(--spacing)*80)}.h-96{height:calc(var(--spacing)*96)}.h-\[20vh\]{height:20vh}.h-\[40\%\]{height:40%}.h-\[50\%\]{height:50%}.h-\[90px\]{height:90px}.h-\[100px\]{height:100px}.h-\[280px\]{height:280px}.h-\[360px\]{height:360px}.h-\[420px\]{height:420px}.h-\[500px\]{height:500px}.h-full{height:100%}.h-px{height:1px}.min-h-\[80px\]{min-height:80px}.min-h-\[150px\]{min-height:150px}.min-h-screen{min-height:100vh}.w-1\.5{width:calc(var(--spacing)*1.5)}.w-2{width:calc(var(--spacing)*2)}.w-3{width:calc(var(--spacing)*3)}.w-4{width:calc(var(--spacing)*4)}.w-5{width:calc(var(--spacing)*5)}.w-6{width:calc(var(--spacing)*6)}.w-8{width:calc(var(--spacing)*8)}.w-9{width:calc(var(--spacing)*9)}.w-10{width:calc(var(--spacing)*10)}.w-12{width:calc(var(--spacing)*12)}.w-14{width:calc(var(--spacing)*14)}.w-16{width:calc(var(--spacing)*16)}.w-20{width:calc(var(--spacing)*20)}.w-24{width:calc(var(--spacing)*24)}.w-32{width:calc(var(--spacing)*32)}.w-40{width:calc(var(--spacing)*40)}.w-48{width:calc(var(--spacing)*48)}.w-52{width:calc(var(--spacing)*52)}.w-56{width:calc(var(--spacing)*56)}.w-64{width:calc(var(--spacing)*64)}.w-80{width:calc(var(--spacing)*80)}.w-96{width:calc(var(--spacing)*96)}.w-\[40\%\]{width:40%}.w-\[50\%\]{width:50%}.w-\[280px\]{width:280px}.w-\[360px\]{width:360px}.w-\[420px\]{width:420px}.w-\[500px\]{width:500px}.w-fit{width:fit-content}.w-full{width:100%}.max-w-2xl{max-width:var(--container-2xl)}.max-w-4xl{max-width:var(--container-4xl)}.max-w-5xl{max-width:var(--container-5xl)}.max-w-6xl{max-width:var(--container-6xl)}.max-w-7xl{max-width:var(--container-7xl)}.max-w-\[325px\]{max-width:325px}.max-w-lg{max-width:var(--container-lg)}.max-w-md{max-width:var(--container-md)}.max-w-xl{max-width:var(--container-xl)}.max-w-xs{max-width:var(--container-xs)}.flex-1{flex:1}.flex-shrink-0{flex-shrink:0}.shrink{flex-shrink:1}.shrink-0{flex-shrink:0}.grow{flex-grow:1}.border-collapse{border-collapse:collapse}.origin-bottom-left{transform-origin:0 100%}.-translate-x-1\/2{--tw-translate-x:calc(calc(1/2*100%)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.-translate-y-1\/2{--tw-translate-y:calc(calc(1/2*100%)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-1\/2{--tw-translate-y:calc(1/2*100%);translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-none{translate:none}.scale-110{--tw-scale-x:110%;--tw-scale-y:110%;--tw-scale-z:110%;scale:var(--tw-scale-x)var(--tw-scale-y)}.scale-3d{scale:var(--tw-scale-x)var(--tw-scale-y)var(--tw-scale-z)}.-rotate-2{rotate:-2deg}.-rotate-3{rotate:-3deg}.-rotate-6{rotate:-6deg}.rotate-6{rotate:6deg}.rotate-180{rotate:180deg}.-skew-y-2{--tw-skew-y:skewY(calc(2deg*-1));transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.-skew-y-3{--tw-skew-y:skewY(calc(3deg*-1));transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.transform{transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.animate-pulse{animation:var(--animate-pulse)}.animate-spin{animation:var(--animate-spin)}.cursor-help{cursor:help}.cursor-pointer{cursor:pointer}.touch-pinch-zoom{--tw-pinch-zoom:pinch-zoom;touch-action:var(--tw-pan-x,)var(--tw-pan-y,)var(--tw-pinch-zoom,)}.resize{resize:both}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.items-start{align-items:flex-start}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.gap-1{gap:calc(var(--spacing)*1)}.gap-2{gap:calc(var(--spacing)*2)}.gap-3{gap:calc(var(--spacing)*3)}.gap-4{gap:calc(var(--spacing)*4)}.gap-6{gap:calc(var(--spacing)*6)}.gap-8{gap:calc(var(--spacing)*8)}.gap-10{gap:calc(var(--spacing)*10)}.gap-12{gap:calc(var(--spacing)*12)}.gap-16{gap:calc(var(--spacing)*16)}:where(.space-y-1>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*1)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-1\.5>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*1.5)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*1.5)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*2)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-3>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*3)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*3)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-4>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*4)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*4)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-5>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*5)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*5)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-6>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*6)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*6)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-8>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*8)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*8)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-12>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*12)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*12)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-16>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*16)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*16)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-reverse>:not(:last-child)){--tw-space-y-reverse:1}.gap-x-8{column-gap:calc(var(--spacing)*8)}.gap-x-12{column-gap:calc(var(--spacing)*12)}:where(.space-x-1>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*1)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-x-reverse)))}:where(.space-x-2>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*2)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-x-reverse)))}:where(.space-x-3>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*3)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*3)*calc(1 - var(--tw-space-x-reverse)))}:where(.space-x-4>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*4)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*4)*calc(1 - var(--tw-space-x-reverse)))}:where(.space-x-8>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*8)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*8)*calc(1 - var(--tw-space-x-reverse)))}:where(.space-x-reverse>:not(:last-child)){--tw-space-x-reverse:1}.gap-y-2{row-gap:calc(var(--spacing)*2)}.gap-y-4{row-gap:calc(var(--spacing)*4)}:where(.divide-x>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)))}:where(.divide-y>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)))}:where(.divide-y-reverse>:not(:last-child)){--tw-divide-y-reverse:1}:where(.divide-slate-100>:not(:last-child)){border-color:var(--color-slate-100)}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.scroll-smooth{scroll-behavior:smooth}.rounded-2xl{border-radius:var(--radius-2xl)}.rounded-3xl{border-radius:var(--radius-3xl)}.rounded-\[1\.5rem\]{border-radius:1.5rem}.rounded-\[2\.5rem\]{border-radius:2.5rem}.rounded-\[2rem\]{border-radius:2rem}.rounded-\[3\.5rem\]{border-radius:3.5rem}.rounded-\[3rem\]{border-radius:3rem}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius-lg)}.rounded-md{border-radius:var(--radius-md)}.rounded-xl{border-radius:var(--radius-xl)}.rounded-s{border-start-start-radius:.25rem;border-end-start-radius:.25rem}.rounded-ss{border-start-start-radius:.25rem}.rounded-e{border-start-end-radius:.25rem;border-end-end-radius:.25rem}.rounded-se{border-start-end-radius:.25rem}.rounded-ee{border-end-end-radius:.25rem}.rounded-es{border-end-start-radius:.25rem}.rounded-t{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.rounded-l{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.rounded-tl{border-top-left-radius:.25rem}.rounded-r{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.rounded-tr{border-top-right-radius:.25rem}.rounded-b{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.rounded-br{border-bottom-right-radius:.25rem}.rounded-bl{border-bottom-left-radius:.25rem}.border{border-style:var(--tw-border-style);border-width:1px}.border-2{border-style:var(--tw-border-style);border-width:2px}.border-x{border-inline-style:var(--tw-border-style);border-inline-width:1px}.border-y{border-block-style:var(--tw-border-style);border-block-width:1px}.border-s{border-inline-start-style:var(--tw-border-style);border-inline-start-width:1px}.border-e{border-inline-end-style:var(--tw-border-style);border-inline-end-width:1px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-r{border-right-style:var(--tw-border-style);border-right-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-none{--tw-border-style:none;border-style:none}.border-blue-100{border-color:var(--color-blue-100)}.border-input{border-color:var(--color-input)}.border-secondary\/40{border-color:color-mix(in srgb,hsl(var(--secondary))40%,transparent)}@supports (color:color-mix(in lab, red, red)){.border-secondary\/40{border-color:color-mix(in oklab,var(--color-secondary)40%,transparent)}}.border-slate-50{border-color:var(--color-slate-50)}.border-slate-100{border-color:var(--color-slate-100)}.border-slate-200{border-color:var(--color-slate-200)}.border-slate-200\/60{border-color:#e2e8f099}@supports (color:color-mix(in lab, red, red)){.border-slate-200\/60{border-color:color-mix(in oklab,var(--color-slate-200)60%,transparent)}}.border-slate-200\/70{border-color:#e2e8f0b3}@supports (color:color-mix(in lab, red, red)){.border-slate-200\/70{border-color:color-mix(in oklab,var(--color-slate-200)70%,transparent)}}.border-slate-800\/80{border-color:#1d293dcc}@supports (color:color-mix(in lab, red, red)){.border-slate-800\/80{border-color:color-mix(in oklab,var(--color-slate-800)80%,transparent)}}.border-white\/5{border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.border-white\/5{border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.border-white\/10{border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.border-white\/10{border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.border-white\/20{border-color:#fff3}@supports (color:color-mix(in lab, red, red)){.border-white\/20{border-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.border-white\/30{border-color:#ffffff4d}@supports (color:color-mix(in lab, red, red)){.border-white\/30{border-color:color-mix(in oklab,var(--color-white)30%,transparent)}}.border-t-white{border-top-color:var(--color-white)}.bg-\[\#4D69A1\]{background-color:#4d69a1}.bg-\[\#D9A321\]{background-color:#d9a321}.bg-\[\#fafaf9\]{background-color:#fafaf9}.bg-background{background-color:var(--color-background)}.bg-black{background-color:var(--color-black)}.bg-black\/50{background-color:#00000080}@supports (color:color-mix(in lab, red, red)){.bg-black\/50{background-color:color-mix(in oklab,var(--color-black)50%,transparent)}}.bg-blue-50{background-color:var(--color-blue-50)}.bg-blue-100{background-color:var(--color-blue-100)}.bg-blue-200{background-color:var(--color-blue-200)}.bg-blue-500{background-color:var(--color-blue-500)}.bg-blue-500\/5{background-color:#3080ff0d}@supports (color:color-mix(in lab, red, red)){.bg-blue-500\/5{background-color:color-mix(in oklab,var(--color-blue-500)5%,transparent)}}.bg-blue-500\/10{background-color:#3080ff1a}@supports (color:color-mix(in lab, red, red)){.bg-blue-500\/10{background-color:color-mix(in oklab,var(--color-blue-500)10%,transparent)}}.bg-blue-600{background-color:var(--color-blue-600)}.bg-card{background-color:var(--color-card)}.bg-cyan-500{background-color:var(--color-cyan-500)}.bg-cyan-500\/10{background-color:#00b7d71a}@supports (color:color-mix(in lab, red, red)){.bg-cyan-500\/10{background-color:color-mix(in oklab,var(--color-cyan-500)10%,transparent)}}.bg-destructive{background-color:var(--color-destructive)}.bg-green-50{background-color:var(--color-green-50)}.bg-green-100{background-color:var(--color-green-100)}.bg-green-500{background-color:var(--color-green-500)}.bg-green-500\/10{background-color:#00c7581a}@supports (color:color-mix(in lab, red, red)){.bg-green-500\/10{background-color:color-mix(in oklab,var(--color-green-500)10%,transparent)}}.bg-orange-100{background-color:var(--color-orange-100)}.bg-orange-500\/10{background-color:#fe6e001a}@supports (color:color-mix(in lab, red, red)){.bg-orange-500\/10{background-color:color-mix(in oklab,var(--color-orange-500)10%,transparent)}}.bg-pink-100{background-color:var(--color-pink-100)}.bg-pink-500\/10{background-color:#f6339a1a}@supports (color:color-mix(in lab, red, red)){.bg-pink-500\/10{background-color:color-mix(in oklab,var(--color-pink-500)10%,transparent)}}.bg-primary{background-color:var(--color-primary)}.bg-primary\/5{background-color:color-mix(in srgb,hsl(var(--primary))5%,transparent)}@supports (color:color-mix(in lab, red, red)){.bg-primary\/5{background-color:color-mix(in oklab,var(--color-primary)5%,transparent)}}.bg-primary\/10{background-color:color-mix(in srgb,hsl(var(--primary))10%,transparent)}@supports (color:color-mix(in lab, red, red)){.bg-primary\/10{background-color:color-mix(in oklab,var(--color-primary)10%,transparent)}}.bg-primary\/20{background-color:color-mix(in srgb,hsl(var(--primary))20%,transparent)}@supports (color:color-mix(in lab, red, red)){.bg-primary\/20{background-color:color-mix(in oklab,var(--color-primary)20%,transparent)}}.bg-purple-50{background-color:var(--color-purple-50)}.bg-purple-100{background-color:var(--color-purple-100)}.bg-purple-200{background-color:var(--color-purple-200)}.bg-purple-500{background-color:var(--color-purple-500)}.bg-purple-500\/10{background-color:#ac4bff1a}@supports (color:color-mix(in lab, red, red)){.bg-purple-500\/10{background-color:color-mix(in oklab,var(--color-purple-500)10%,transparent)}}.bg-red-50{background-color:var(--color-red-50)}.bg-secondary{background-color:var(--color-secondary)}.bg-secondary\/5{background-color:color-mix(in srgb,hsl(var(--secondary))5%,transparent)}@supports (color:color-mix(in lab, red, red)){.bg-secondary\/5{background-color:color-mix(in oklab,var(--color-secondary)5%,transparent)}}.bg-secondary\/10{background-color:color-mix(in srgb,hsl(var(--secondary))10%,transparent)}@supports (color:color-mix(in lab, red, red)){.bg-secondary\/10{background-color:color-mix(in oklab,var(--color-secondary)10%,transparent)}}.bg-slate-50{background-color:var(--color-slate-50)}.bg-slate-50\/20{background-color:#f8fafc33}@supports (color:color-mix(in lab, red, red)){.bg-slate-50\/20{background-color:color-mix(in oklab,var(--color-slate-50)20%,transparent)}}.bg-slate-50\/30{background-color:#f8fafc4d}@supports (color:color-mix(in lab, red, red)){.bg-slate-50\/30{background-color:color-mix(in oklab,var(--color-slate-50)30%,transparent)}}.bg-slate-50\/50{background-color:#f8fafc80}@supports (color:color-mix(in lab, red, red)){.bg-slate-50\/50{background-color:color-mix(in oklab,var(--color-slate-50)50%,transparent)}}.bg-slate-100{background-color:var(--color-slate-100)}.bg-slate-200{background-color:var(--color-slate-200)}.bg-slate-200\/40{background-color:#e2e8f066}@supports (color:color-mix(in lab, red, red)){.bg-slate-200\/40{background-color:color-mix(in oklab,var(--color-slate-200)40%,transparent)}}.bg-slate-200\/70{background-color:#e2e8f0b3}@supports (color:color-mix(in lab, red, red)){.bg-slate-200\/70{background-color:color-mix(in oklab,var(--color-slate-200)70%,transparent)}}.bg-slate-900{background-color:var(--color-slate-900)}.bg-slate-950{background-color:var(--color-slate-950)}.bg-slate-950\/70{background-color:#020618b3}@supports (color:color-mix(in lab, red, red)){.bg-slate-950\/70{background-color:color-mix(in oklab,var(--color-slate-950)70%,transparent)}}.bg-slate-950\/95{background-color:#020618f2}@supports (color:color-mix(in lab, red, red)){.bg-slate-950\/95{background-color:color-mix(in oklab,var(--color-slate-950)95%,transparent)}}.bg-transparent{background-color:#0000}.bg-white{background-color:var(--color-white)}.bg-white\/5{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.bg-white\/5{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.bg-white\/10{background-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.bg-white\/10{background-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.bg-white\/80{background-color:#fffc}@supports (color:color-mix(in lab, red, red)){.bg-white\/80{background-color:color-mix(in oklab,var(--color-white)80%,transparent)}}.bg-white\/95{background-color:#fffffff2}@supports (color:color-mix(in lab, red, red)){.bg-white\/95{background-color:color-mix(in oklab,var(--color-white)95%,transparent)}}.bg-gradient-to-b{--tw-gradient-position:to bottom in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.bg-gradient-to-br{--tw-gradient-position:to bottom right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.bg-gradient-to-r{--tw-gradient-position:to right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.bg-gradient-to-t{--tw-gradient-position:to top in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.from-black\/80{--tw-gradient-from:#000c}@supports (color:color-mix(in lab, red, red)){.from-black\/80{--tw-gradient-from:color-mix(in oklab,var(--color-black)80%,transparent)}}.from-black\/80{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-black\/90{--tw-gradient-from:#000000e6}@supports (color:color-mix(in lab, red, red)){.from-black\/90{--tw-gradient-from:color-mix(in oklab,var(--color-black)90%,transparent)}}.from-black\/90{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-blue-600\/20{--tw-gradient-from:#155dfc33}@supports (color:color-mix(in lab, red, red)){.from-blue-600\/20{--tw-gradient-from:color-mix(in oklab,var(--color-blue-600)20%,transparent)}}.from-blue-600\/20{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-pink-600\/20{--tw-gradient-from:#e3007633}@supports (color:color-mix(in lab, red, red)){.from-pink-600\/20{--tw-gradient-from:color-mix(in oklab,var(--color-pink-600)20%,transparent)}}.from-pink-600\/20{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-primary{--tw-gradient-from:var(--color-primary);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-secondary{--tw-gradient-from:var(--color-secondary);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-slate-900{--tw-gradient-from:var(--color-slate-900);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-slate-950{--tw-gradient-from:var(--color-slate-950);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-white\/95{--tw-gradient-from:#fffffff2}@supports (color:color-mix(in lab, red, red)){.from-white\/95{--tw-gradient-from:color-mix(in oklab,var(--color-white)95%,transparent)}}.from-white\/95{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.via-black\/20{--tw-gradient-via:#0003}@supports (color:color-mix(in lab, red, red)){.via-black\/20{--tw-gradient-via:color-mix(in oklab,var(--color-black)20%,transparent)}}.via-black\/20{--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.via-black\/50{--tw-gradient-via:#00000080}@supports (color:color-mix(in lab, red, red)){.via-black\/50{--tw-gradient-via:color-mix(in oklab,var(--color-black)50%,transparent)}}.via-black\/50{--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.via-slate-900{--tw-gradient-via:var(--color-slate-900);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.via-white\/80{--tw-gradient-via:#fffc}@supports (color:color-mix(in lab, red, red)){.via-white\/80{--tw-gradient-via:color-mix(in oklab,var(--color-white)80%,transparent)}}.via-white\/80{--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.to-cyan-400\/20{--tw-gradient-to:#00d2ef33}@supports (color:color-mix(in lab, red, red)){.to-cyan-400\/20{--tw-gradient-to:color-mix(in oklab,var(--color-cyan-400)20%,transparent)}}.to-cyan-400\/20{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-primary{--tw-gradient-to:var(--color-primary);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-purple-600\/20{--tw-gradient-to:#9810fa33}@supports (color:color-mix(in lab, red, red)){.to-purple-600\/20{--tw-gradient-to:color-mix(in oklab,var(--color-purple-600)20%,transparent)}}.to-purple-600\/20{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-secondary{--tw-gradient-to:var(--color-secondary);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-slate-800{--tw-gradient-to:var(--color-slate-800);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-slate-900{--tw-gradient-to:var(--color-slate-900);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-transparent{--tw-gradient-to:transparent;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-white\/95{--tw-gradient-to:#fffffff2}@supports (color:color-mix(in lab, red, red)){.to-white\/95{--tw-gradient-to:color-mix(in oklab,var(--color-white)95%,transparent)}}.to-white\/95{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.bg-repeat{background-repeat:repeat}.mask-no-clip{-webkit-mask-clip:no-clip;mask-clip:no-clip}.mask-repeat{-webkit-mask-repeat:repeat;mask-repeat:repeat}.fill-primary{fill:var(--color-primary)}.fill-white{fill:var(--color-white)}.fill-yellow-500{fill:var(--color-yellow-500)}.object-contain{object-fit:contain}.object-cover{object-fit:cover}.p-1{padding:calc(var(--spacing)*1)}.p-2{padding:calc(var(--spacing)*2)}.p-2\.5{padding:calc(var(--spacing)*2.5)}.p-3{padding:calc(var(--spacing)*3)}.p-4{padding:calc(var(--spacing)*4)}.p-5{padding:calc(var(--spacing)*5)}.p-6{padding:calc(var(--spacing)*6)}.p-8{padding:calc(var(--spacing)*8)}.p-10{padding:calc(var(--spacing)*10)}.p-12{padding:calc(var(--spacing)*12)}.p-16{padding:calc(var(--spacing)*16)}.px-1{padding-inline:calc(var(--spacing)*1)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-3{padding-inline:calc(var(--spacing)*3)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-5{padding-inline:calc(var(--spacing)*5)}.px-6{padding-inline:calc(var(--spacing)*6)}.px-8{padding-inline:calc(var(--spacing)*8)}.px-10{padding-inline:calc(var(--spacing)*10)}.px-12{padding-inline:calc(var(--spacing)*12)}.py-1{padding-block:calc(var(--spacing)*1)}.py-1\.5{padding-block:calc(var(--spacing)*1.5)}.py-2{padding-block:calc(var(--spacing)*2)}.py-3{padding-block:calc(var(--spacing)*3)}.py-4{padding-block:calc(var(--spacing)*4)}.py-5{padding-block:calc(var(--spacing)*5)}.py-6{padding-block:calc(var(--spacing)*6)}.py-8{padding-block:calc(var(--spacing)*8)}.py-12{padding-block:calc(var(--spacing)*12)}.py-16{padding-block:calc(var(--spacing)*16)}.py-24{padding-block:calc(var(--spacing)*24)}.py-32{padding-block:calc(var(--spacing)*32)}.pt-0{padding-top:calc(var(--spacing)*0)}.pt-2{padding-top:calc(var(--spacing)*2)}.pt-4{padding-top:calc(var(--spacing)*4)}.pt-8{padding-top:calc(var(--spacing)*8)}.pt-10{padding-top:calc(var(--spacing)*10)}.pt-12{padding-top:calc(var(--spacing)*12)}.pt-20{padding-top:calc(var(--spacing)*20)}.pt-24{padding-top:calc(var(--spacing)*24)}.pt-32{padding-top:calc(var(--spacing)*32)}.pt-40{padding-top:calc(var(--spacing)*40)}.pb-4{padding-bottom:calc(var(--spacing)*4)}.pb-6{padding-bottom:calc(var(--spacing)*6)}.pb-8{padding-bottom:calc(var(--spacing)*8)}.pb-20{padding-bottom:calc(var(--spacing)*20)}.pb-32{padding-bottom:calc(var(--spacing)*32)}.pl-12{padding-left:calc(var(--spacing)*12)}.text-center{text-align:center}.text-left{text-align:left}.text-right{text-align:right}.font-sans{font-family:var(--font-sans)}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.text-4xl{font-size:var(--text-4xl);line-height:var(--tw-leading,var(--text-4xl--line-height))}.text-5xl{font-size:var(--text-5xl);line-height:var(--tw-leading,var(--text-5xl--line-height))}.text-6xl{font-size:var(--text-6xl);line-height:var(--tw-leading,var(--text-6xl--line-height))}.text-7xl{font-size:var(--text-7xl);line-height:var(--tw-leading,var(--text-7xl--line-height))}.text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.text-\[8px\]{font-size:8px}.text-\[9px\]{font-size:9px}.text-\[10px\]{font-size:10px}.text-\[11px\]{font-size:11px}.text-\[14px\]{font-size:14px}.leading-\[0\.9\]{--tw-leading:.9;line-height:.9}.leading-\[0\.85\]{--tw-leading:.85;line-height:.85}.leading-none{--tw-leading:1;line-height:1}.leading-relaxed{--tw-leading:var(--leading-relaxed);line-height:var(--leading-relaxed)}.leading-tight{--tw-leading:var(--leading-tight);line-height:var(--leading-tight)}.font-black{--tw-font-weight:var(--font-weight-black);font-weight:var(--font-weight-black)}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-extrabold{--tw-font-weight:var(--font-weight-extrabold);font-weight:var(--font-weight-extrabold)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.tracking-\[0\.1em\]{--tw-tracking:.1em;letter-spacing:.1em}.tracking-\[0\.2em\]{--tw-tracking:.2em;letter-spacing:.2em}.tracking-\[0\.3em\]{--tw-tracking:.3em;letter-spacing:.3em}.tracking-\[0\.4em\]{--tw-tracking:.4em;letter-spacing:.4em}.tracking-\[0\.5em\]{--tw-tracking:.5em;letter-spacing:.5em}.tracking-\[0\.08em\]{--tw-tracking:.08em;letter-spacing:.08em}.tracking-\[0\.25em\]{--tw-tracking:.25em;letter-spacing:.25em}.tracking-\[0\.35em\]{--tw-tracking:.35em;letter-spacing:.35em}.tracking-normal{--tw-tracking:var(--tracking-normal);letter-spacing:var(--tracking-normal)}.tracking-tight{--tw-tracking:var(--tracking-tight);letter-spacing:var(--tracking-tight)}.tracking-tighter{--tw-tracking:var(--tracking-tighter);letter-spacing:var(--tracking-tighter)}.tracking-wide{--tw-tracking:var(--tracking-wide);letter-spacing:var(--tracking-wide)}.tracking-wider{--tw-tracking:var(--tracking-wider);letter-spacing:var(--tracking-wider)}.tracking-widest{--tw-tracking:var(--tracking-widest);letter-spacing:var(--tracking-widest)}.text-wrap{text-wrap:wrap}.text-clip{text-overflow:clip}.text-ellipsis{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.text-blue-500{color:var(--color-blue-500)}.text-blue-600{color:var(--color-blue-600)}.text-blue-950{color:var(--color-blue-950)}.text-card-foreground{color:var(--color-card-foreground)}.text-cyan-500{color:var(--color-cyan-500)}.text-destructive-foreground{color:var(--color-destructive-foreground)}.text-green-500{color:var(--color-green-500)}.text-muted{color:var(--color-muted)}.text-muted-foreground{color:var(--color-muted-foreground)}.text-orange-500{color:var(--color-orange-500)}.text-pink-500{color:var(--color-pink-500)}.text-primary{color:var(--color-primary)}.text-primary-foreground{color:var(--color-primary-foreground)}.text-purple-500{color:var(--color-purple-500)}.text-red-600{color:var(--color-red-600)}.text-secondary{color:var(--color-secondary)}.text-secondary-foreground{color:var(--color-secondary-foreground)}.text-secondary\/40{color:color-mix(in srgb,hsl(var(--secondary))40%,transparent)}@supports (color:color-mix(in lab, red, red)){.text-secondary\/40{color:color-mix(in oklab,var(--color-secondary)40%,transparent)}}.text-secondary\/80{color:color-mix(in srgb,hsl(var(--secondary))80%,transparent)}@supports (color:color-mix(in lab, red, red)){.text-secondary\/80{color:color-mix(in oklab,var(--color-secondary)80%,transparent)}}.text-slate-300{color:var(--color-slate-300)}.text-slate-400{color:var(--color-slate-400)}.text-slate-500{color:var(--color-slate-500)}.text-slate-600{color:var(--color-slate-600)}.text-slate-700{color:var(--color-slate-700)}.text-slate-800{color:var(--color-slate-800)}.text-slate-900{color:var(--color-slate-900)}.text-slate-900\/10{color:#0f172b1a}@supports (color:color-mix(in lab, red, red)){.text-slate-900\/10{color:color-mix(in oklab,var(--color-slate-900)10%,transparent)}}.text-white{color:var(--color-white)}.text-white\/40{color:#fff6}@supports (color:color-mix(in lab, red, red)){.text-white\/40{color:color-mix(in oklab,var(--color-white)40%,transparent)}}.text-white\/50{color:#ffffff80}@supports (color:color-mix(in lab, red, red)){.text-white\/50{color:color-mix(in oklab,var(--color-white)50%,transparent)}}.text-white\/60{color:#fff9}@supports (color:color-mix(in lab, red, red)){.text-white\/60{color:color-mix(in oklab,var(--color-white)60%,transparent)}}.text-white\/70{color:#ffffffb3}@supports (color:color-mix(in lab, red, red)){.text-white\/70{color:color-mix(in oklab,var(--color-white)70%,transparent)}}.text-white\/80{color:#fffc}@supports (color:color-mix(in lab, red, red)){.text-white\/80{color:color-mix(in oklab,var(--color-white)80%,transparent)}}.text-white\/85{color:#ffffffd9}@supports (color:color-mix(in lab, red, red)){.text-white\/85{color:color-mix(in oklab,var(--color-white)85%,transparent)}}.text-white\/90{color:#ffffffe6}@supports (color:color-mix(in lab, red, red)){.text-white\/90{color:color-mix(in oklab,var(--color-white)90%,transparent)}}.text-yellow-300{color:var(--color-yellow-300)}.text-yellow-500{color:var(--color-yellow-500)}.capitalize{text-transform:capitalize}.lowercase{text-transform:lowercase}.normal-case{text-transform:none}.uppercase{text-transform:uppercase}.italic{font-style:italic}.not-italic{font-style:normal}.diagonal-fractions{--tw-numeric-fraction:diagonal-fractions;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.lining-nums{--tw-numeric-figure:lining-nums;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.oldstyle-nums{--tw-numeric-figure:oldstyle-nums;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.ordinal{--tw-ordinal:ordinal;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.proportional-nums{--tw-numeric-spacing:proportional-nums;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.slashed-zero{--tw-slashed-zero:slashed-zero;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.stacked-fractions{--tw-numeric-fraction:stacked-fractions;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.tabular-nums{--tw-numeric-spacing:tabular-nums;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.normal-nums{font-variant-numeric:normal}.line-through{text-decoration-line:line-through}.no-underline{text-decoration-line:none}.overline{text-decoration-line:overline}.underline{text-decoration-line:underline}.decoration-primary{-webkit-text-decoration-color:var(--color-primary);-webkit-text-decoration-color:var(--color-primary);-webkit-text-decoration-color:var(--color-primary);text-decoration-color:var(--color-primary)}.decoration-4{text-decoration-thickness:4px}.decoration-8{text-decoration-thickness:8px}.underline-offset-4{text-underline-offset:4px}.underline-offset-8{text-underline-offset:8px}.underline-offset-\[12px\]{text-underline-offset:12px}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.subpixel-antialiased{-webkit-font-smoothing:auto;-moz-osx-font-smoothing:auto}.opacity-0{opacity:0}.opacity-10{opacity:.1}.opacity-20{opacity:.2}.opacity-30{opacity:.3}.opacity-35{opacity:.35}.opacity-40{opacity:.4}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-80{opacity:.8}.opacity-90{opacity:.9}.opacity-100{opacity:1}.shadow{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-2xl{--tw-shadow:0 25px 50px -12px var(--tw-shadow-color,#00000040);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[0_0_10px_rgba\(217\,163\,33\,0\.5\)\]{--tw-shadow:0 0 10px var(--tw-shadow-color,#d9a32180);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[0_0_10px_rgba\(217\,163\,33\,0\.6\)\]{--tw-shadow:0 0 10px var(--tw-shadow-color,#d9a32199);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[0_20px_40px_-10px_rgba\(217\,163\,33\,0\.3\)\]{--tw-shadow:0 20px 40px -10px var(--tw-shadow-color,#d9a3214d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[0_20px_40px_rgba\(15\,23\,42\,0\.15\)\]{--tw-shadow:0 20px 40px var(--tw-shadow-color,#0f172a26);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[0_30px_80px_rgba\(15\,23\,42\,0\.6\)\]{--tw-shadow:0 30px 80px var(--tw-shadow-color,#0f172a99);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[0_32px_64px_-16px_rgba\(0\,0\,0\,0\.08\)\]{--tw-shadow:0 32px 64px -16px var(--tw-shadow-color,#00000014);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xl{--tw-shadow:0 20px 25px -5px var(--tw-shadow-color,#0000001a),0 8px 10px -6px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-1{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.inset-ring{--tw-inset-ring-shadow:inset 0 0 0 1px var(--tw-inset-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-blue-600\/20{--tw-shadow-color:#155dfc33}@supports (color:color-mix(in lab, red, red)){.shadow-blue-600\/20{--tw-shadow-color:color-mix(in oklab,color-mix(in oklab,var(--color-blue-600)20%,transparent)var(--tw-shadow-alpha),transparent)}}.shadow-primary\/20{--tw-shadow-color:color-mix(in srgb,hsl(var(--primary))20%,transparent)}@supports (color:color-mix(in lab, red, red)){.shadow-primary\/20{--tw-shadow-color:color-mix(in oklab,color-mix(in oklab,var(--color-primary)20%,transparent)var(--tw-shadow-alpha),transparent)}}.ring-orange-200\/70{--tw-ring-color:#ffd7a8b3}@supports (color:color-mix(in lab, red, red)){.ring-orange-200\/70{--tw-ring-color:color-mix(in oklab,var(--color-orange-200)70%,transparent)}}.ring-offset-background{--tw-ring-offset-color:var(--color-background)}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.blur{--tw-blur:blur(8px);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.blur-3xl{--tw-blur:blur(var(--blur-3xl));filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.blur-\[2px\]{--tw-blur:blur(2px);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.blur-\[120px\]{--tw-blur:blur(120px);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.blur-\[140px\]{--tw-blur:blur(140px);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.drop-shadow{--tw-drop-shadow-size:drop-shadow(0 1px 2px var(--tw-drop-shadow-color,#0000001a))drop-shadow(0 1px 1px var(--tw-drop-shadow-color,#0000000f));--tw-drop-shadow:drop-shadow(0 1px 2px #0000001a)drop-shadow(0 1px 1px #0000000f);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.filter{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.backdrop-blur{--tw-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-blur-\[1px\]{--tw-backdrop-blur:blur(1px);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-blur-md{--tw-backdrop-blur:blur(var(--blur-md));-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-blur-sm{--tw-backdrop-blur:blur(var(--blur-sm));-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-blur-xl{--tw-backdrop-blur:blur(var(--blur-xl));-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-grayscale{--tw-backdrop-grayscale:grayscale(100%);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-invert{--tw-backdrop-invert:invert(100%);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-sepia{--tw-backdrop-sepia:sepia(100%);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-filter{-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-shadow{transition-property:box-shadow;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-150{--tw-duration:.15s;transition-duration:.15s}.duration-300{--tw-duration:.3s;transition-duration:.3s}.duration-500{--tw-duration:.5s;transition-duration:.5s}.duration-700{--tw-duration:.7s;transition-duration:.7s}.duration-\[1\.5s\]{--tw-duration:1.5s;transition-duration:1.5s}.ease-in{--tw-ease:var(--ease-in);transition-timing-function:var(--ease-in)}.ease-in-out{--tw-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out)}.ease-out{--tw-ease:var(--ease-out);transition-timing-function:var(--ease-out)}.select-none{-webkit-user-select:none;user-select:none}.\[hostname\:port\]{hostname:port}.\[webkit-box-orient\:vertical\]{webkit-box-orient:vertical}.\[webkit-line-clamp\:3\]{webkit-line-clamp:3}.animation-delay-2000{animation-delay:2s}.animation-delay-4000{animation-delay:4s}.bg-diagonal{background:linear-gradient(135deg,#d9a321 0%,#b8860b 100%)}:where(.divide-x-reverse>:not(:last-child)){--tw-divide-x-reverse:1}.ring-inset{--tw-ring-inset:inset}@media (hover:hover){.group-hover\:-translate-x-1:is(:where(.group):hover *){--tw-translate-x:calc(var(--spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.group-hover\:-translate-y-2:is(:where(.group):hover *){--tw-translate-y:calc(var(--spacing)*-2);translate:var(--tw-translate-x)var(--tw-translate-y)}.group-hover\:scale-105:is(:where(.group):hover *){--tw-scale-x:105%;--tw-scale-y:105%;--tw-scale-z:105%;scale:var(--tw-scale-x)var(--tw-scale-y)}.group-hover\:scale-110:is(:where(.group):hover *){--tw-scale-x:110%;--tw-scale-y:110%;--tw-scale-z:110%;scale:var(--tw-scale-x)var(--tw-scale-y)}.group-hover\:scale-125:is(:where(.group):hover *){--tw-scale-x:125%;--tw-scale-y:125%;--tw-scale-z:125%;scale:var(--tw-scale-x)var(--tw-scale-y)}.group-hover\:animate-bounce:is(:where(.group):hover *){animation:var(--animate-bounce)}.group-hover\:border-primary\/30:is(:where(.group):hover *){border-color:color-mix(in srgb,hsl(var(--primary))30%,transparent)}@supports (color:color-mix(in lab, red, red)){.group-hover\:border-primary\/30:is(:where(.group):hover *){border-color:color-mix(in oklab,var(--color-primary)30%,transparent)}}.group-hover\:bg-blue-500:is(:where(.group):hover *){background-color:var(--color-blue-500)}.group-hover\:bg-green-500:is(:where(.group):hover *){background-color:var(--color-green-500)}.group-hover\:bg-primary:is(:where(.group):hover *){background-color:var(--color-primary)}.group-hover\:bg-primary\/10:is(:where(.group):hover *){background-color:color-mix(in srgb,hsl(var(--primary))10%,transparent)}@supports (color:color-mix(in lab, red, red)){.group-hover\:bg-primary\/10:is(:where(.group):hover *){background-color:color-mix(in oklab,var(--color-primary)10%,transparent)}}.group-hover\:bg-primary\/20:is(:where(.group):hover *){background-color:color-mix(in srgb,hsl(var(--primary))20%,transparent)}@supports (color:color-mix(in lab, red, red)){.group-hover\:bg-primary\/20:is(:where(.group):hover *){background-color:color-mix(in oklab,var(--color-primary)20%,transparent)}}.group-hover\:bg-purple-500:is(:where(.group):hover *){background-color:var(--color-purple-500)}.group-hover\:bg-white\/20:is(:where(.group):hover *){background-color:#fff3}@supports (color:color-mix(in lab, red, red)){.group-hover\:bg-white\/20:is(:where(.group):hover *){background-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.group-hover\:tracking-\[0\.12em\]:is(:where(.group):hover *){--tw-tracking:.12em;letter-spacing:.12em}.group-hover\:text-primary:is(:where(.group):hover *){color:var(--color-primary)}.group-hover\:text-white:is(:where(.group):hover *){color:var(--color-white)}.group-hover\:text-white\/90:is(:where(.group):hover *){color:#ffffffe6}@supports (color:color-mix(in lab, red, red)){.group-hover\:text-white\/90:is(:where(.group):hover *){color:color-mix(in oklab,var(--color-white)90%,transparent)}}.group-hover\:opacity-70:is(:where(.group):hover *){opacity:.7}.group-hover\:opacity-90:is(:where(.group):hover *){opacity:.9}.group-hover\:opacity-100:is(:where(.group):hover *){opacity:1}}.file\:border-0::file-selector-button{border-style:var(--tw-border-style);border-width:0}.file\:bg-transparent::file-selector-button{background-color:#0000}.file\:text-sm::file-selector-button{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.file\:font-medium::file-selector-button{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.file\:text-foreground::file-selector-button{color:var(--color-foreground)}.placeholder\:text-muted-foreground::placeholder{color:var(--color-muted-foreground)}@media (hover:hover){.hover\:-translate-y-0\.5:hover{--tw-translate-y:calc(var(--spacing)*-.5);translate:var(--tw-translate-x)var(--tw-translate-y)}.hover\:-translate-y-1:hover{--tw-translate-y:calc(var(--spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.hover\:-translate-y-2:hover{--tw-translate-y:calc(var(--spacing)*-2);translate:var(--tw-translate-x)var(--tw-translate-y)}.hover\:scale-105:hover{--tw-scale-x:105%;--tw-scale-y:105%;--tw-scale-z:105%;scale:var(--tw-scale-x)var(--tw-scale-y)}.hover\:scale-110:hover{--tw-scale-x:110%;--tw-scale-y:110%;--tw-scale-z:110%;scale:var(--tw-scale-x)var(--tw-scale-y)}.hover\:rotate-0:hover{rotate:none}.hover\:gap-3:hover{gap:calc(var(--spacing)*3)}.hover\:gap-6:hover{gap:calc(var(--spacing)*6)}.hover\:border-primary:hover{border-color:var(--color-primary)}.hover\:border-primary\/30:hover{border-color:color-mix(in srgb,hsl(var(--primary))30%,transparent)}@supports (color:color-mix(in lab, red, red)){.hover\:border-primary\/30:hover{border-color:color-mix(in oklab,var(--color-primary)30%,transparent)}}.hover\:border-secondary:hover{border-color:var(--color-secondary)}.hover\:border-white\/40:hover{border-color:#fff6}@supports (color:color-mix(in lab, red, red)){.hover\:border-white\/40:hover{border-color:color-mix(in oklab,var(--color-white)40%,transparent)}}.hover\:bg-accent:hover{background-color:var(--color-accent)}.hover\:bg-black\/70:hover{background-color:#000000b3}@supports (color:color-mix(in lab, red, red)){.hover\:bg-black\/70:hover{background-color:color-mix(in oklab,var(--color-black)70%,transparent)}}.hover\:bg-blue-700:hover{background-color:var(--color-blue-700)}.hover\:bg-destructive\/90:hover{background-color:color-mix(in srgb,hsl(var(--destructive))90%,transparent)}@supports (color:color-mix(in lab, red, red)){.hover\:bg-destructive\/90:hover{background-color:color-mix(in oklab,var(--color-destructive)90%,transparent)}}.hover\:bg-primary\/90:hover{background-color:color-mix(in srgb,hsl(var(--primary))90%,transparent)}@supports (color:color-mix(in lab, red, red)){.hover\:bg-primary\/90:hover{background-color:color-mix(in oklab,var(--color-primary)90%,transparent)}}.hover\:bg-secondary\/20:hover{background-color:color-mix(in srgb,hsl(var(--secondary))20%,transparent)}@supports (color:color-mix(in lab, red, red)){.hover\:bg-secondary\/20:hover{background-color:color-mix(in oklab,var(--color-secondary)20%,transparent)}}.hover\:bg-secondary\/80:hover{background-color:color-mix(in srgb,hsl(var(--secondary))80%,transparent)}@supports (color:color-mix(in lab, red, red)){.hover\:bg-secondary\/80:hover{background-color:color-mix(in oklab,var(--color-secondary)80%,transparent)}}.hover\:bg-secondary\/90:hover{background-color:color-mix(in srgb,hsl(var(--secondary))90%,transparent)}@supports (color:color-mix(in lab, red, red)){.hover\:bg-secondary\/90:hover{background-color:color-mix(in oklab,var(--color-secondary)90%,transparent)}}.hover\:bg-slate-50:hover{background-color:var(--color-slate-50)}.hover\:bg-slate-50\/80:hover{background-color:#f8fafccc}@supports (color:color-mix(in lab, red, red)){.hover\:bg-slate-50\/80:hover{background-color:color-mix(in oklab,var(--color-slate-50)80%,transparent)}}.hover\:bg-slate-100:hover{background-color:var(--color-slate-100)}.hover\:bg-slate-800:hover{background-color:var(--color-slate-800)}.hover\:bg-slate-900:hover{background-color:var(--color-slate-900)}.hover\:bg-white:hover{background-color:var(--color-white)}.hover\:bg-white\/10:hover{background-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.hover\:bg-white\/10:hover{background-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.hover\:bg-white\/20:hover{background-color:#fff3}@supports (color:color-mix(in lab, red, red)){.hover\:bg-white\/20:hover{background-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.hover\:text-accent-foreground:hover{color:var(--color-accent-foreground)}.hover\:text-cyan-500:hover{color:var(--color-cyan-500)}.hover\:text-primary:hover{color:var(--color-primary)}.hover\:text-primary\/80:hover{color:color-mix(in srgb,hsl(var(--primary))80%,transparent)}@supports (color:color-mix(in lab, red, red)){.hover\:text-primary\/80:hover{color:color-mix(in oklab,var(--color-primary)80%,transparent)}}.hover\:text-slate-900:hover{color:var(--color-slate-900)}.hover\:text-white:hover{color:var(--color-white)}.hover\:underline:hover{text-decoration-line:underline}.hover\:opacity-100:hover{opacity:1}.hover\:shadow-2xl:hover{--tw-shadow:0 25px 50px -12px var(--tw-shadow-color,#00000040);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.hover\:shadow-\[0_10px_30px_-12px_rgba\(0\,0\,0\,0\.4\)\]:hover{--tw-shadow:0 10px 30px -12px var(--tw-shadow-color,#0006);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.hover\:shadow-\[0_25px_50px_-12px_rgba\(217\,163\,33\,0\.5\)\]:hover{--tw-shadow:0 25px 50px -12px var(--tw-shadow-color,#d9a32180);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.hover\:shadow-\[0_48px_80px_-20px_rgba\(0\,0\,0\,0\.12\)\]:hover{--tw-shadow:0 48px 80px -20px var(--tw-shadow-color,#0000001f);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.hover\:shadow-xl:hover{--tw-shadow:0 20px 25px -5px var(--tw-shadow-color,#0000001a),0 8px 10px -6px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}}.focus\:border-primary:focus{border-color:var(--color-primary)}.focus\:ring-primary:focus{--tw-ring-color:var(--color-primary)}.focus-visible\:ring-1:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\:ring-2:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\:ring-ring:focus-visible{--tw-ring-color:var(--color-ring)}.focus-visible\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.focus-visible\:outline-none:focus-visible{--tw-outline-style:none;outline-style:none}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-50:disabled{opacity:.5}@media (min-width:40rem){.sm\:inline{display:inline}.sm\:flex-row{flex-direction:row}.sm\:justify-center{justify-content:center}.sm\:gap-4{gap:calc(var(--spacing)*4)}}@media (min-width:48rem){.md\:fixed{position:fixed}.md\:right-6{right:calc(var(--spacing)*6)}.md\:left-auto{left:auto}.md\:col-span-1{grid-column:span 1/span 1}.md\:col-span-2{grid-column:span 2/span 2}.md\:-mt-10{margin-top:calc(var(--spacing)*-10)}.md\:-mt-12{margin-top:calc(var(--spacing)*-12)}.md\:block{display:block}.md\:flex{display:flex}.md\:hidden{display:none}.md\:aspect-auto{aspect-ratio:auto}.md\:h-12{height:calc(var(--spacing)*12)}.md\:h-\[350px\]{height:350px}.md\:h-\[450px\]{height:450px}.md\:h-\[700px\]{height:700px}.md\:w-1\/3{width:33.3333%}.md\:w-2\/3{width:66.6667%}.md\:w-48{width:calc(var(--spacing)*48)}.md\:w-\[400px\]{width:400px}.md\:w-\[450px\]{width:450px}.md\:w-\[500px\]{width:500px}.md\:w-fit{width:fit-content}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:flex-row{flex-direction:row}.md\:justify-start{justify-content:flex-start}.md\:gap-8{gap:calc(var(--spacing)*8)}.md\:p-7{padding:calc(var(--spacing)*7)}.md\:p-12{padding:calc(var(--spacing)*12)}.md\:p-16{padding:calc(var(--spacing)*16)}.md\:px-4{padding-inline:calc(var(--spacing)*4)}.md\:px-10{padding-inline:calc(var(--spacing)*10)}.md\:py-5{padding-block:calc(var(--spacing)*5)}.md\:py-8{padding-block:calc(var(--spacing)*8)}.md\:py-16{padding-block:calc(var(--spacing)*16)}.md\:py-20{padding-block:calc(var(--spacing)*20)}.md\:text-left{text-align:left}.md\:text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.md\:text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.md\:text-4xl{font-size:var(--text-4xl);line-height:var(--tw-leading,var(--text-4xl--line-height))}.md\:text-5xl{font-size:var(--text-5xl);line-height:var(--tw-leading,var(--text-5xl--line-height))}.md\:text-6xl{font-size:var(--text-6xl);line-height:var(--tw-leading,var(--text-6xl--line-height))}.md\:text-7xl{font-size:var(--text-7xl);line-height:var(--tw-leading,var(--text-7xl--line-height))}.md\:text-8xl{font-size:var(--text-8xl);line-height:var(--tw-leading,var(--text-8xl--line-height))}.md\:text-9xl{font-size:var(--text-9xl);line-height:var(--tw-leading,var(--text-9xl--line-height))}.md\:text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.md\:text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.md\:text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.md\:text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}}@media (min-width:64rem){.lg\:col-span-2{grid-column:span 2/span 2}.lg\:block{display:block}.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:flex-row{flex-direction:row}.lg\:flex-row-reverse{flex-direction:row-reverse}}}@keyframes float{0%{transform:translateY(0)rotate(0)}50%{transform:translateY(-20px)rotate(2deg)}to{transform:translateY(0)rotate(0)}}.animate-float{animation:6s ease-in-out infinite float}@keyframes blob{0%{transform:translate(0)scale(1)}33%{transform:translate(30px,-50px)scale(1.1)}66%{transform:translate(-20px,20px)scale(.9)}to{transform:translate(0)scale(1)}}.animate-blob{animation:7s infinite blob}@media (prefers-reduced-motion:reduce){.animate-blob,.animate-float{animation:none!important}}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-pan-x{syntax:"*";inherits:false}@property --tw-pan-y{syntax:"*";inherits:false}@property --tw-pinch-zoom{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-divide-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-divide-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"";inherits:false;initial-value:100%}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}@property --tw-ordinal{syntax:"*";inherits:false}@property --tw-slashed-zero{syntax:"*";inherits:false}@property --tw-numeric-figure{syntax:"*";inherits:false}@property --tw-numeric-spacing{syntax:"*";inherits:false}@property --tw-numeric-fraction{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@keyframes spin{to{transform:rotate(360deg)}}@keyframes pulse{50%{opacity:.5}}@keyframes bounce{0%,to{animation-timing-function:cubic-bezier(.8,0,1,1);transform:translateY(-25%)}50%{animation-timing-function:cubic-bezier(0,0,.2,1);transform:none}} diff --git a/out/_next/static/chunks/b90daf66f1af1d6b.js b/out/_next/static/chunks/b90daf66f1af1d6b.js new file mode 100644 index 0000000..f035e5a --- /dev/null +++ b/out/_next/static/chunks/b90daf66f1af1d6b.js @@ -0,0 +1 @@ +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,33525,(e,s,a)=>{"use strict";Object.defineProperty(a,"__esModule",{value:!0}),Object.defineProperty(a,"warnOnce",{enumerable:!0,get:function(){return l}});let l=e=>{}},95010,e=>{"use strict";var s=e.i(43476),a=e.i(46932),l=e.i(47163);e.s(["default",0,({className:e,children:t})=>(0,s.jsx)(a.motion.main,{className:(0,l.cn)(e),initial:{opacity:0,y:24},animate:{opacity:1,y:0},transition:{duration:.7,ease:[.16,1,.3,1]},children:t})])},95468,e=>{"use strict";let s=(0,e.i(75254).default)("circle-check",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);e.s(["CheckCircle2",()=>s],95468)},83157,e=>{"use strict";let s=(0,e.i(75254).default)("facebook",[["path",{d:"M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z",key:"1jg4f8"}]]);e.s(["Facebook",()=>s],83157)},70273,e=>{"use strict";let s=(0,e.i(75254).default)("star",[["path",{d:"M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z",key:"r04s7s"}]]);e.s(["Star",()=>s],70273)},51539,e=>{"use strict";var s=e.i(43476),a=e.i(63780),l=e.i(76841),t=e.i(95010),i=e.i(71689),r=e.i(83157),c=e.i(70273),o=e.i(95468),n=e.i(22016),d=e.i(57688),h=e.i(50661);function x(){let{t:e}=(0,h.useLanguage)();return(0,s.jsxs)(t.default,{className:"relative min-h-screen bg-slate-50",children:[(0,s.jsx)(a.default,{darkMode:!0}),(0,s.jsxs)("section",{className:"relative pt-40 pb-20 overflow-hidden bg-slate-900",children:[(0,s.jsx)("div",{className:"absolute inset-0 bg-gradient-to-br from-blue-600/20 to-purple-600/20 -z-10"}),(0,s.jsxs)("div",{className:"max-w-7xl mx-auto px-6 relative z-10",children:[(0,s.jsxs)(n.default,{href:"/",className:"inline-flex items-center text-white/70 hover:text-white mb-10 transition-colors group",children:[(0,s.jsx)(i.ArrowLeft,{className:"w-4 h-4 mr-2 group-hover:-translate-x-1 transition-transform"}),(0,s.jsx)("span",{className:"text-xs font-bold uppercase tracking-widest",children:e.discounts.pages.fbGoogle.back})]}),(0,s.jsxs)("h1",{className:"text-5xl md:text-7xl font-black text-white uppercase tracking-tighter leading-none mb-6",children:[e.discounts.fbGoogle.title," ",(0,s.jsx)("br",{}),(0,s.jsx)("span",{className:"text-primary italic",children:e.discounts.pages.fbGoogle.discountLabel})]})]})]}),(0,s.jsx)("section",{className:"py-24",children:(0,s.jsx)("div",{className:"max-w-7xl mx-auto px-6",children:(0,s.jsxs)("div",{className:"grid grid-cols-1 lg:grid-cols-2 gap-16",children:[(0,s.jsxs)("div",{className:"space-y-12",children:[(0,s.jsxs)("div",{className:"space-y-6",children:[(0,s.jsxs)("div",{className:"flex items-center gap-4",children:[(0,s.jsx)("div",{className:"w-12 h-12 bg-blue-600 rounded-2xl flex items-center justify-center shadow-lg shadow-blue-600/20",children:(0,s.jsx)(r.Facebook,{className:"text-white w-6 h-6"})}),(0,s.jsx)("h2",{className:"text-3xl font-black text-slate-900 uppercase tracking-tight",children:e.discounts.pages.fbGoogle.fbTitle})]}),(0,s.jsx)("ul",{className:"space-y-4",children:e.discounts.pages.fbGoogle.fbSteps.map((e,a)=>(0,s.jsxs)("li",{className:"flex items-start gap-3 text-slate-600 font-medium",children:[(0,s.jsx)(o.CheckCircle2,{className:"w-5 h-5 text-blue-600 mt-1 shrink-0"}),(0,s.jsx)("span",{children:e})]},a))}),(0,s.jsx)("div",{className:"pt-4",children:(0,s.jsxs)("a",{href:"https://www.facebook.com/airporttransfer.gyor",target:"_blank",rel:"noopener noreferrer",className:"inline-flex items-center gap-2 bg-blue-600 text-white px-8 py-4 rounded-full font-bold hover:bg-blue-700 transition-colors shadow-xl shadow-blue-600/20",children:[(0,s.jsx)(r.Facebook,{className:"w-5 h-5"}),e.discounts.pages.fbGoogle.facebookOpen]})})]}),(0,s.jsxs)("div",{className:"space-y-6",children:[(0,s.jsx)("h3",{className:"text-xl font-bold text-slate-900",children:e.discounts.pages.fbGoogle.helperText}),(0,s.jsx)("div",{className:"relative aspect-video rounded-3xl overflow-hidden shadow-2xl border border-slate-200",children:(0,s.jsx)(d.default,{src:"/images/SkyFlyFBLike.gif",alt:"Facebook Like Help",fill:!0,sizes:"(min-width: 1024px) 50vw, 100vw",className:"object-contain bg-white"})})]})]}),(0,s.jsxs)("div",{className:"space-y-12",children:[(0,s.jsxs)("div",{className:"space-y-6",children:[(0,s.jsxs)("div",{className:"flex items-center gap-4",children:[(0,s.jsx)("div",{className:"w-12 h-12 bg-white rounded-2xl flex items-center justify-center shadow-lg border border-slate-100",children:(0,s.jsx)(c.Star,{className:"text-yellow-500 w-6 h-6 fill-yellow-500"})}),(0,s.jsx)("h2",{className:"text-3xl font-black text-slate-900 uppercase tracking-tight",children:e.discounts.pages.fbGoogle.googleTitle})]}),(0,s.jsx)("ul",{className:"space-y-4",children:e.discounts.pages.fbGoogle.googleSteps.map((e,a)=>(0,s.jsxs)("li",{className:"flex items-start gap-3 text-slate-600 font-medium",children:[(0,s.jsx)(o.CheckCircle2,{className:"w-5 h-5 text-yellow-500 mt-1 shrink-0"}),(0,s.jsx)("span",{children:e})]},a))}),(0,s.jsx)("div",{className:"pt-4",children:(0,s.jsxs)("a",{href:"https://g.page/r/CRltVP4lAy7lEBM/review",target:"_blank",rel:"noopener noreferrer",className:"inline-flex items-center gap-2 bg-white text-slate-900 border border-slate-200 px-8 py-4 rounded-full font-bold hover:bg-slate-50 transition-colors shadow-lg",children:[(0,s.jsx)(c.Star,{className:"w-5 h-5 text-yellow-500 fill-yellow-500"}),e.discounts.pages.fbGoogle.googleReview]})})]}),(0,s.jsxs)("div",{className:"space-y-6",children:[(0,s.jsx)("h3",{className:"text-xl font-bold text-slate-900",children:e.discounts.pages.fbGoogle.facebookLabel}),(0,s.jsx)("div",{className:"rounded-3xl overflow-hidden shadow-2xl border border-slate-200 bg-white p-4",children:(0,s.jsx)("iframe",{src:"https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2Fairporttransfer.gyor&tabs=timeline&width=500&height=500&small_header=false&adapt_container_width=true&hide_cover=false&show_facepile=true&appId",width:"100%",height:"500",style:{border:"none",overflow:"hidden"},scrolling:"no",frameBorder:"0",allowFullScreen:!0,allow:"autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share"})})]})]})]})})}),(0,s.jsx)(l.default,{})]})}e.s(["default",()=>x])}]); \ No newline at end of file diff --git a/out/_next/static/chunks/e205baa082f6954a.js b/out/_next/static/chunks/e205baa082f6954a.js deleted file mode 100644 index a254b86..0000000 --- a/out/_next/static/chunks/e205baa082f6954a.js +++ /dev/null @@ -1 +0,0 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,52571,e=>{"use strict";let t=(0,e.i(75254).default)("info",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 16v-4",key:"1dtifu"}],["path",{d:"M12 8h.01",key:"e9boi3"}]]);e.s(["Info",()=>t],52571)},98919,46897,e=>{"use strict";var t=e.i(75254);let a=(0,t.default)("shield",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}]]);e.s(["Shield",()=>a],98919);let s=(0,t.default)("map-pin",[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}]]);e.s(["MapPin",()=>s],46897)},33525,(e,t,a)=>{"use strict";Object.defineProperty(a,"__esModule",{value:!0}),Object.defineProperty(a,"warnOnce",{enumerable:!0,get:function(){return s}});let s=e=>{}},26577,e=>{e.v({data:[{area:"SkyFly Travel",placeId:"ChIJQz_NzJm_a0cRGW1U_iUDLuU",rating:5,userRatingCount:285,reviews:[{text:"Mindig a SkyFly-jal utazunk a repülőterekre. Utastársaim nevében is a legjobbakat tudom mondani a cégről és szívesen ajánlom őket mindenkinek. Pontos szervezés, kedves, udvarias és rutinos sofőrök.",rating:5,author:"Gyopar Kallos",publishTime:"2026-01-13T13:05:09.781273430Z"},{text:"Évente több alkalommal használom reptéri transzfer szolgáltatásukat. Minden alkalommal a megbeszéltek szerint, pontosan a helyszínen voltak. Sofőrjeik segítőkészek. A megrendelés leadása után nem zaklatják az embert különféle emailekkel. Az utazás előtti napon küldik a sofőr nevét, elérhetőségét.",rating:5,author:"Péter",publishTime:"2025-12-04T13:51:00.646252562Z"},{text:"Évek óta a SkyFly szolgáltatását használjuk, mindig maximálisan elégedett voltunk. Megbízhatóak, pontosak és rugalmasak, ami hosszú utazások előtt és után különösen sokat jelent. A sofőrök kedvesek, figyelmesek és biztonságosan vezetnek.\nAz autók tiszták, kényelmesek, minden alkalommal gördülékeny a teljes transzfer. Bátran ajánlom mindenkinek, aki minőségi és profi szolgáltatást keres!",rating:5,author:"Csaba Farkas",publishTime:"2025-11-19T10:02:24.246395337Z"},{text:"Nagyon elégedett voltam a szolgáltatással! A sofőr pontosan érkezett, udvarias és segítőkész volt, az autó tiszta és kényelmes. Az út gyorsan és biztonságosan telt, minden gördülékenyen zajlott. Bátran ajánlom mindenkinek, aki megbízható reptéri transzfert keres.",rating:5,author:"Tunde Csendes",publishTime:"2025-10-08T06:21:01.050570478Z"},{text:"100%-os pozitív tapasztalat, nagyon örülök, hogy rátaláltunk a cégre. A kapott árajánlatok közül messze a legjobb árat kaptuk tőlük reptéri transzferre.Korrekt ár, gördülékeny kommunikáció, gyors és precíz választ kaptunk minden kérdésünkre. A sofőr nagyon kedves, udvarias, pontos és megbízható volt. A járatunk késését is nagyon rugalmasan kezelték. Csak ajánlani tudjuk őket a legjobb szívvel.",rating:5,author:"Gruber Andrea",publishTime:"2025-09-22T12:24:38.650812077Z"}]}]})},61405,e=>{e.v({data:[{area:"SkyFly Travel",placeId:"ChIJQz_NzJm_a0cRGW1U_iUDLuU",rating:5,userRatingCount:285,reviews:[{text:"Sky fly is a great company. The booking website is easy to understand. And the prices are fare. Also when a last minute situation occurs they always make it work to get you to your destination. Over the years I had a couple situations where I needed a last second change and every time the make it work. The drivers are also great. I would recommend this shuttle service.",rating:5,author:"matthijs van leijenhorst",publishTime:"2025-09-22T07:55:17.174730841Z"},{text:"Travel SkyFly has been providing an outstanding experience. The drivers are professional, punctual, and polite, and their cars are always immaculate and comfortable. Whether you're traveling between Vienna and Budapest or need reliable airport transportation, I highly recommend their services. Truly a hassle-free and dependable choice!",rating:5,author:"Krisztian Nagy",publishTime:"2024-12-04T16:27:45.117418Z"},{text:"SkyFly Travel Kft is MORE than a partner in providing the best chauffeur service — professional, reliable, and always exceeding expectations. Highly recommended for anyone seeking comfort, punctuality, and premium service in every ride - ViziZene Kft",rating:5,author:"Zoltan Biczo",publishTime:"2025-05-11T05:53:25.464513Z"},{text:"Professional, punctual, polite driver. Nice clean cars. I would highly recommend to those who needs a ride from or to airport from Vienna or to Budapest. I had a last minute booking, they were there as promised. Punctual arriving for my flight. Highly recommend.",rating:5,author:"Judit Csibi",publishTime:"2023-09-05T21:47:44.438396Z"},{text:"I was asked to fill in a review about my experiences with flysky travel. I have been able to experience a taxi ride with them 6 times so far. Everything is arranged down to the last detail, the reservation, the information provided about how the trip will go.. and especially the drivers. I have no complaints about this, polite and friendly drivers. In my case I have been picked up several times by Roland Klauz. This driver is recommended to be picked up by. Super friendly guy. Who takes you from A to B in a relaxed way. And with whom good contact can be maintained before / during and after the ride. Applause for Skyfly. Greetings Martijn van der Meer.",rating:5,author:"Martijn van der Meer",publishTime:"2024-08-05T15:18:27.019324Z"}]}]})},95010,e=>{"use strict";var t=e.i(43476),a=e.i(46932),s=e.i(47163);e.s(["default",0,({className:e,children:r})=>(0,t.jsx)(a.motion.main,{className:(0,s.cn)(e),initial:{opacity:0,y:24},animate:{opacity:1,y:0},transition:{duration:.7,ease:[.16,1,.3,1]},children:r})])},70065,e=>{"use strict";var t=e.i(43476),a=e.i(71645),s=e.i(47163);let r=a.forwardRef(({className:e,...a},r)=>(0,t.jsx)("div",{ref:r,className:(0,s.cn)("rounded-3xl border bg-card text-card-foreground shadow-sm",e),...a}));r.displayName="Card",a.forwardRef(({className:e,...a},r)=>(0,t.jsx)("div",{ref:r,className:(0,s.cn)("flex flex-col space-y-1.5 p-6",e),...a})).displayName="CardHeader",a.forwardRef(({className:e,...a},r)=>(0,t.jsx)("h3",{ref:r,className:(0,s.cn)("text-2xl font-semibold leading-none tracking-tight",e),...a})).displayName="CardTitle",a.forwardRef(({className:e,...a},r)=>(0,t.jsx)("p",{ref:r,className:(0,s.cn)("text-sm text-muted-foreground",e),...a})).displayName="CardDescription",a.forwardRef(({className:e,...a},r)=>(0,t.jsx)("div",{ref:r,className:(0,s.cn)("p-6 pt-0",e),...a})).displayName="CardContent",a.forwardRef(({className:e,...a},r)=>(0,t.jsx)("div",{ref:r,className:(0,s.cn)("flex items-center p-6 pt-0",e),...a})).displayName="CardFooter",e.s(["Card",()=>r])},3116,e=>{"use strict";let t=(0,e.i(75254).default)("clock",[["path",{d:"M12 6v6l4 2",key:"mmk7yg"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);e.s(["Clock",()=>t],3116)},43432,e=>{"use strict";let t=(0,e.i(75254).default)("phone",[["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",key:"9njp5v"}]]);e.s(["Phone",()=>t],43432)},63488,e=>{"use strict";let t=(0,e.i(75254).default)("mail",[["path",{d:"m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7",key:"132q7q"}],["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2",key:"izxlao"}]]);e.s(["Mail",()=>t],63488)},61030,e=>{"use strict";var t=e.i(43476),a=e.i(63780),s=e.i(76841),r=e.i(95010),i=e.i(47163),l=e.i(52571),n=e.i(75254);let o=(0,n.default)("tag",[["path",{d:"M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z",key:"vktsd0"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor",key:"kqv944"}]]),c=(0,n.default)("check",[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]]);var d=e.i(98919);let p=(0,n.default)("circle-question-mark",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);var x=e.i(50661),m=e.i(71645);let h=({route:e,rows:a,specials:s,vipInfo:r,effectiveFrom:n,expressInfo:h,districtSurcharge:u})=>{let{t:g}=(0,x.useLanguage)(),[b,f]=(0,m.useState)(!1);return(0,t.jsxs)("div",{className:"w-full space-y-8 mb-24",children:[(0,t.jsxs)("div",{className:"space-y-2 mb-8",children:[(0,t.jsx)("h3",{className:"text-5xl md:text-7xl font-black uppercase tracking-tighter opacity-10 text-primary",children:e.includes("POZSONY")||e.includes("BRATISLAVA")?"BRATISLAVA":e.includes("BÉCS")||e.includes("VIENNA")?"VIENNA":"BUDAPEST"}),(0,t.jsx)("h2",{className:"text-2xl md:text-3xl font-black tracking-tight -mt-8 md:-mt-10 ml-1 text-slate-900 max-w-2xl uppercase",children:e}),u&&(0,t.jsxs)("button",{type:"button",onClick:()=>f(!0),className:"inline-flex items-center gap-2 rounded-full border border-secondary/40 bg-secondary/10 px-4 py-2 text-[11px] font-black uppercase tracking-[0.25em] text-secondary transition-colors hover:border-secondary hover:bg-secondary/20",children:[(0,t.jsx)(p,{className:"h-4 w-4"}),u.label]})]}),(0,t.jsxs)("div",{className:"bg-white rounded-[2.5rem] shadow-xl border border-slate-100 overflow-hidden",children:[(0,t.jsx)("div",{className:"block md:hidden divide-y divide-slate-100",children:a.map((e,a)=>(0,t.jsxs)("div",{className:(0,i.cn)("p-5",a%2==0?"bg-white":"bg-slate-50/30"),children:[(0,t.jsxs)("div",{className:"flex items-center gap-3 text-slate-900 font-bold mb-4",children:[(0,t.jsx)("div",{className:"w-1.5 h-1.5 rounded-full bg-primary"}),(0,t.jsx)("span",{children:e.persons})]}),(0,t.jsxs)("div",{className:"grid grid-cols-2 gap-4 text-sm",children:[(0,t.jsxs)("div",{className:"text-center",children:[(0,t.jsx)("div",{className:"text-[10px] uppercase tracking-[0.2em] text-slate-400 mb-2",children:g.pricing.table.express}),(0,t.jsxs)("div",{className:"font-extrabold text-blue-950 flex items-center justify-center gap-2",children:[(0,t.jsx)("span",{children:e.express}),0===a&&h&&(0,t.jsxs)("span",{className:"relative inline-flex items-center group",children:[(0,t.jsx)(l.Info,{className:"w-3 h-3 text-slate-300 hover:text-primary cursor-help transition-colors"}),(0,t.jsx)("span",{className:"pointer-events-none absolute bottom-full left-1/2 z-10 mb-2 w-64 -translate-x-1/2 rounded-lg bg-slate-900 px-3 py-2 text-[11px] font-medium text-white opacity-0 shadow-lg transition-opacity duration-150 group-hover:opacity-100",children:h})]})]})]}),(0,t.jsxs)("div",{className:"text-center",children:[(0,t.jsx)("div",{className:"text-[10px] uppercase tracking-[0.2em] text-slate-400 mb-2",children:g.pricing.table.private}),(0,t.jsx)("div",{className:"font-extrabold text-white px-4 py-1.5 bg-secondary rounded-full text-xs tracking-wider shadow-sm inline-block",children:e.private})]})]})]},a))}),(0,t.jsx)("div",{className:"hidden md:block overflow-x-auto",children:(0,t.jsxs)("table",{className:"w-full text-left border-collapse",children:[(0,t.jsx)("thead",{children:(0,t.jsxs)("tr",{className:"bg-slate-50/50 text-slate-500 text-[10px] uppercase tracking-[0.2em] border-b border-slate-100",children:[(0,t.jsx)("th",{className:"py-6 px-4 md:py-8 md:px-10 font-bold whitespace-nowrap",children:g.pricing.table.passengers}),(0,t.jsx)("th",{className:"py-6 px-2 md:py-8 md:px-4 font-bold text-center",children:(0,t.jsxs)("div",{className:"flex flex-col items-center gap-1 opacity-40",children:[(0,t.jsx)("span",{className:"text-slate-400",children:g.pricing.table.classic}),(0,t.jsx)("span",{className:"text-[10px] lowercase normal-case tracking-normal",children:g.pricing.table.classicNote})]})}),(0,t.jsx)("th",{className:"py-8 px-4 font-bold text-center",children:(0,t.jsxs)("div",{className:"flex items-center justify-center gap-2",children:[(0,t.jsx)("span",{className:"text-primary font-black",children:g.pricing.table.express}),(0,t.jsx)("div",{className:"bg-primary/10 p-1 rounded-md",children:(0,t.jsx)(o,{className:"w-3 h-3 text-primary"})})]})}),(0,t.jsx)("th",{className:"py-8 px-10 font-bold text-center",children:(0,t.jsxs)("div",{className:"flex items-center justify-center gap-2",children:[(0,t.jsx)("span",{className:"text-secondary font-black",children:g.pricing.table.private}),(0,t.jsx)("div",{className:"bg-secondary/10 p-1 rounded-md",children:(0,t.jsx)(d.Shield,{className:"w-3 h-3 text-secondary"})})]})})]})}),(0,t.jsx)("tbody",{className:"text-slate-700",children:a.map((e,a)=>(0,t.jsxs)("tr",{className:(0,i.cn)("border-b border-slate-50 transition-colors hover:bg-slate-50/80",a%2==0?"bg-white":"bg-slate-50/20"),children:[(0,t.jsx)("td",{className:"py-4 px-4 md:py-5 md:px-10 font-bold text-slate-900 whitespace-nowrap",children:(0,t.jsxs)("div",{className:"flex items-center gap-3",children:[(0,t.jsx)("div",{className:"w-1.5 h-1.5 rounded-full bg-primary"}),e.persons]})}),(0,t.jsx)("td",{className:"py-4 px-2 md:py-5 md:px-4 text-center text-slate-300",children:(0,t.jsx)("span",{className:"text-xs",children:"—"})}),(0,t.jsx)("td",{className:"py-5 px-4 text-center",children:(0,t.jsxs)("div",{className:"flex items-center justify-center gap-2",children:[(0,t.jsx)("span",{className:"font-extrabold text-blue-950",children:e.express}),0===a&&h&&(0,t.jsxs)("span",{className:"relative inline-flex items-center group",children:[(0,t.jsx)(l.Info,{className:"w-3 h-3 text-slate-300 hover:text-primary cursor-help transition-colors"}),(0,t.jsx)("span",{className:"pointer-events-none absolute bottom-full left-1/2 z-10 mb-2 w-64 -translate-x-1/2 rounded-lg bg-slate-900 px-3 py-2 text-[11px] font-medium text-white opacity-0 shadow-lg transition-opacity duration-150 group-hover:opacity-100",children:h})]})]})}),(0,t.jsx)("td",{className:"py-5 px-10 text-center",children:(0,t.jsx)("span",{className:"font-extrabold text-white px-5 py-1.5 bg-secondary rounded-full text-xs tracking-wider shadow-sm",children:e.private})})]},a))})]})}),s&&s.length>0&&(0,t.jsxs)("div",{className:"bg-gradient-to-r from-slate-950 to-slate-900 text-white p-10 space-y-8",children:[(0,t.jsx)("div",{className:"grid grid-cols-1 lg:grid-cols-2 gap-10",children:s.map((e,a)=>(0,t.jsxs)("div",{className:"space-y-3 group",children:[(0,t.jsxs)("div",{className:"flex items-center gap-4",children:[(0,t.jsx)("div",{className:"bg-primary p-2 rounded-xl group-hover:scale-110 transition-transform duration-300 shadow-lg shadow-primary/20",children:(0,t.jsx)(c,{className:"w-4 h-4 text-white"})}),(0,t.jsxs)("span",{className:"font-black text-xl text-white group-hover:text-primary transition-colors tracking-tight",children:[e.name," — ",e.price]})]}),(0,t.jsx)("p",{className:"text-slate-400 text-sm leading-relaxed pl-12 font-medium",children:e.description})]},a))}),r&&r.length>0&&(0,t.jsxs)("div",{className:"pt-8 border-t border-white/5",children:[(0,t.jsx)("h4",{className:"text-[10px] uppercase tracking-[0.3em] text-primary font-black mb-6",children:g.pricing.table.premium}),(0,t.jsx)("div",{className:"flex flex-wrap gap-x-12 gap-y-4",children:r.map((e,a)=>(0,t.jsxs)("div",{className:"flex items-center gap-3 text-sm text-slate-300 font-bold italic",children:[(0,t.jsx)("div",{className:"w-2 h-2 rounded-full bg-primary shadow-[0_0_10px_rgba(217,163,33,0.5)]"}),e]},a))})]})]})]}),n&&(0,t.jsx)("div",{className:"text-right text-slate-400 text-[10px] uppercase tracking-[0.2em] font-black",children:n}),u&&b&&(0,t.jsx)("div",{className:"fixed inset-0 z-50 flex items-center justify-center bg-slate-950/70 px-4",children:(0,t.jsxs)("div",{className:"w-full max-w-2xl overflow-hidden rounded-[2rem] border border-slate-800/80 bg-slate-900 text-white shadow-[0_30px_80px_rgba(15,23,42,0.6)]",children:[(0,t.jsxs)("div",{className:"relative px-8 py-6",children:[(0,t.jsx)("div",{className:"absolute inset-0 bg-gradient-to-br from-slate-900 via-slate-900 to-slate-800 opacity-90"}),(0,t.jsxs)("div",{className:"relative flex items-center justify-between",children:[(0,t.jsxs)("div",{children:[(0,t.jsx)("p",{className:"text-[10px] uppercase tracking-[0.35em] text-secondary/80",children:u.label}),(0,t.jsx)("h4",{className:"text-lg font-black uppercase tracking-tight text-white",children:u.title})]}),(0,t.jsx)("button",{type:"button",onClick:()=>f(!1),className:"h-9 w-9 rounded-full border border-white/10 bg-white/5 text-white/70 transition-colors hover:bg-white/10 hover:text-white","aria-label":u.closeLabel,children:"×"})]})]}),(0,t.jsxs)("div",{className:"space-y-5 px-8 pb-8 pt-2 text-sm text-white/85",children:[(0,t.jsx)("p",{className:"leading-relaxed",children:u.description}),(0,t.jsx)("div",{className:"space-y-3",children:u.items.map((e,a)=>(0,t.jsxs)("div",{className:"flex items-start gap-3 rounded-xl border border-white/5 bg-white/5 px-4 py-3",children:[(0,t.jsx)("span",{className:"mt-0.5 h-2 w-2 flex-shrink-0 rounded-full bg-secondary shadow-[0_0_10px_rgba(217,163,33,0.6)]"}),(0,t.jsx)("span",{className:"font-semibold text-white/90",children:e})]},a))}),(0,t.jsx)("div",{className:"flex justify-end pt-2",children:(0,t.jsx)("button",{type:"button",onClick:()=>f(!1),className:"rounded-full bg-secondary px-6 py-2 text-[11px] font-black uppercase tracking-[0.25em] text-white hover:bg-secondary/90",children:u.closeLabel})})]})]})})]})};var u=e.i(67881),g=e.i(70065),b=e.i(71689),f=e.i(43432),y=e.i(63488),v=e.i(3116),j=e.i(46897),k=e.i(22016);function N(){let{t:e}=(0,x.useLanguage)(),i=t=>e.pricing.expressInfoTemplate.replace("{price}",t),l=i("23.500 HUF"),n=i("28.000 HUF"),o=i("23.500 HUF"),c=i("50.000 HUF"),p=e.pricing.districtSurcharge,m=[{id:"gyor-becs",label:e.pricing.routes.gyorBecs},{id:"gyor-budapest",label:e.pricing.routes.gyorBudapest},{id:"gyor-pozsony",label:e.pricing.routes.gyorPozsony},{id:"budapest-becs",label:e.pricing.routes.budapestBecs}];return(0,t.jsxs)(r.default,{className:"relative min-h-screen bg-slate-50",children:[(0,t.jsx)(a.default,{darkMode:!0}),(0,t.jsxs)("div",{className:"absolute md:fixed inset-0 pointer-events-none -z-10 overflow-hidden",children:[(0,t.jsx)("div",{className:"absolute top-1/4 -right-20 w-96 h-96 bg-purple-100 rounded-full blur-3xl opacity-30 animate-blob"}),(0,t.jsx)("div",{className:"absolute top-1/2 -left-20 w-80 h-80 bg-blue-100 rounded-full blur-3xl opacity-30 animate-blob animation-delay-2000"})]}),(0,t.jsxs)("section",{className:"relative pt-40 pb-32 overflow-hidden bg-[#D9A321]",children:[(0,t.jsx)("div",{className:"absolute inset-0 bg-diagonal opacity-100 -z-10",style:{background:"linear-gradient(135deg, #D9A321 0%, #1A1A1A 100%)"}}),(0,t.jsx)("div",{className:"absolute bottom-0 left-0 w-full h-[100px] bg-slate-50 transform -skew-y-3 origin-bottom-left -z-10"}),(0,t.jsxs)("div",{className:"max-w-7xl mx-auto px-6 relative z-10",children:[(0,t.jsxs)(k.default,{href:"/",className:"inline-flex items-center text-white/70 hover:text-white mb-10 transition-colors group",children:[(0,t.jsx)("div",{className:"bg-white/10 p-2 rounded-full mr-3 group-hover:bg-white/20 transition-colors",children:(0,t.jsx)(b.ArrowLeft,{className:"w-4 h-4"})}),(0,t.jsx)("span",{className:"text-xs font-bold tracking-[0.2em] uppercase",children:e.pricing.back})]}),(0,t.jsxs)("div",{className:"space-y-4",children:[(0,t.jsxs)("h1",{className:"text-5xl md:text-8xl font-black text-white tracking-tighter leading-none",children:[e.pricing.title," ",(0,t.jsx)("br",{}),(0,t.jsx)("span",{className:"text-secondary/40 italic",children:e.pricing.titleAccent})]}),(0,t.jsx)("p",{className:"text-xl text-white/70 max-w-2xl leading-relaxed font-medium",children:e.pricing.description})]})]})]}),(0,t.jsx)("section",{className:"py-16",children:(0,t.jsxs)("div",{className:"max-w-7xl mx-auto px-6",children:[(0,t.jsxs)(g.Card,{className:"p-6 mb-16 bg-white border-blue-100 shadow-xl rounded-[2rem] flex flex-col md:flex-row gap-8 items-center",children:[(0,t.jsx)("div",{className:"bg-primary/10 p-4 rounded-2xl",children:(0,t.jsx)(v.Clock,{className:"w-8 h-8 text-primary"})}),(0,t.jsxs)("div",{className:"flex-1",children:[(0,t.jsx)("h3",{className:"font-extrabold text-blue-950 uppercase tracking-tight mb-1",children:e.pricing.banner.title}),(0,t.jsx)("p",{className:"text-slate-500 text-sm leading-relaxed",children:e.pricing.banner.description})]}),(0,t.jsx)(u.Button,{asChild:!0,className:"rounded-full px-8 h-12 bg-primary hover:bg-primary/90 text-sm font-bold tracking-widest uppercase",children:(0,t.jsx)("a",{href:"https://app.skyflytravel.hu/public/offers/new",target:"_blank",rel:"noopener noreferrer",children:e.nav.cta})})]}),(0,t.jsxs)("div",{className:"mb-14",children:[(0,t.jsx)("div",{className:"text-center text-[10px] font-black uppercase tracking-[0.4em] text-slate-400 mb-4",children:e.pricing.routes.title}),(0,t.jsx)("div",{className:"flex flex-wrap justify-center gap-3",children:m.map(e=>(0,t.jsx)("a",{href:`#${e.id}`,className:"px-4 py-2 rounded-full bg-white text-slate-700 text-xs font-bold uppercase tracking-widest border border-slate-100 shadow-sm hover:border-primary hover:text-primary transition-colors",children:e.label},e.id))})]}),(0,t.jsx)("div",{id:"gyor-becs",children:(0,t.jsx)(h,{route:e.pricing.routesTable.gyorBecs,rows:e.pricing.rows.becs,specials:e.pricing.specials.base,vipInfo:e.pricing.vipInfo.base,effectiveFrom:`${e.pricing.table.effective}: 2026.01.15`,expressInfo:l})}),(0,t.jsx)("div",{id:"gyor-budapest",children:(0,t.jsx)(h,{route:e.pricing.routesTable.gyorBudapest,rows:e.pricing.rows.budapest,specials:e.pricing.specials.base,vipInfo:e.pricing.vipInfo.base,effectiveFrom:`${e.pricing.table.effective}: 2026.01.15`,expressInfo:n,districtSurcharge:p})}),(0,t.jsx)("div",{id:"gyor-pozsony",children:(0,t.jsx)(h,{route:e.pricing.routesTable.gyorPozsony,rows:e.pricing.rows.pozsony,specials:e.pricing.specials.base,vipInfo:e.pricing.vipInfo.base,effectiveFrom:`${e.pricing.table.effective}: 2026.01.15`,expressInfo:o})}),(0,t.jsx)("div",{id:"budapest-becs",children:(0,t.jsx)(h,{route:e.pricing.routesTable.budapestBecs,rows:e.pricing.rows.budapestVienna,specials:e.pricing.specials.budapestVienna,vipInfo:e.pricing.vipInfo.budapestVienna,effectiveFrom:`${e.pricing.table.effective}: 2026.01.15`,expressInfo:c,districtSurcharge:p})}),(0,t.jsxs)("div",{className:"grid grid-cols-1 md:grid-cols-3 gap-8 mt-24",children:[(0,t.jsxs)(g.Card,{className:"p-8 rounded-[2rem] border-none shadow-lg bg-white group hover:-translate-y-2 transition-all duration-300",children:[(0,t.jsx)("div",{className:"bg-green-50 w-16 h-16 rounded-2xl flex items-center justify-center mb-6 group-hover:bg-green-500 transition-colors duration-300",children:(0,t.jsx)(d.Shield,{className:"w-8 h-8 text-green-500 group-hover:text-white transition-colors duration-300"})}),(0,t.jsx)("h4",{className:"font-extrabold text-slate-900 text-xl mb-3 uppercase tracking-tight",children:e.pricing.extra.security.title}),(0,t.jsx)("p",{className:"text-slate-500 text-sm leading-relaxed",children:e.pricing.extra.security.desc})]}),(0,t.jsxs)(g.Card,{className:"p-8 rounded-[2rem] border-none shadow-lg bg-white group hover:-translate-y-2 transition-all duration-300",children:[(0,t.jsx)("div",{className:"bg-blue-50 w-16 h-16 rounded-2xl flex items-center justify-center mb-6 group-hover:bg-blue-500 transition-colors duration-300",children:(0,t.jsx)(j.MapPin,{className:"w-8 h-8 text-blue-500 group-hover:text-white transition-colors duration-300"})}),(0,t.jsx)("h4",{className:"font-extrabold text-slate-900 text-xl mb-3 uppercase tracking-tight",children:e.pricing.extra.addresses.title}),(0,t.jsx)("p",{className:"text-slate-500 text-sm leading-relaxed",children:e.pricing.extra.addresses.desc})]}),(0,t.jsxs)(g.Card,{className:"p-8 rounded-[2rem] border-none shadow-lg bg-white group hover:-translate-y-2 transition-all duration-300",children:[(0,t.jsx)("div",{className:"bg-purple-50 w-16 h-16 rounded-2xl flex items-center justify-center mb-6 group-hover:bg-purple-500 transition-colors duration-300",children:(0,t.jsx)(f.Phone,{className:"w-8 h-8 text-purple-500 group-hover:text-white transition-colors duration-300"})}),(0,t.jsx)("h4",{className:"font-extrabold text-slate-900 text-xl mb-3 uppercase tracking-tight",children:e.pricing.extra.custom.title}),(0,t.jsx)("p",{className:"text-slate-500 text-sm leading-relaxed",children:e.pricing.extra.custom.desc})]})]}),(0,t.jsxs)("div",{className:"mt-24 text-center space-y-8 bg-slate-900 rounded-[3rem] p-16 text-white overflow-hidden relative",children:[(0,t.jsx)("div",{className:"absolute top-0 right-0 w-64 h-64 bg-primary/20 rounded-full blur-3xl -mr-32 -mt-32"}),(0,t.jsxs)("div",{className:"relative z-10 flex flex-col items-center",children:[(0,t.jsx)("h2",{className:"text-3xl md:text-5xl font-black uppercase tracking-tighter mb-8",children:e.pricing.cta.title}),(0,t.jsxs)("div",{className:"flex flex-wrap justify-center gap-12",children:[(0,t.jsxs)("a",{href:`tel:${e.common.phone.replace(/\s/g,"")}`,className:"flex items-center gap-4 text-xl md:text-2xl font-black hover:text-primary transition-colors decoration-primary decoration-4 underline-offset-8 group",children:[(0,t.jsx)("div",{className:"bg-white/5 p-3 rounded-2xl group-hover:bg-primary transition-colors",children:(0,t.jsx)(f.Phone,{className:"text-primary group-hover:text-white"})}),e.common.phone]}),(0,t.jsxs)("a",{href:`mailto:${e.common.email}`,className:"flex items-center gap-4 text-xl md:text-2xl font-black hover:text-primary transition-colors decoration-primary decoration-4 underline-offset-8 group",children:[(0,t.jsx)("div",{className:"bg-white/5 p-3 rounded-2xl group-hover:bg-primary transition-colors",children:(0,t.jsx)(y.Mail,{className:"text-primary group-hover:text-white"})}),e.common.email]})]})]})]})]})}),(0,t.jsx)(s.default,{})]})}e.s(["default",()=>N],61030)}]); \ No newline at end of file diff --git a/out/_next/static/chunks/f848d622537f1dc7.js b/out/_next/static/chunks/f848d622537f1dc7.js deleted file mode 100644 index aeb2518..0000000 --- a/out/_next/static/chunks/f848d622537f1dc7.js +++ /dev/null @@ -1 +0,0 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,33525,(e,a,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"warnOnce",{enumerable:!0,get:function(){return s}});let s=e=>{}},26577,e=>{e.v({data:[{area:"SkyFly Travel",placeId:"ChIJQz_NzJm_a0cRGW1U_iUDLuU",rating:5,userRatingCount:285,reviews:[{text:"Mindig a SkyFly-jal utazunk a repülőterekre. Utastársaim nevében is a legjobbakat tudom mondani a cégről és szívesen ajánlom őket mindenkinek. Pontos szervezés, kedves, udvarias és rutinos sofőrök.",rating:5,author:"Gyopar Kallos",publishTime:"2026-01-13T13:05:09.781273430Z"},{text:"Évente több alkalommal használom reptéri transzfer szolgáltatásukat. Minden alkalommal a megbeszéltek szerint, pontosan a helyszínen voltak. Sofőrjeik segítőkészek. A megrendelés leadása után nem zaklatják az embert különféle emailekkel. Az utazás előtti napon küldik a sofőr nevét, elérhetőségét.",rating:5,author:"Péter",publishTime:"2025-12-04T13:51:00.646252562Z"},{text:"Évek óta a SkyFly szolgáltatását használjuk, mindig maximálisan elégedett voltunk. Megbízhatóak, pontosak és rugalmasak, ami hosszú utazások előtt és után különösen sokat jelent. A sofőrök kedvesek, figyelmesek és biztonságosan vezetnek.\nAz autók tiszták, kényelmesek, minden alkalommal gördülékeny a teljes transzfer. Bátran ajánlom mindenkinek, aki minőségi és profi szolgáltatást keres!",rating:5,author:"Csaba Farkas",publishTime:"2025-11-19T10:02:24.246395337Z"},{text:"Nagyon elégedett voltam a szolgáltatással! A sofőr pontosan érkezett, udvarias és segítőkész volt, az autó tiszta és kényelmes. Az út gyorsan és biztonságosan telt, minden gördülékenyen zajlott. Bátran ajánlom mindenkinek, aki megbízható reptéri transzfert keres.",rating:5,author:"Tunde Csendes",publishTime:"2025-10-08T06:21:01.050570478Z"},{text:"100%-os pozitív tapasztalat, nagyon örülök, hogy rátaláltunk a cégre. A kapott árajánlatok közül messze a legjobb árat kaptuk tőlük reptéri transzferre.Korrekt ár, gördülékeny kommunikáció, gyors és precíz választ kaptunk minden kérdésünkre. A sofőr nagyon kedves, udvarias, pontos és megbízható volt. A járatunk késését is nagyon rugalmasan kezelték. Csak ajánlani tudjuk őket a legjobb szívvel.",rating:5,author:"Gruber Andrea",publishTime:"2025-09-22T12:24:38.650812077Z"}]}]})},61405,e=>{e.v({data:[{area:"SkyFly Travel",placeId:"ChIJQz_NzJm_a0cRGW1U_iUDLuU",rating:5,userRatingCount:285,reviews:[{text:"Sky fly is a great company. The booking website is easy to understand. And the prices are fare. Also when a last minute situation occurs they always make it work to get you to your destination. Over the years I had a couple situations where I needed a last second change and every time the make it work. The drivers are also great. I would recommend this shuttle service.",rating:5,author:"matthijs van leijenhorst",publishTime:"2025-09-22T07:55:17.174730841Z"},{text:"Travel SkyFly has been providing an outstanding experience. The drivers are professional, punctual, and polite, and their cars are always immaculate and comfortable. Whether you're traveling between Vienna and Budapest or need reliable airport transportation, I highly recommend their services. Truly a hassle-free and dependable choice!",rating:5,author:"Krisztian Nagy",publishTime:"2024-12-04T16:27:45.117418Z"},{text:"SkyFly Travel Kft is MORE than a partner in providing the best chauffeur service — professional, reliable, and always exceeding expectations. Highly recommended for anyone seeking comfort, punctuality, and premium service in every ride - ViziZene Kft",rating:5,author:"Zoltan Biczo",publishTime:"2025-05-11T05:53:25.464513Z"},{text:"Professional, punctual, polite driver. Nice clean cars. I would highly recommend to those who needs a ride from or to airport from Vienna or to Budapest. I had a last minute booking, they were there as promised. Punctual arriving for my flight. Highly recommend.",rating:5,author:"Judit Csibi",publishTime:"2023-09-05T21:47:44.438396Z"},{text:"I was asked to fill in a review about my experiences with flysky travel. I have been able to experience a taxi ride with them 6 times so far. Everything is arranged down to the last detail, the reservation, the information provided about how the trip will go.. and especially the drivers. I have no complaints about this, polite and friendly drivers. In my case I have been picked up several times by Roland Klauz. This driver is recommended to be picked up by. Super friendly guy. Who takes you from A to B in a relaxed way. And with whom good contact can be maintained before / during and after the ride. Applause for Skyfly. Greetings Martijn van der Meer.",rating:5,author:"Martijn van der Meer",publishTime:"2024-08-05T15:18:27.019324Z"}]}]})},95010,e=>{"use strict";var a=e.i(43476),t=e.i(46932),s=e.i(47163);e.s(["default",0,({className:e,children:l})=>(0,a.jsx)(t.motion.main,{className:(0,s.cn)(e),initial:{opacity:0,y:24},animate:{opacity:1,y:0},transition:{duration:.7,ease:[.16,1,.3,1]},children:l})])},95468,e=>{"use strict";let a=(0,e.i(75254).default)("circle-check",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);e.s(["CheckCircle2",()=>a],95468)},83157,e=>{"use strict";let a=(0,e.i(75254).default)("facebook",[["path",{d:"M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z",key:"1jg4f8"}]]);e.s(["Facebook",()=>a],83157)},70273,e=>{"use strict";let a=(0,e.i(75254).default)("star",[["path",{d:"M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z",key:"r04s7s"}]]);e.s(["Star",()=>a],70273)},51539,e=>{"use strict";var a=e.i(43476),t=e.i(63780),s=e.i(76841),l=e.i(95010),i=e.i(71689),r=e.i(83157),n=e.i(70273),o=e.i(95468),d=e.i(22016),c=e.i(57688),h=e.i(50661);function m(){let{t:e}=(0,h.useLanguage)();return(0,a.jsxs)(l.default,{className:"relative min-h-screen bg-slate-50",children:[(0,a.jsx)(t.default,{darkMode:!0}),(0,a.jsxs)("section",{className:"relative pt-40 pb-20 overflow-hidden bg-slate-900",children:[(0,a.jsx)("div",{className:"absolute inset-0 bg-gradient-to-br from-blue-600/20 to-purple-600/20 -z-10"}),(0,a.jsxs)("div",{className:"max-w-7xl mx-auto px-6 relative z-10",children:[(0,a.jsxs)(d.default,{href:"/",className:"inline-flex items-center text-white/70 hover:text-white mb-10 transition-colors group",children:[(0,a.jsx)(i.ArrowLeft,{className:"w-4 h-4 mr-2 group-hover:-translate-x-1 transition-transform"}),(0,a.jsx)("span",{className:"text-xs font-bold uppercase tracking-widest",children:e.discounts.pages.fbGoogle.back})]}),(0,a.jsxs)("h1",{className:"text-5xl md:text-7xl font-black text-white uppercase tracking-tighter leading-none mb-6",children:[e.discounts.fbGoogle.title," ",(0,a.jsx)("br",{}),(0,a.jsx)("span",{className:"text-primary italic",children:e.discounts.pages.fbGoogle.discountLabel})]})]})]}),(0,a.jsx)("section",{className:"py-24",children:(0,a.jsx)("div",{className:"max-w-7xl mx-auto px-6",children:(0,a.jsxs)("div",{className:"grid grid-cols-1 lg:grid-cols-2 gap-16",children:[(0,a.jsxs)("div",{className:"space-y-12",children:[(0,a.jsxs)("div",{className:"space-y-6",children:[(0,a.jsxs)("div",{className:"flex items-center gap-4",children:[(0,a.jsx)("div",{className:"w-12 h-12 bg-blue-600 rounded-2xl flex items-center justify-center shadow-lg shadow-blue-600/20",children:(0,a.jsx)(r.Facebook,{className:"text-white w-6 h-6"})}),(0,a.jsx)("h2",{className:"text-3xl font-black text-slate-900 uppercase tracking-tight",children:e.discounts.pages.fbGoogle.fbTitle})]}),(0,a.jsx)("ul",{className:"space-y-4",children:e.discounts.pages.fbGoogle.fbSteps.map((e,t)=>(0,a.jsxs)("li",{className:"flex items-start gap-3 text-slate-600 font-medium",children:[(0,a.jsx)(o.CheckCircle2,{className:"w-5 h-5 text-blue-600 mt-1 shrink-0"}),(0,a.jsx)("span",{children:e})]},t))}),(0,a.jsx)("div",{className:"pt-4",children:(0,a.jsxs)("a",{href:"https://www.facebook.com/airporttransfer.gyor",target:"_blank",rel:"noopener noreferrer",className:"inline-flex items-center gap-2 bg-blue-600 text-white px-8 py-4 rounded-full font-bold hover:bg-blue-700 transition-colors shadow-xl shadow-blue-600/20",children:[(0,a.jsx)(r.Facebook,{className:"w-5 h-5"}),e.discounts.pages.fbGoogle.facebookOpen]})})]}),(0,a.jsxs)("div",{className:"space-y-6",children:[(0,a.jsx)("h3",{className:"text-xl font-bold text-slate-900",children:e.discounts.pages.fbGoogle.helperText}),(0,a.jsx)("div",{className:"relative aspect-video rounded-3xl overflow-hidden shadow-2xl border border-slate-200",children:(0,a.jsx)(c.default,{src:"/images/SkyFlyFBLike.gif",alt:"Facebook Like Help",fill:!0,sizes:"(min-width: 1024px) 50vw, 100vw",className:"object-contain bg-white"})})]})]}),(0,a.jsxs)("div",{className:"space-y-12",children:[(0,a.jsxs)("div",{className:"space-y-6",children:[(0,a.jsxs)("div",{className:"flex items-center gap-4",children:[(0,a.jsx)("div",{className:"w-12 h-12 bg-white rounded-2xl flex items-center justify-center shadow-lg border border-slate-100",children:(0,a.jsx)(n.Star,{className:"text-yellow-500 w-6 h-6 fill-yellow-500"})}),(0,a.jsx)("h2",{className:"text-3xl font-black text-slate-900 uppercase tracking-tight",children:e.discounts.pages.fbGoogle.googleTitle})]}),(0,a.jsx)("ul",{className:"space-y-4",children:e.discounts.pages.fbGoogle.googleSteps.map((e,t)=>(0,a.jsxs)("li",{className:"flex items-start gap-3 text-slate-600 font-medium",children:[(0,a.jsx)(o.CheckCircle2,{className:"w-5 h-5 text-yellow-500 mt-1 shrink-0"}),(0,a.jsx)("span",{children:e})]},t))}),(0,a.jsx)("div",{className:"pt-4",children:(0,a.jsxs)("a",{href:"https://g.page/r/CRltVP4lAy7lEBM/review",target:"_blank",rel:"noopener noreferrer",className:"inline-flex items-center gap-2 bg-white text-slate-900 border border-slate-200 px-8 py-4 rounded-full font-bold hover:bg-slate-50 transition-colors shadow-lg",children:[(0,a.jsx)(n.Star,{className:"w-5 h-5 text-yellow-500 fill-yellow-500"}),e.discounts.pages.fbGoogle.googleReview]})})]}),(0,a.jsxs)("div",{className:"space-y-6",children:[(0,a.jsx)("h3",{className:"text-xl font-bold text-slate-900",children:e.discounts.pages.fbGoogle.facebookLabel}),(0,a.jsx)("div",{className:"rounded-3xl overflow-hidden shadow-2xl border border-slate-200 bg-white p-4",children:(0,a.jsx)("iframe",{src:"https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2Fairporttransfer.gyor&tabs=timeline&width=500&height=500&small_header=false&adapt_container_width=true&hide_cover=false&show_facepile=true&appId",width:"100%",height:"500",style:{border:"none",overflow:"hidden"},scrolling:"no",frameBorder:"0",allowFullScreen:!0,allow:"autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share"})})]})]})]})})}),(0,a.jsx)(s.default,{})]})}e.s(["default",()=>m])}]); \ No newline at end of file diff --git a/out/_next/static/chunks/fa5e60f25affe4ad.js b/out/_next/static/chunks/fa5e60f25affe4ad.js new file mode 100644 index 0000000..c9ef247 --- /dev/null +++ b/out/_next/static/chunks/fa5e60f25affe4ad.js @@ -0,0 +1 @@ +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,33525,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"warnOnce",{enumerable:!0,get:function(){return s}});let s=e=>{}},95010,e=>{"use strict";var t=e.i(43476),r=e.i(46932),s=e.i(47163);e.s(["default",0,({className:e,children:a})=>(0,t.jsx)(r.motion.main,{className:(0,s.cn)(e),initial:{opacity:0,y:24},animate:{opacity:1,y:0},transition:{duration:.7,ease:[.16,1,.3,1]},children:a})])},95468,e=>{"use strict";let t=(0,e.i(75254).default)("circle-check",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);e.s(["CheckCircle2",()=>t],95468)},8341,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var s={cancelIdleCallback:function(){return i},requestIdleCallback:function(){return n}};for(var a in s)Object.defineProperty(r,a,{enumerable:!0,get:s[a]});let n="u">typeof self&&self.requestIdleCallback&&self.requestIdleCallback.bind(window)||function(e){let t=Date.now();return self.setTimeout(function(){e({didTimeout:!1,timeRemaining:function(){return Math.max(0,50-(Date.now()-t))}})},1)},i="u">typeof self&&self.cancelIdleCallback&&self.cancelIdleCallback.bind(window)||function(e){return clearTimeout(e)};("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},79520,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var s={default:function(){return y},handleClientScriptLoad:function(){return h},initScriptLoader:function(){return b}};for(var a in s)Object.defineProperty(r,a,{enumerable:!0,get:s[a]});let n=e.r(55682),i=e.r(90809),l=e.r(43476),c=n._(e.r(74080)),o=i._(e.r(71645)),d=e.r(42732),u=e.r(22737),f=e.r(8341),p=new Map,x=new Set,m=e=>{let{src:t,id:r,onLoad:s=()=>{},onReady:a=null,dangerouslySetInnerHTML:n,children:i="",strategy:l="afterInteractive",onError:o,stylesheets:d}=e,f=r||t;if(f&&x.has(f))return;if(p.has(t)){x.add(f),p.get(t).then(s,o);return}let m=()=>{a&&a(),x.add(f)},h=document.createElement("script"),b=new Promise((e,t)=>{h.addEventListener("load",function(t){e(),s&&s.call(this,t),m()}),h.addEventListener("error",function(e){t(e)})}).catch(function(e){o&&o(e)});n?(h.innerHTML=n.__html||"",m()):i?(h.textContent="string"==typeof i?i:Array.isArray(i)?i.join(""):"",m()):t&&(h.src=t,p.set(t,b)),(0,u.setAttributesFromProps)(h,e),"worker"===l&&h.setAttribute("type","text/partytown"),h.setAttribute("data-nscript",l),d&&(e=>{if(c.default.preinit)return e.forEach(e=>{c.default.preinit(e,{as:"style"})});if("u">typeof window){let t=document.head;e.forEach(e=>{let r=document.createElement("link");r.type="text/css",r.rel="stylesheet",r.href=e,t.appendChild(r)})}})(d),document.body.appendChild(h)};function h(e){let{strategy:t="afterInteractive"}=e;"lazyOnload"===t?window.addEventListener("load",()=>{(0,f.requestIdleCallback)(()=>m(e))}):m(e)}function b(e){e.forEach(h),[...document.querySelectorAll('[data-nscript="beforeInteractive"]'),...document.querySelectorAll('[data-nscript="beforePageRender"]')].forEach(e=>{let t=e.id||e.getAttribute("src");x.add(t)})}function g(e){let{id:t,src:r="",onLoad:s=()=>{},onReady:a=null,strategy:n="afterInteractive",onError:i,stylesheets:u,...p}=e,{updateScripts:h,scripts:b,getIsSsr:g,appDir:y,nonce:k}=(0,o.useContext)(d.HeadManagerContext);k=p.nonce||k;let v=(0,o.useRef)(!1);(0,o.useEffect)(()=>{let e=t||r;v.current||(a&&e&&x.has(e)&&a(),v.current=!0)},[a,t,r]);let w=(0,o.useRef)(!1);if((0,o.useEffect)(()=>{if(!w.current){if("afterInteractive"===n)m(e);else"lazyOnload"===n&&("complete"===document.readyState?(0,f.requestIdleCallback)(()=>m(e)):window.addEventListener("load",()=>{(0,f.requestIdleCallback)(()=>m(e))}));w.current=!0}},[e,n]),("beforeInteractive"===n||"worker"===n)&&(h?(b[n]=(b[n]||[]).concat([{id:t,src:r,onLoad:s,onReady:a,onError:i,...p,nonce:k}]),h(b)):g&&g()?x.add(t||r):g&&!g()&&m({...e,nonce:k})),y){if(u&&u.forEach(e=>{c.default.preinit(e,{as:"style"})}),"beforeInteractive"===n)if(!r)return p.dangerouslySetInnerHTML&&(p.children=p.dangerouslySetInnerHTML.__html,delete p.dangerouslySetInnerHTML),(0,l.jsx)("script",{nonce:k,dangerouslySetInnerHTML:{__html:`(self.__next_s=self.__next_s||[]).push(${JSON.stringify([0,{...p,id:t}])})`}});else return c.default.preload(r,p.integrity?{as:"script",integrity:p.integrity,nonce:k,crossOrigin:p.crossOrigin}:{as:"script",nonce:k,crossOrigin:p.crossOrigin}),(0,l.jsx)("script",{nonce:k,dangerouslySetInnerHTML:{__html:`(self.__next_s=self.__next_s||[]).push(${JSON.stringify([r,{...p,id:t}])})`}});"afterInteractive"===n&&r&&c.default.preload(r,p.integrity?{as:"script",integrity:p.integrity,nonce:k,crossOrigin:p.crossOrigin}:{as:"script",nonce:k,crossOrigin:p.crossOrigin})}return null}Object.defineProperty(g,"__nextScript",{value:!0});let y=g;("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},3303,(e,t,r)=>{t.exports=e.r(79520)},6494,e=>{"use strict";var t=e.i(43476),r=e.i(63780),s=e.i(76841),a=e.i(95010),n=e.i(71689),i=e.i(95468),l=e.i(22016),c=e.i(3303),o=e.i(50661);function d(){let{t:e}=(0,o.useLanguage)();return(0,t.jsxs)(a.default,{className:"relative min-h-screen bg-slate-50",children:[(0,t.jsx)(r.default,{darkMode:!0}),(0,t.jsxs)("section",{className:"relative pt-40 pb-20 overflow-hidden bg-black",children:[(0,t.jsx)("div",{className:"absolute inset-0 bg-gradient-to-br from-pink-600/20 to-cyan-400/20 -z-10"}),(0,t.jsxs)("div",{className:"max-w-7xl mx-auto px-6 relative z-10",children:[(0,t.jsxs)(l.default,{href:"/",className:"inline-flex items-center text-white/70 hover:text-white mb-10 transition-colors group",children:[(0,t.jsx)(n.ArrowLeft,{className:"w-4 h-4 mr-2 group-hover:-translate-x-1 transition-transform"}),(0,t.jsx)("span",{className:"text-xs font-bold uppercase tracking-widest",children:e.discounts.pages.tiktok.back})]}),(0,t.jsxs)("h1",{className:"text-5xl md:text-7xl font-black text-white uppercase tracking-tighter leading-none mb-6",children:[e.discounts.tiktok.title," ",(0,t.jsx)("br",{}),(0,t.jsx)("span",{className:"text-primary italic",children:e.discounts.pages.tiktok.discountLabel})]})]})]}),(0,t.jsx)("section",{className:"py-24",children:(0,t.jsx)("div",{className:"max-w-4xl mx-auto px-6",children:(0,t.jsxs)("div",{className:"bg-white rounded-[3rem] p-10 md:p-16 shadow-2xl border border-slate-100 space-y-12",children:[(0,t.jsxs)("div",{className:"space-y-8",children:[(0,t.jsxs)("div",{className:"flex items-center gap-4",children:[(0,t.jsx)("div",{className:"w-12 h-12 bg-black rounded-2xl flex items-center justify-center shadow-lg",children:(0,t.jsx)("svg",{viewBox:"0 0 24 24",className:"w-6 h-6 fill-white",xmlns:"http://www.w3.org/2000/svg",children:(0,t.jsx)("path",{d:"M12.525.02c1.31-.036 2.612-.01 3.91-.01.1.993.414 1.956.96 2.784.73 1.096 1.764 1.93 2.97 2.45v3.91c-.815-.09-1.62-.315-2.38-.64-.816-.35-1.545-.88-2.15-1.53-.102.043-.102.164-.102.26v9.06c0 1.54-.34 3.05-1 4.41-.65 1.35-1.63 2.5-2.83 3.33-1.4.95-3.08 1.45-4.79 1.45-1.68 0-3.32-.48-4.73-1.39-1.21-.79-2.2-1.9-2.86-3.21-.71-1.37-1.07-2.9-1.07-4.47s.36-3.1 1.07-4.47c.66-1.31 1.65-2.42 2.86-3.21 1.25-.8 2.69-1.23 4.18-1.25.102 0 .204-.006.307-.006v3.94c-.037-.006-.074-.012-.112-.012-1.25.038-2.44.57-3.31 1.49-.89.92-1.38 2.16-1.38 3.45 0 1.29.49 2.53 1.38 3.45.87.92 2.06 1.45 3.31 1.49 1.25-.038 2.44-.57 3.31-1.49.89-.92 1.38-2.16 1.38-3.45V0l.024.02z"})})}),(0,t.jsx)("h2",{className:"text-3xl font-black text-slate-900 uppercase tracking-tight",children:e.discounts.pages.tiktok.claimTitle})]}),(0,t.jsx)("ul",{className:"grid grid-cols-1 md:grid-cols-2 gap-6",children:e.discounts.pages.tiktok.steps.map((e,r)=>(0,t.jsxs)("li",{className:"flex items-start gap-3 p-6 bg-slate-50 rounded-2xl border border-slate-100 text-slate-700 font-bold group hover:border-primary/30 transition-colors",children:[(0,t.jsx)(i.CheckCircle2,{className:"w-5 h-5 text-primary mt-1 shrink-0"}),(0,t.jsx)("span",{children:e})]},r))})]}),(0,t.jsxs)("div",{className:"space-y-8 pt-8 border-t border-slate-100 text-center",children:[(0,t.jsx)("h3",{className:"text-2xl font-black text-slate-900 uppercase tracking-tight",children:e.discounts.pages.tiktok.videoTitle}),(0,t.jsxs)("div",{className:"relative mx-auto max-w-[325px] aspect-[9/16] rounded-3xl overflow-hidden shadow-2xl border border-slate-200 bg-black",children:[(0,t.jsx)("blockquote",{className:"tiktok-embed",cite:"https://www.tiktok.com/@skyflytravel.transfer/video/7595495377424370966","data-video-id":"7595495377424370966",style:{maxWidth:"605px",minWidth:"325px"},children:(0,t.jsx)("section",{children:(0,t.jsx)("a",{target:"_blank",title:e.common.tiktokHandle,href:"https://www.tiktok.com/@skyflytravel.transfer?refer=embed",children:e.common.tiktokHandle})})}),(0,t.jsx)(c.default,{async:!0,src:"https://www.tiktok.com/embed.js"})]})]}),(0,t.jsx)("div",{className:"pt-10 flex justify-center",children:(0,t.jsxs)("a",{href:"https://www.tiktok.com/@skyflytravel.transfer",target:"_blank",rel:"noopener noreferrer",className:"inline-flex items-center gap-2 bg-black text-white px-10 py-5 rounded-full font-bold hover:bg-slate-900 transition-colors shadow-2xl",children:[(0,t.jsx)("svg",{viewBox:"0 0 24 24",className:"w-5 h-5 fill-white",xmlns:"http://www.w3.org/2000/svg",children:(0,t.jsx)("path",{d:"M12.525.02c1.31-.036 2.612-.01 3.91-.01.1.993.414 1.956.96 2.784.73 1.096 1.764 1.93 2.97 2.45v3.91c-.815-.09-1.62-.315-2.38-.64-.816-.35-1.545-.88-2.15-1.53-.102.043-.102.164-.102.26v9.06c0 1.54-.34 3.05-1 4.41-.65 1.35-1.63 2.5-2.83 3.33-1.4.95-3.08 1.45-4.79 1.45-1.68 0-3.32-.48-4.73-1.39-1.21-.79-2.2-1.9-2.86-3.21-.71-1.37-1.07-2.9-1.07-4.47s.36-3.1 1.07-4.47c.66-1.31 1.65-2.42 2.86-3.21 1.25-.8 2.69-1.23 4.18-1.25.102 0 .204-.006.307-.006v3.94c-.037-.006-.074-.012-.112-.012-1.25.038-2.44.57-3.31 1.49-.89.92-1.38 2.16-1.38 3.45 0 1.29.49 2.53 1.38 3.45.87.92 2.06 1.45 3.31 1.49 1.25-.038 2.44-.57 3.31-1.49.89-.92 1.38-2.16 1.38-3.45V0l.024.02z"})}),e.discounts.pages.tiktok.openPage]})})]})})}),(0,t.jsx)(s.default,{})]})}e.s(["default",()=>d])}]); \ No newline at end of file diff --git a/out/_not-found/__next._full.txt b/out/_not-found/__next._full.txt index d818262..57eb1c0 100644 --- a/out/_not-found/__next._full.txt +++ b/out/_not-found/__next._full.txt @@ -8,8 +8,8 @@ 9:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ViewportBoundary"] b:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] d:I[68027,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] -0:{"P":null,"b":"dlUmvSkzMXWqNPc7KK_BI","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/b82ba4ad59b06105.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:0:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:0:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:0:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:0:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L9",null,{"children":"$La"}],["$","div",null,{"hidden":true,"children":["$","$Lb",null,{"children":["$","$7",null,{"name":"Next.Metadata","children":"$Lc"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$d","$undefined"],"S":true} +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] +0:{"P":null,"b":"Pj4xFqf2HT4fIIHVuAQ_W","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/0ac639d69cda9244.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:0:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:0:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:0:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:0:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L9",null,{"children":"$La"}],["$","div",null,{"hidden":true,"children":["$","$Lb",null,{"children":["$","$7",null,{"name":"Next.Metadata","children":"$Lc"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$d","$undefined"],"S":true} a:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] e:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"IconMark"] 8:null diff --git a/out/_not-found/__next._head.txt b/out/_not-found/__next._head.txt index b1196ba..2786c11 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":"dlUmvSkzMXWqNPc7KK_BI","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":"icon","href":"/favicon.ico?favicon.86cc8906.ico","sizes":"16x16","type":"image/x-icon"}],["$","$L5","4",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","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":"icon","href":"/favicon.ico?favicon.86cc8906.ico","sizes":"16x16","type":"image/x-icon"}],["$","$L5","4",{}]]}]}]}],["$","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 7ae2f9b..5cc6e61 100644 --- a/out/_not-found/__next._index.txt +++ b/out/_not-found/__next._index.txt @@ -3,5 +3,5 @@ 3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/b82ba4ad59b06105.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$L5",null,{}]]}]}]}]]}],"loading":null,"isPartial":false} +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0ac639d69cda9244.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$L5",null,{}]]}]}]}]]}],"loading":null,"isPartial":false} diff --git a/out/_not-found/__next._not-found.txt b/out/_not-found/__next._not-found.txt index 12da382..dc08b13 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":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","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 1d6d027..a103170 100644 --- a/out/_not-found/__next._not-found/__PAGE__.txt +++ b/out/_not-found/__next._not-found/__PAGE__.txt @@ -1,5 +1,5 @@ 1:"$Sreact.fragment" 2:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] 3:"$Sreact.suspense" -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","rsc":["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"loading":null,"isPartial":false} 4:null diff --git a/out/_not-found/__next._tree.txt b/out/_not-found/__next._tree.txt index 5dc50c2..0fc75a4 100644 --- a/out/_not-found/__next._tree.txt +++ b/out/_not-found/__next._tree.txt @@ -1,2 +1,2 @@ -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","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} +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","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 36945b0..4694592 100644 --- a/out/_not-found/index.html +++ b/out/_not-found/index.html @@ -1 +1 @@ -404: This page could not be found.SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!

404

This page could not be found.

\ No newline at end of file +404: This page could not be found.SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!

404

This page could not be found.

\ No newline at end of file diff --git a/out/_not-found/index.txt b/out/_not-found/index.txt index d818262..57eb1c0 100644 --- a/out/_not-found/index.txt +++ b/out/_not-found/index.txt @@ -8,8 +8,8 @@ 9:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ViewportBoundary"] b:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] d:I[68027,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] -0:{"P":null,"b":"dlUmvSkzMXWqNPc7KK_BI","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/b82ba4ad59b06105.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:0:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:0:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:0:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:0:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L9",null,{"children":"$La"}],["$","div",null,{"hidden":true,"children":["$","$Lb",null,{"children":["$","$7",null,{"name":"Next.Metadata","children":"$Lc"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$d","$undefined"],"S":true} +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] +0:{"P":null,"b":"Pj4xFqf2HT4fIIHVuAQ_W","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/0ac639d69cda9244.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:0:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:0:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:0:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:0:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L9",null,{"children":"$La"}],["$","div",null,{"hidden":true,"children":["$","$Lb",null,{"children":["$","$7",null,{"name":"Next.Metadata","children":"$Lc"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$d","$undefined"],"S":true} a:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] e:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"IconMark"] 8:null diff --git a/out/akciok/facebook-google/__next._full.txt b/out/akciok/facebook-google/__next._full.txt index 9f9375c..c172ded 100644 --- a/out/akciok/facebook-google/__next._full.txt +++ b/out/akciok/facebook-google/__next._full.txt @@ -4,15 +4,15 @@ 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] 6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"] -7:I[51539,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/f848d622537f1dc7.js","/_next/static/chunks/395811fdad4290d6.js"],"default"] +7:I[51539,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/b90daf66f1af1d6b.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"] a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] b:"$Sreact.suspense" d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ViewportBoundary"] f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 11:I[68027,[],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"dlUmvSkzMXWqNPc7KK_BI","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/b82ba4ad59b06105.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/f848d622537f1dc7.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/395811fdad4290d6.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} +0:{"P":null,"b":"Pj4xFqf2HT4fIIHVuAQ_W","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/0ac639d69cda9244.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/b90daf66f1af1d6b.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/9d04f56e53f43e3d.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} 8:{} 9:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" e:[["$","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 526898f..a799f50 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":"dlUmvSkzMXWqNPc7KK_BI","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":"icon","href":"/favicon.ico?favicon.86cc8906.ico","sizes":"16x16","type":"image/x-icon"}],["$","$L5","4",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","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":"icon","href":"/favicon.ico?favicon.86cc8906.ico","sizes":"16x16","type":"image/x-icon"}],["$","$L5","4",{}]]}]}]}],["$","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 7ae2f9b..5cc6e61 100644 --- a/out/akciok/facebook-google/__next._index.txt +++ b/out/akciok/facebook-google/__next._index.txt @@ -3,5 +3,5 @@ 3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/b82ba4ad59b06105.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$L5",null,{}]]}]}]}]]}],"loading":null,"isPartial":false} +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0ac639d69cda9244.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$L5",null,{}]]}]}]}]]}],"loading":null,"isPartial":false} diff --git a/out/akciok/facebook-google/__next._tree.txt b/out/akciok/facebook-google/__next._tree.txt index ae92d3d..cc44a0c 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/b82ba4ad59b06105.css","style"] +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","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":"Pj4xFqf2HT4fIIHVuAQ_W","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 12da382..dc08b13 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":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","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 12da382..dc08b13 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":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","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 9d41d81..31dafe0 100644 --- a/out/akciok/facebook-google/__next.akciok/facebook-google/__PAGE__.txt +++ b/out/akciok/facebook-google/__next.akciok/facebook-google/__PAGE__.txt @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" 2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"] -3:I[51539,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/f848d622537f1dc7.js","/_next/static/chunks/395811fdad4290d6.js"],"default"] +3:I[51539,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/b90daf66f1af1d6b.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"] 6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/f848d622537f1dc7.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/395811fdad4290d6.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/b90daf66f1af1d6b.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/9d04f56e53f43e3d.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 2d6e703..d283be4 100644 --- a/out/akciok/facebook-google/index.html +++ b/out/akciok/facebook-google/index.html @@ -1 +1 @@ -SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!
Vissza a kezdőlapra

Facebook & Google
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
Google
5.0
(285)
★★★★★
Gyopar Kallos

Mindig a SkyFly-jal utazunk a repülőterekre. Utastársaim nevében is a legjobbakat tudom mondani a cégről és szívesen ajánlom őket mindenkinek. Pontos szervezés,...

★★★★★
Péter

Évente több alkalommal használom reptéri transzfer szolgáltatásukat. Minden alkalommal a megbeszéltek szerint, pontosan a helyszínen voltak. Sofőrjeik segítőkés...

Összes értékelés
FacebookGoogle PlusX (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!
Vissza a kezdőlapra

Facebook & Google
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
Google
5.0
(0)
Összes értékelés
FacebookGoogle PlusX (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 9f9375c..c172ded 100644 --- a/out/akciok/facebook-google/index.txt +++ b/out/akciok/facebook-google/index.txt @@ -4,15 +4,15 @@ 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] 6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"] -7:I[51539,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/f848d622537f1dc7.js","/_next/static/chunks/395811fdad4290d6.js"],"default"] +7:I[51539,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/b90daf66f1af1d6b.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"] a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] b:"$Sreact.suspense" d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ViewportBoundary"] f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 11:I[68027,[],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"dlUmvSkzMXWqNPc7KK_BI","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/b82ba4ad59b06105.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/f848d622537f1dc7.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/395811fdad4290d6.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} +0:{"P":null,"b":"Pj4xFqf2HT4fIIHVuAQ_W","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/0ac639d69cda9244.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/b90daf66f1af1d6b.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/9d04f56e53f43e3d.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} 8:{} 9:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" e:[["$","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 acb4534..ab866fd 100644 --- a/out/akciok/tiktok/__next._full.txt +++ b/out/akciok/tiktok/__next._full.txt @@ -4,15 +4,15 @@ 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] 6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"] -7:I[6494,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/a05b0a9350a4e3d8.js","/_next/static/chunks/395811fdad4290d6.js"],"default"] +7:I[6494,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/fa5e60f25affe4ad.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"] a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] b:"$Sreact.suspense" d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ViewportBoundary"] f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 11:I[68027,[],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"dlUmvSkzMXWqNPc7KK_BI","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/b82ba4ad59b06105.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/a05b0a9350a4e3d8.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/395811fdad4290d6.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} +0:{"P":null,"b":"Pj4xFqf2HT4fIIHVuAQ_W","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/0ac639d69cda9244.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/fa5e60f25affe4ad.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/9d04f56e53f43e3d.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} 8:{} 9:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" e:[["$","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 526898f..a799f50 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":"dlUmvSkzMXWqNPc7KK_BI","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":"icon","href":"/favicon.ico?favicon.86cc8906.ico","sizes":"16x16","type":"image/x-icon"}],["$","$L5","4",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","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":"icon","href":"/favicon.ico?favicon.86cc8906.ico","sizes":"16x16","type":"image/x-icon"}],["$","$L5","4",{}]]}]}]}],["$","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 7ae2f9b..5cc6e61 100644 --- a/out/akciok/tiktok/__next._index.txt +++ b/out/akciok/tiktok/__next._index.txt @@ -3,5 +3,5 @@ 3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/b82ba4ad59b06105.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$L5",null,{}]]}]}]}]]}],"loading":null,"isPartial":false} +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0ac639d69cda9244.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$L5",null,{}]]}]}]}]]}],"loading":null,"isPartial":false} diff --git a/out/akciok/tiktok/__next._tree.txt b/out/akciok/tiktok/__next._tree.txt index 9a9a227..44faefa 100644 --- a/out/akciok/tiktok/__next._tree.txt +++ b/out/akciok/tiktok/__next._tree.txt @@ -1,3 +1,3 @@ -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","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":"Pj4xFqf2HT4fIIHVuAQ_W","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 12da382..dc08b13 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":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","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 12da382..dc08b13 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":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","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 d82208d..5d2c503 100644 --- a/out/akciok/tiktok/__next.akciok/tiktok/__PAGE__.txt +++ b/out/akciok/tiktok/__next.akciok/tiktok/__PAGE__.txt @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" 2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"] -3:I[6494,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/a05b0a9350a4e3d8.js","/_next/static/chunks/395811fdad4290d6.js"],"default"] +3:I[6494,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/fa5e60f25affe4ad.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"] 6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/a05b0a9350a4e3d8.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/395811fdad4290d6.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/fa5e60f25affe4ad.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/9d04f56e53f43e3d.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 820a46f..42970b2 100644 --- a/out/akciok/tiktok/index.html +++ b/out/akciok/tiktok/index.html @@ -1 +1 @@ -SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!
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
Google
5.0
(285)
★★★★★
Gyopar Kallos

Mindig a SkyFly-jal utazunk a repülőterekre. Utastársaim nevében is a legjobbakat tudom mondani a cégről és szívesen ajánlom őket mindenkinek. Pontos szervezés,...

★★★★★
Péter

Évente több alkalommal használom reptéri transzfer szolgáltatásukat. Minden alkalommal a megbeszéltek szerint, pontosan a helyszínen voltak. Sofőrjeik segítőkés...

Összes értékelés
FacebookGoogle PlusX (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!
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
Google
5.0
(0)
Összes értékelés
FacebookGoogle PlusX (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 acb4534..ab866fd 100644 --- a/out/akciok/tiktok/index.txt +++ b/out/akciok/tiktok/index.txt @@ -4,15 +4,15 @@ 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] 6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"] -7:I[6494,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/a05b0a9350a4e3d8.js","/_next/static/chunks/395811fdad4290d6.js"],"default"] +7:I[6494,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/fa5e60f25affe4ad.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"] a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] b:"$Sreact.suspense" d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ViewportBoundary"] f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 11:I[68027,[],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"dlUmvSkzMXWqNPc7KK_BI","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/b82ba4ad59b06105.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/a05b0a9350a4e3d8.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/395811fdad4290d6.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} +0:{"P":null,"b":"Pj4xFqf2HT4fIIHVuAQ_W","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/0ac639d69cda9244.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/fa5e60f25affe4ad.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/9d04f56e53f43e3d.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} 8:{} 9:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" e:[["$","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 4a0b0e9..ad3db7e 100644 --- a/out/arak/__next._full.txt +++ b/out/arak/__next._full.txt @@ -4,15 +4,15 @@ 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] 6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"] -7:I[61030,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/e205baa082f6954a.js","/_next/static/chunks/395811fdad4290d6.js"],"default"] +7:I[61030,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/7e5a7cffa7289968.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"] a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] b:"$Sreact.suspense" d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ViewportBoundary"] f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 11:I[68027,[],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"dlUmvSkzMXWqNPc7KK_BI","c":["","arak",""],"q":"","i":false,"f":[[["",{"children":["arak",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/b82ba4ad59b06105.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/e205baa082f6954a.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/395811fdad4290d6.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} +0:{"P":null,"b":"Pj4xFqf2HT4fIIHVuAQ_W","c":["","arak",""],"q":"","i":false,"f":[[["",{"children":["arak",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0ac639d69cda9244.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/7e5a7cffa7289968.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/9d04f56e53f43e3d.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} 8:{} 9:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" e:[["$","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 515fc0f..ecdfe8f 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":"dlUmvSkzMXWqNPc7KK_BI","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":"icon","href":"/favicon.ico?favicon.86cc8906.ico","sizes":"16x16","type":"image/x-icon"}],["$","$L5","4",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","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":"icon","href":"/favicon.ico?favicon.86cc8906.ico","sizes":"16x16","type":"image/x-icon"}],["$","$L5","4",{}]]}]}]}],["$","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 7ae2f9b..5cc6e61 100644 --- a/out/arak/__next._index.txt +++ b/out/arak/__next._index.txt @@ -3,5 +3,5 @@ 3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/b82ba4ad59b06105.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$L5",null,{}]]}]}]}]]}],"loading":null,"isPartial":false} +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0ac639d69cda9244.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$L5",null,{}]]}]}]}]]}],"loading":null,"isPartial":false} diff --git a/out/arak/__next._tree.txt b/out/arak/__next._tree.txt index a66af6b..c18a5c9 100644 --- a/out/arak/__next._tree.txt +++ b/out/arak/__next._tree.txt @@ -1,3 +1,3 @@ -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","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":"Pj4xFqf2HT4fIIHVuAQ_W","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 12da382..dc08b13 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":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","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 455d36b..a388906 100644 --- a/out/arak/__next.arak/__PAGE__.txt +++ b/out/arak/__next.arak/__PAGE__.txt @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" 2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"] -3:I[61030,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/e205baa082f6954a.js","/_next/static/chunks/395811fdad4290d6.js"],"default"] +3:I[61030,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/7e5a7cffa7289968.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"] 6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/e205baa082f6954a.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/395811fdad4290d6.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/7e5a7cffa7289968.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/9d04f56e53f43e3d.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 c709f1c..8c2cf15 100644 --- a/out/arak/index.html +++ b/out/arak/index.html @@ -1 +1 @@ -Árak - SkyFly Travel Reptéri Transzfer
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álasszon prémium flottánkból és élvezze a több mint 10 éves szakmai tapasztalatunkat.

Fontos foglalási információ

A foglalásokat kizárólag szabad kapacitás függvényében tudjuk visszaigazolni max. 3 munkanapon belül. Az út előtti munkanap 12:00 utáni foglalás esetén 2.500 Ft sürgősségi felárat számítunk fel.

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 HUFAmennyiben nincs más utas a viteldíj 23.500 HUF. (22:00-05:00 utasfelvétel esetén Private transzfer keretében tudjuk vállalni, ha nincs más)
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 opciók

1-3 fő (Mercedes E-class): 40.000 Ft
4-6 fő (Mercedes Vito / Ford Tourneo Custom): 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
22.000 HUFAmennyiben nincs más utas a viteldíj 28.000 HUF. (22:00-05:00 utasfelvétel esetén Private transzfer keretében tudjuk vállalni, ha nincs más)
PRIVATE
38.000 HUF
2 fő / 1 út
Gyűjtő EXPRESS
28.000 HUF
PRIVATE
38.000 HUF
3 fő / 1 út
Gyűjtő EXPRESS
33.000 HUF
PRIVATE
38.000 HUF
4 fő / 1 út
Gyűjtő EXPRESS
38.000 HUF
PRIVATE
45.000 HUF
5-6 fő / 1 út
Gyűjtő EXPRESS
42.000 HUF
PRIVATE
50.000 HUF
7-8 fő / 1 út
Gyűjtő EXPRESS
45.000 HUF
PRIVATE
52.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 opciók

1-3 fő (Mercedes E-class): 40.000 Ft
4-6 fő (Mercedes Vito / Ford Tourneo Custom): 50.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 HUFAmennyiben nincs más utas a viteldíj 23.500 HUF. (22:00-05:00 utasfelvétel esetén Private transzfer keretében tudjuk vállalni, ha nincs más)
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 opciók

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

VIENNA

BUDAPEST – BÉCS REPTÉR (SCHWECHAT) vagy BÉCS REPTÉR (SCHWECHAT) - BUDAPEST

1 fő / 1 út
Gyűjtő EXPRESS
40.000 HUFAmennyiben nincs más utas a viteldíj 50.000 HUF. (22:00-05:00 utasfelvétel esetén Private transzfer keretében tudjuk vállalni, ha nincs más)
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 opciók

1-3 fő (Mercedes E-class): 75.000 Ft
4-6 fő (Mercedes Vito / Ford Tourneo Custom): 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
Google
5.0
(285)
★★★★★
Gyopar Kallos

Mindig a SkyFly-jal utazunk a repülőterekre. Utastársaim nevében is a legjobbakat tudom mondani a cégről és szívesen ajánlom őket mindenkinek. Pontos szervezés,...

★★★★★
Péter

Évente több alkalommal használom reptéri transzfer szolgáltatásukat. Minden alkalommal a megbeszéltek szerint, pontosan a helyszínen voltak. Sofőrjeik segítőkés...

Összes értékelés
FacebookGoogle PlusX (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 Transzfer
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álasszon prémium flottánkból és élvezze a több mint 10 éves szakmai tapasztalatunkat.

Fontos foglalási információ

A foglalásokat kizárólag szabad kapacitás függvényében tudjuk visszaigazolni max. 3 munkanapon belül. Az út előtti munkanap 12:00 utáni foglalás esetén 2.500 Ft sürgősségi felárat számítunk fel.

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 HUFAmennyiben nincs más utas a viteldíj 23.500 HUF. (22:00-05:00 utasfelvétel esetén Private transzfer keretében tudjuk vállalni, ha nincs más)
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 opciók

1-3 fő (Mercedes E-class): 40.000 Ft
4-6 fő (Mercedes Vito / Ford Tourneo Custom): 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
22.000 HUFAmennyiben nincs más utas a viteldíj 28.000 HUF. (22:00-05:00 utasfelvétel esetén Private transzfer keretében tudjuk vállalni, ha nincs más)
PRIVATE
38.000 HUF
2 fő / 1 út
Gyűjtő EXPRESS
28.000 HUF
PRIVATE
38.000 HUF
3 fő / 1 út
Gyűjtő EXPRESS
33.000 HUF
PRIVATE
38.000 HUF
4 fő / 1 út
Gyűjtő EXPRESS
38.000 HUF
PRIVATE
45.000 HUF
5-6 fő / 1 út
Gyűjtő EXPRESS
42.000 HUF
PRIVATE
50.000 HUF
7-8 fő / 1 út
Gyűjtő EXPRESS
45.000 HUF
PRIVATE
52.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 opciók

1-3 fő (Mercedes E-class): 40.000 Ft
4-6 fő (Mercedes Vito / Ford Tourneo Custom): 50.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 HUFAmennyiben nincs más utas a viteldíj 23.500 HUF. (22:00-05:00 utasfelvétel esetén Private transzfer keretében tudjuk vállalni, ha nincs más)
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 opciók

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

VIENNA

BUDAPEST – BÉCS REPTÉR (SCHWECHAT) vagy BÉCS REPTÉR (SCHWECHAT) - BUDAPEST

1 fő / 1 út
Gyűjtő EXPRESS
40.000 HUFAmennyiben nincs más utas a viteldíj 50.000 HUF. (22:00-05:00 utasfelvétel esetén Private transzfer keretében tudjuk vállalni, ha nincs más)
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 opciók

1-3 fő (Mercedes E-class): 75.000 Ft
4-6 fő (Mercedes Vito / Ford Tourneo Custom): 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
Google
5.0
(0)
Összes értékelés
FacebookGoogle PlusX (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 4a0b0e9..ad3db7e 100644 --- a/out/arak/index.txt +++ b/out/arak/index.txt @@ -4,15 +4,15 @@ 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] 6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"] -7:I[61030,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/e205baa082f6954a.js","/_next/static/chunks/395811fdad4290d6.js"],"default"] +7:I[61030,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/7e5a7cffa7289968.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"] a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] b:"$Sreact.suspense" d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ViewportBoundary"] f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 11:I[68027,[],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"dlUmvSkzMXWqNPc7KK_BI","c":["","arak",""],"q":"","i":false,"f":[[["",{"children":["arak",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/b82ba4ad59b06105.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/e205baa082f6954a.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/395811fdad4290d6.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} +0:{"P":null,"b":"Pj4xFqf2HT4fIIHVuAQ_W","c":["","arak",""],"q":"","i":false,"f":[[["",{"children":["arak",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0ac639d69cda9244.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/7e5a7cffa7289968.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/9d04f56e53f43e3d.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} 8:{} 9:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" e:[["$","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 ab82afc..5cd7e3a 100644 --- a/out/feltetelek/__next._full.txt +++ b/out/feltetelek/__next._full.txt @@ -4,15 +4,15 @@ 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] 6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"] -7:I[22604,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/76d30fbb78df77de.js","/_next/static/chunks/395811fdad4290d6.js"],"default"] +7:I[22604,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/922e34ac0731fb14.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"] a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] b:"$Sreact.suspense" d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ViewportBoundary"] f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 11:I[68027,[],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"dlUmvSkzMXWqNPc7KK_BI","c":["","feltetelek",""],"q":"","i":false,"f":[[["",{"children":["feltetelek",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/b82ba4ad59b06105.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/76d30fbb78df77de.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/395811fdad4290d6.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} +0:{"P":null,"b":"Pj4xFqf2HT4fIIHVuAQ_W","c":["","feltetelek",""],"q":"","i":false,"f":[[["",{"children":["feltetelek",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0ac639d69cda9244.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/922e34ac0731fb14.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/9d04f56e53f43e3d.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} 8:{} 9:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" e:[["$","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 526898f..a799f50 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":"dlUmvSkzMXWqNPc7KK_BI","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":"icon","href":"/favicon.ico?favicon.86cc8906.ico","sizes":"16x16","type":"image/x-icon"}],["$","$L5","4",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","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":"icon","href":"/favicon.ico?favicon.86cc8906.ico","sizes":"16x16","type":"image/x-icon"}],["$","$L5","4",{}]]}]}]}],["$","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 7ae2f9b..5cc6e61 100644 --- a/out/feltetelek/__next._index.txt +++ b/out/feltetelek/__next._index.txt @@ -3,5 +3,5 @@ 3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/b82ba4ad59b06105.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$L5",null,{}]]}]}]}]]}],"loading":null,"isPartial":false} +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0ac639d69cda9244.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$L5",null,{}]]}]}]}]]}],"loading":null,"isPartial":false} diff --git a/out/feltetelek/__next._tree.txt b/out/feltetelek/__next._tree.txt index 70c47c8..3b4b3cb 100644 --- a/out/feltetelek/__next._tree.txt +++ b/out/feltetelek/__next._tree.txt @@ -1,3 +1,3 @@ -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","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":"Pj4xFqf2HT4fIIHVuAQ_W","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 12da382..dc08b13 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":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","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 f8047fc..aad371d 100644 --- a/out/feltetelek/__next.feltetelek/__PAGE__.txt +++ b/out/feltetelek/__next.feltetelek/__PAGE__.txt @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" 2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"] -3:I[22604,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/76d30fbb78df77de.js","/_next/static/chunks/395811fdad4290d6.js"],"default"] +3:I[22604,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/922e34ac0731fb14.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"] 6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/76d30fbb78df77de.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/395811fdad4290d6.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/922e34ac0731fb14.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/9d04f56e53f43e3d.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 10b81a7..1d19a47 100644 --- a/out/feltetelek/index.html +++ b/out/feltetelek/index.html @@ -1 +1 @@ -SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!
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 honlapunkon az online foglalási felület kitöltésével tudja leadni. Ajánlatkérését kérjük szíveskedjen email-ben vagy az „ÜZENET” fül alatti űrlap kitöltésével megküldeni részünkre. 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 max. 3 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.

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 kérje gyorsan és egyszerűen itt: ÜZENET KÜLDÉS

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, 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, McDonald’s szemben lift vagy mozgó lépcső), majd forduljon jobbra és az utolsó kijáraton szíveskedj kifáradni, sofőrünk ott fogja várni a visszaigazolt utasfelvételi időpontban névvel ellátott táblával. 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: sofőrünk az érkezési csarnokban névvel ellátott táblával várja az utasokat.

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
Google
5.0
(285)
★★★★★
Gyopar Kallos

Mindig a SkyFly-jal utazunk a repülőterekre. Utastársaim nevében is a legjobbakat tudom mondani a cégről és szívesen ajánlom őket mindenkinek. Pontos szervezés,...

★★★★★
Péter

Évente több alkalommal használom reptéri transzfer szolgáltatásukat. Minden alkalommal a megbeszéltek szerint, pontosan a helyszínen voltak. Sofőrjeik segítőkés...

Összes értékelés
FacebookGoogle PlusX (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!
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 honlapunkon az online foglalási felület kitöltésével tudja leadni. Ajánlatkérését kérjük szíveskedjen email-ben vagy az „ÜZENET” fül alatti űrlap kitöltésével megküldeni részünkre. 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 max. 3 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.

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 kérje gyorsan és egyszerűen itt: ÜZENET KÜLDÉS

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, 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, McDonald’s szemben lift vagy mozgó lépcső), majd forduljon jobbra és az utolsó kijáraton szíveskedj kifáradni, sofőrünk ott fogja várni a visszaigazolt utasfelvételi időpontban névvel ellátott táblával. 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: sofőrünk az érkezési csarnokban névvel ellátott táblával várja az utasokat.

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
Google
5.0
(0)
Összes értékelés
FacebookGoogle PlusX (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 ab82afc..5cd7e3a 100644 --- a/out/feltetelek/index.txt +++ b/out/feltetelek/index.txt @@ -4,15 +4,15 @@ 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] 6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"] -7:I[22604,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/76d30fbb78df77de.js","/_next/static/chunks/395811fdad4290d6.js"],"default"] +7:I[22604,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/922e34ac0731fb14.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"] a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] b:"$Sreact.suspense" d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ViewportBoundary"] f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 11:I[68027,[],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"dlUmvSkzMXWqNPc7KK_BI","c":["","feltetelek",""],"q":"","i":false,"f":[[["",{"children":["feltetelek",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/b82ba4ad59b06105.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/76d30fbb78df77de.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/395811fdad4290d6.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} +0:{"P":null,"b":"Pj4xFqf2HT4fIIHVuAQ_W","c":["","feltetelek",""],"q":"","i":false,"f":[[["",{"children":["feltetelek",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0ac639d69cda9244.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/922e34ac0731fb14.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/9d04f56e53f43e3d.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} 8:{} 9:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" e:[["$","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 d748ccc..74072d6 100644 --- a/out/flotta/__next._full.txt +++ b/out/flotta/__next._full.txt @@ -4,15 +4,15 @@ 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] 6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"] -7:I[43138,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/51dbe03afaef15c8.js","/_next/static/chunks/395811fdad4290d6.js"],"default"] +7:I[43138,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/a6e27160eef3e3ba.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"] a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] b:"$Sreact.suspense" d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ViewportBoundary"] f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 11:I[68027,[],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"dlUmvSkzMXWqNPc7KK_BI","c":["","flotta",""],"q":"","i":false,"f":[[["",{"children":["flotta",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/b82ba4ad59b06105.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/51dbe03afaef15c8.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/395811fdad4290d6.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} +0:{"P":null,"b":"Pj4xFqf2HT4fIIHVuAQ_W","c":["","flotta",""],"q":"","i":false,"f":[[["",{"children":["flotta",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0ac639d69cda9244.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/a6e27160eef3e3ba.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/9d04f56e53f43e3d.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} 8:{} 9:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" e:[["$","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 2242033..1206785 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":"dlUmvSkzMXWqNPc7KK_BI","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":"icon","href":"/favicon.ico?favicon.86cc8906.ico","sizes":"16x16","type":"image/x-icon"}],["$","$L5","4",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","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":"icon","href":"/favicon.ico?favicon.86cc8906.ico","sizes":"16x16","type":"image/x-icon"}],["$","$L5","4",{}]]}]}]}],["$","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 7ae2f9b..5cc6e61 100644 --- a/out/flotta/__next._index.txt +++ b/out/flotta/__next._index.txt @@ -3,5 +3,5 @@ 3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/b82ba4ad59b06105.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$L5",null,{}]]}]}]}]]}],"loading":null,"isPartial":false} +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0ac639d69cda9244.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$L5",null,{}]]}]}]}]]}],"loading":null,"isPartial":false} diff --git a/out/flotta/__next._tree.txt b/out/flotta/__next._tree.txt index b6a679d..d76c6e5 100644 --- a/out/flotta/__next._tree.txt +++ b/out/flotta/__next._tree.txt @@ -1,3 +1,3 @@ -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","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":"Pj4xFqf2HT4fIIHVuAQ_W","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 12da382..dc08b13 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":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","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 8eaa1fa..a30eb24 100644 --- a/out/flotta/__next.flotta/__PAGE__.txt +++ b/out/flotta/__next.flotta/__PAGE__.txt @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" 2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"] -3:I[43138,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/51dbe03afaef15c8.js","/_next/static/chunks/395811fdad4290d6.js"],"default"] +3:I[43138,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/a6e27160eef3e3ba.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"] 6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/51dbe03afaef15c8.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/395811fdad4290d6.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/a6e27160eef3e3ba.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/9d04f56e53f43e3d.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 57a825c..948514a 100644 --- a/out/flotta/index.html +++ b/out/flotta/index.html @@ -1 +1 @@ -Flotta - Modern járműveink | SkyFly Travel

Minőségi
Flotta

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

Mercedes-Benz V-Class
VIP Prémium
Elérhető

Mercedes-Benz V-Class

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.

6-7 Utas
4-6 Bőrönd
Klíma
Bőr belső
Wifi
Mercedes-Benz E-Class
Üzleti kategória
Elérhető

Mercedes-Benz E-Class

Elegancia és megbízhatóság. Professzionális megjelenés üzleti utazásokhoz és repülőtéri transzferekhez.

3 Utas
2 Bőrönd
Dokumentum hűtő
Bőr belső
Skoda Superb Combi
Üzleti kategória
Elérhető

Skoda Superb Combi

Kategóriájának legnagyobb lábtere és csomagtere. A tökéletes választás hosszú távú utazásokhoz.

4 Utas
3 Bőrönd
Hatalmas csomagtér
Extra lábtér
Ford Transit / Renault Trafic
Kisbusz
Elérhető

Ford Transit / Renault Trafic

Nagyobb csoportok számára a legpraktikusabb megoldás. Gazdaságos és kényelmes utazás 8 főig.

8 Utas
8 Bőrönd
Extra csomagtér
Dupla klíma

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

0-3

É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
Google
5.0
(285)
★★★★★
Gyopar Kallos

Mindig a SkyFly-jal utazunk a repülőterekre. Utastársaim nevében is a legjobbakat tudom mondani a cégről és szívesen ajánlom őket mindenkinek. Pontos szervezés,...

★★★★★
Péter

Évente több alkalommal használom reptéri transzfer szolgáltatásukat. Minden alkalommal a megbeszéltek szerint, pontosan a helyszínen voltak. Sofőrjeik segítőkés...

Összes értékelés
FacebookGoogle PlusX (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 Travel

Minőségi
Flotta

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

Mercedes-Benz V-Class
VIP Prémium
Elérhető

Mercedes-Benz V-Class

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.

6-7 Utas
4-6 Bőrönd
Klíma
Bőr belső
Wifi
Mercedes-Benz E-Class
Üzleti kategória
Elérhető

Mercedes-Benz E-Class

Elegancia és megbízhatóság. Professzionális megjelenés üzleti utazásokhoz és repülőtéri transzferekhez.

3 Utas
2 Bőrönd
Dokumentum hűtő
Bőr belső
Skoda Superb Combi
Üzleti kategória
Elérhető

Skoda Superb Combi

Kategóriájának legnagyobb lábtere és csomagtere. A tökéletes választás hosszú távú utazásokhoz.

4 Utas
3 Bőrönd
Hatalmas csomagtér
Extra lábtér
Ford Transit / Renault Trafic
Kisbusz
Elérhető

Ford Transit / Renault Trafic

Nagyobb csoportok számára a legpraktikusabb megoldás. Gazdaságos és kényelmes utazás 8 főig.

8 Utas
8 Bőrönd
Extra csomagtér
Dupla klíma

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

0-3

É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
Google
5.0
(0)
Összes értékelés
FacebookGoogle PlusX (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 d748ccc..74072d6 100644 --- a/out/flotta/index.txt +++ b/out/flotta/index.txt @@ -4,15 +4,15 @@ 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] 6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"] -7:I[43138,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/51dbe03afaef15c8.js","/_next/static/chunks/395811fdad4290d6.js"],"default"] +7:I[43138,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/a6e27160eef3e3ba.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"] a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] b:"$Sreact.suspense" d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ViewportBoundary"] f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 11:I[68027,[],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"dlUmvSkzMXWqNPc7KK_BI","c":["","flotta",""],"q":"","i":false,"f":[[["",{"children":["flotta",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/b82ba4ad59b06105.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/51dbe03afaef15c8.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/395811fdad4290d6.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} +0:{"P":null,"b":"Pj4xFqf2HT4fIIHVuAQ_W","c":["","flotta",""],"q":"","i":false,"f":[[["",{"children":["flotta",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0ac639d69cda9244.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/a6e27160eef3e3ba.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/9d04f56e53f43e3d.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} 8:{} 9:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/out/index.html b/out/index.html index 8f1dad2..3dc0349 100644 --- a/out/index.html +++ b/out/index.html @@ -1 +1 @@ -SkyFly Travel - Gyors, megbízható, kényelmes reptéri transzferek!
5.0/5.0
(285)Ügyfél elégedettség

Gyors, Megbízható
Reptéri transzfer

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.

REPTÉRI

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

Reptéri Transzfer

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

CSOMAGOK

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.

BIZTONSÁG

Több mint 10 év szakmai tapasztalat

Közel két évtizede 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.

FOGLALÁS

Villámgyors online rendszer

Modern foglalási felületünkön percek alatt rögzítheti utazását. Azonnali visszaigazolást kap, így nyugodtan készülődhet a repülésre. Nincs rejtett költség, nincs apróbetű.

Online Árajánlat

Gyors Foglalás

Egyszerű, 2 perces online foglalás azonnali visszaigazolással.

FLOTTA

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.

NON-STOP

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

AKCIÓK

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 a kedvezményért.

Részletek és igénylés

TikTok Akció

Likeolja a kijelölt videónkat a TikTokon és utazzon kedvezménnyel.

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
Google
5.0
(285)
★★★★★
Gyopar Kallos

Mindig a SkyFly-jal utazunk a repülőterekre. Utastársaim nevében is a legjobbakat tudom mondani a cégről és szívesen ajánlom őket mindenkinek. Pontos szervezés,...

★★★★★
Péter

Évente több alkalommal használom reptéri transzfer szolgáltatásukat. Minden alkalommal a megbeszéltek szerint, pontosan a helyszínen voltak. Sofőrjeik segítőkés...

Összes értékelés
FacebookGoogle PlusX (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!
5.0/5.0
(0)Ügyfél elégedettség

Gyors, Megbízható
Reptéri transzfer

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.

REPTÉRI

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

Reptéri Transzfer

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

CSOMAGOK

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.

BIZTONSÁG

Több mint 10 év szakmai tapasztalat

Közel két évtizede 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.

FOGLALÁS

Villámgyors online rendszer

Modern foglalási felületünkön percek alatt rögzítheti utazását. Azonnali visszaigazolást kap, így nyugodtan készülődhet a repülésre. Nincs rejtett költség, nincs apróbetű.

Online Árajánlat

Gyors Foglalás

Egyszerű, 2 perces online foglalás azonnali visszaigazolással.

FLOTTA

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.

NON-STOP

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

AKCIÓK

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 a kedvezményért.

Részletek és igénylés

TikTok Akció

Likeolja a kijelölt videónkat a TikTokon és utazzon kedvezménnyel.

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
Google
5.0
(0)
Összes értékelés
FacebookGoogle PlusX (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 d7f3865..0579217 100644 --- a/out/index.txt +++ b/out/index.txt @@ -4,15 +4,15 @@ 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] 6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"] -7:I[31713,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/5fec119c1fb474e1.js","/_next/static/chunks/395811fdad4290d6.js"],"default"] +7:I[31713,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/4a1f084bd07d6520.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"] a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] b:"$Sreact.suspense" d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ViewportBoundary"] f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 11:I[68027,[],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"dlUmvSkzMXWqNPc7KK_BI","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/b82ba4ad59b06105.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/5fec119c1fb474e1.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/395811fdad4290d6.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} +0:{"P":null,"b":"Pj4xFqf2HT4fIIHVuAQ_W","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0ac639d69cda9244.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/4a1f084bd07d6520.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/9d04f56e53f43e3d.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} 8:{} 9:"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params" e:[["$","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 27fd5ec..171550f 100644 --- a/out/kapcsolat/__next._full.txt +++ b/out/kapcsolat/__next._full.txt @@ -4,15 +4,15 @@ 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] 6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"] -7:I[43114,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/2cb0ff15897c67e4.js","/_next/static/chunks/395811fdad4290d6.js"],"default"] +7:I[43114,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/aa30a9b38f1909fe.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"] a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] b:"$Sreact.suspense" d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ViewportBoundary"] f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 11:I[68027,[],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"dlUmvSkzMXWqNPc7KK_BI","c":["","kapcsolat",""],"q":"","i":false,"f":[[["",{"children":["kapcsolat",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/b82ba4ad59b06105.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2cb0ff15897c67e4.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/395811fdad4290d6.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} +0:{"P":null,"b":"Pj4xFqf2HT4fIIHVuAQ_W","c":["","kapcsolat",""],"q":"","i":false,"f":[[["",{"children":["kapcsolat",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0ac639d69cda9244.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/aa30a9b38f1909fe.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/9d04f56e53f43e3d.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} 8:{} 9:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" e:[["$","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 05c10fa..d240ff8 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":"dlUmvSkzMXWqNPc7KK_BI","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":"icon","href":"/favicon.ico?favicon.86cc8906.ico","sizes":"16x16","type":"image/x-icon"}],["$","$L5","4",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","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":"icon","href":"/favicon.ico?favicon.86cc8906.ico","sizes":"16x16","type":"image/x-icon"}],["$","$L5","4",{}]]}]}]}],["$","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 7ae2f9b..5cc6e61 100644 --- a/out/kapcsolat/__next._index.txt +++ b/out/kapcsolat/__next._index.txt @@ -3,5 +3,5 @@ 3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/b82ba4ad59b06105.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$L5",null,{}]]}]}]}]]}],"loading":null,"isPartial":false} +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0ac639d69cda9244.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$L5",null,{}]]}]}]}]]}],"loading":null,"isPartial":false} diff --git a/out/kapcsolat/__next._tree.txt b/out/kapcsolat/__next._tree.txt index fe996dc..071bf39 100644 --- a/out/kapcsolat/__next._tree.txt +++ b/out/kapcsolat/__next._tree.txt @@ -1,3 +1,3 @@ -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","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":"Pj4xFqf2HT4fIIHVuAQ_W","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 12da382..dc08b13 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":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","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 842574a..9b7e785 100644 --- a/out/kapcsolat/__next.kapcsolat/__PAGE__.txt +++ b/out/kapcsolat/__next.kapcsolat/__PAGE__.txt @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" 2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"] -3:I[43114,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/2cb0ff15897c67e4.js","/_next/static/chunks/395811fdad4290d6.js"],"default"] +3:I[43114,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/aa30a9b38f1909fe.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"] 6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2cb0ff15897c67e4.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/395811fdad4290d6.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/aa30a9b38f1909fe.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/9d04f56e53f43e3d.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 c217551..a0cfaab 100644 --- a/out/kapcsolat/index.html +++ b/out/kapcsolat/index.html @@ -1 +1 @@ -Kapcsolat - Foglalás és információ | SkyFly Travel
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:

Gyors üzenetküldés

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

Hozzájárulok, hogy a Z+T BT. (mint a SkyFly Travel üzemeltetője) az Adatvédelmi szabályzatában foglaltak szerint személyes adataimat kezelje, illetve feldolgozza.

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
Google
5.0
(285)
★★★★★
Gyopar Kallos

Mindig a SkyFly-jal utazunk a repülőterekre. Utastársaim nevében is a legjobbakat tudom mondani a cégről és szívesen ajánlom őket mindenkinek. Pontos szervezés,...

★★★★★
Péter

Évente több alkalommal használom reptéri transzfer szolgáltatásukat. Minden alkalommal a megbeszéltek szerint, pontosan a helyszínen voltak. Sofőrjeik segítőkés...

Összes értékelés
FacebookGoogle PlusX (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 Travel
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:

Gyors üzenetküldés

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

Hozzájárulok, hogy a Z+T BT. (mint a SkyFly Travel üzemeltetője) az Adatvédelmi szabályzatában foglaltak szerint személyes adataimat kezelje, illetve feldolgozza.

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
Google
5.0
(0)
Összes értékelés
FacebookGoogle PlusX (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 27fd5ec..171550f 100644 --- a/out/kapcsolat/index.txt +++ b/out/kapcsolat/index.txt @@ -4,15 +4,15 @@ 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] 6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"] -7:I[43114,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/2cb0ff15897c67e4.js","/_next/static/chunks/395811fdad4290d6.js"],"default"] +7:I[43114,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/aa30a9b38f1909fe.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"] a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] b:"$Sreact.suspense" d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ViewportBoundary"] f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 11:I[68027,[],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"dlUmvSkzMXWqNPc7KK_BI","c":["","kapcsolat",""],"q":"","i":false,"f":[[["",{"children":["kapcsolat",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/b82ba4ad59b06105.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2cb0ff15897c67e4.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/395811fdad4290d6.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} +0:{"P":null,"b":"Pj4xFqf2HT4fIIHVuAQ_W","c":["","kapcsolat",""],"q":"","i":false,"f":[[["",{"children":["kapcsolat",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0ac639d69cda9244.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/aa30a9b38f1909fe.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/9d04f56e53f43e3d.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} 8:{} 9:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/ratings_en.json b/out/ratings_en.json similarity index 61% rename from ratings_en.json rename to out/ratings_en.json index b76750d..526927e 100644 --- a/ratings_en.json +++ b/out/ratings_en.json @@ -1 +1 @@ -{"data":[{"area":"SkyFly Travel","placeId":"ChIJQz_NzJm_a0cRGW1U_iUDLuU","rating":5,"userRatingCount":285,"reviews":[{"text":"Sky fly is a great company. The booking website is easy to understand. And the prices are fare. Also when a last minute situation occurs they always make it work to get you to your destination. Over the years I had a couple situations where I needed a last second change and every time the make it work. The drivers are also great. I would recommend this shuttle service.","rating":5,"author":"matthijs van leijenhorst","publishTime":"2025-09-22T07:55:17.174730841Z"},{"text":"Travel SkyFly has been providing an outstanding experience. The drivers are professional, punctual, and polite, and their cars are always immaculate and comfortable. Whether you're traveling between Vienna and Budapest or need reliable airport transportation, I highly recommend their services. Truly a hassle-free and dependable choice!","rating":5,"author":"Krisztian Nagy","publishTime":"2024-12-04T16:27:45.117418Z"},{"text":"SkyFly Travel Kft is MORE than a partner in providing the best chauffeur service — professional, reliable, and always exceeding expectations. Highly recommended for anyone seeking comfort, punctuality, and premium service in every ride - ViziZene Kft","rating":5,"author":"Zoltan Biczo","publishTime":"2025-05-11T05:53:25.464513Z"},{"text":"Professional, punctual, polite driver. Nice clean cars. I would highly recommend to those who needs a ride from or to airport from Vienna or to Budapest. I had a last minute booking, they were there as promised. Punctual arriving for my flight. Highly recommend.","rating":5,"author":"Judit Csibi","publishTime":"2023-09-05T21:47:44.438396Z"},{"text":"I was asked to fill in a review about my experiences with flysky travel. I have been able to experience a taxi ride with them 6 times so far. Everything is arranged down to the last detail, the reservation, the information provided about how the trip will go.. and especially the drivers. I have no complaints about this, polite and friendly drivers. In my case I have been picked up several times by Roland Klauz. This driver is recommended to be picked up by. Super friendly guy. Who takes you from A to B in a relaxed way. And with whom good contact can be maintained before / during and after the ride. Applause for Skyfly. Greetings Martijn van der Meer.","rating":5,"author":"Martijn van der Meer","publishTime":"2024-08-05T15:18:27.019324Z"}]}]} \ No newline at end of file +{"data":[{"area":"SkyFly Travel","placeId":"ChIJQz_NzJm_a0cRGW1U_iUDLuU","rating":5,"userRatingCount":286,"reviews":[{"text":"Sky fly is a great company. The booking website is easy to understand. And the prices are fare. Also when a last minute situation occurs they always make it work to get you to your destination. Over the years I had a couple situations where I needed a last second change and every time the make it work. The drivers are also great. I would recommend this shuttle service.","rating":5,"author":"matthijs van leijenhorst","publishTime":"2025-09-22T07:55:17.174730841Z"},{"text":"SkyFly Travel Kft is MORE than a partner in providing the best chauffeur service — professional, reliable, and always exceeding expectations. Highly recommended for anyone seeking comfort, punctuality, and premium service in every ride - ViziZene Kft","rating":5,"author":"Zoltan Biczo","publishTime":"2025-05-11T05:53:25.464513Z"},{"text":"Travel SkyFly has been providing an outstanding experience. The drivers are professional, punctual, and polite, and their cars are always immaculate and comfortable. Whether you're traveling between Vienna and Budapest or need reliable airport transportation, I highly recommend their services. Truly a hassle-free and dependable choice!","rating":5,"author":"Krisztian Nagy","publishTime":"2024-12-04T16:27:45.117418Z"},{"text":"Professional, punctual, polite driver. Nice clean cars. I would highly recommend to those who needs a ride from or to airport from Vienna or to Budapest. I had a last minute booking, they were there as promised. Punctual arriving for my flight. Highly recommend.","rating":5,"author":"Judit Csibi","publishTime":"2023-09-05T21:47:44.438396Z"},{"text":"I was asked to fill in a review about my experiences with flysky travel. I have been able to experience a taxi ride with them 6 times so far. Everything is arranged down to the last detail, the reservation, the information provided about how the trip will go.. and especially the drivers. I have no complaints about this, polite and friendly drivers. In my case I have been picked up several times by Roland Klauz. This driver is recommended to be picked up by. Super friendly guy. Who takes you from A to B in a relaxed way. And with whom good contact can be maintained before / during and after the ride. Applause for Skyfly. Greetings Martijn van der Meer.","rating":5,"author":"Martijn van der Meer","publishTime":"2024-08-05T15:18:27.019324Z"}]}]} \ No newline at end of file diff --git a/ratings_hu.json b/out/ratings_hu.json similarity index 64% rename from ratings_hu.json rename to out/ratings_hu.json index 94e1b8d..b5135a7 100644 --- a/ratings_hu.json +++ b/out/ratings_hu.json @@ -1 +1 @@ -{"data":[{"area":"SkyFly Travel","placeId":"ChIJQz_NzJm_a0cRGW1U_iUDLuU","rating":5,"userRatingCount":285,"reviews":[{"text":"Mindig a SkyFly-jal utazunk a repülőterekre. Utastársaim nevében is a legjobbakat tudom mondani a cégről és szívesen ajánlom őket mindenkinek. Pontos szervezés, kedves, udvarias és rutinos sofőrök.","rating":5,"author":"Gyopar Kallos","publishTime":"2026-01-13T13:05:09.781273430Z"},{"text":"Évente több alkalommal használom reptéri transzfer szolgáltatásukat. Minden alkalommal a megbeszéltek szerint, pontosan a helyszínen voltak. Sofőrjeik segítőkészek. A megrendelés leadása után nem zaklatják az embert különféle emailekkel. Az utazás előtti napon küldik a sofőr nevét, elérhetőségét.","rating":5,"author":"Péter","publishTime":"2025-12-04T13:51:00.646252562Z"},{"text":"Évek óta a SkyFly szolgáltatását használjuk, mindig maximálisan elégedett voltunk. Megbízhatóak, pontosak és rugalmasak, ami hosszú utazások előtt és után különösen sokat jelent. A sofőrök kedvesek, figyelmesek és biztonságosan vezetnek.\nAz autók tiszták, kényelmesek, minden alkalommal gördülékeny a teljes transzfer. Bátran ajánlom mindenkinek, aki minőségi és profi szolgáltatást keres!","rating":5,"author":"Csaba Farkas","publishTime":"2025-11-19T10:02:24.246395337Z"},{"text":"Nagyon elégedett voltam a szolgáltatással! A sofőr pontosan érkezett, udvarias és segítőkész volt, az autó tiszta és kényelmes. Az út gyorsan és biztonságosan telt, minden gördülékenyen zajlott. Bátran ajánlom mindenkinek, aki megbízható reptéri transzfert keres.","rating":5,"author":"Tunde Csendes","publishTime":"2025-10-08T06:21:01.050570478Z"},{"text":"100%-os pozitív tapasztalat, nagyon örülök, hogy rátaláltunk a cégre. A kapott árajánlatok közül messze a legjobb árat kaptuk tőlük reptéri transzferre.Korrekt ár, gördülékeny kommunikáció, gyors és precíz választ kaptunk minden kérdésünkre. A sofőr nagyon kedves, udvarias, pontos és megbízható volt. A járatunk késését is nagyon rugalmasan kezelték. Csak ajánlani tudjuk őket a legjobb szívvel.","rating":5,"author":"Gruber Andrea","publishTime":"2025-09-22T12:24:38.650812077Z"}]}]} \ No newline at end of file +{"data":[{"area":"SkyFly Travel","placeId":"ChIJQz_NzJm_a0cRGW1U_iUDLuU","rating":5,"userRatingCount":286,"reviews":[{"text":"Évente több alkalommal használom reptéri transzfer szolgáltatásukat. Minden alkalommal a megbeszéltek szerint, pontosan a helyszínen voltak. Sofőrjeik segítőkészek. A megrendelés leadása után nem zaklatják az embert különféle emailekkel. Az utazás előtti napon küldik a sofőr nevét, elérhetőségét.","rating":5,"author":"Péter","publishTime":"2025-12-04T13:51:00.646252562Z"},{"text":"Mindig a SkyFly-jal utazunk a repülőterekre. Utastársaim nevében is a legjobbakat tudom mondani a cégről és szívesen ajánlom őket mindenkinek. Pontos szervezés, kedves, udvarias és rutinos sofőrök.","rating":5,"author":"Gyopar Kallos","publishTime":"2026-01-13T13:05:09.781273430Z"},{"text":"Évek óta a SkyFly szolgáltatását használjuk, mindig maximálisan elégedett voltunk. Megbízhatóak, pontosak és rugalmasak, ami hosszú utazások előtt és után különösen sokat jelent. A sofőrök kedvesek, figyelmesek és biztonságosan vezetnek.\nAz autók tiszták, kényelmesek, minden alkalommal gördülékeny a teljes transzfer. Bátran ajánlom mindenkinek, aki minőségi és profi szolgáltatást keres!","rating":5,"author":"Csaba Farkas","publishTime":"2025-11-19T10:02:24.246395337Z"},{"text":"Nagyon elégedett voltam a szolgáltatással! A sofőr pontosan érkezett, udvarias és segítőkész volt, az autó tiszta és kényelmes. Az út gyorsan és biztonságosan telt, minden gördülékenyen zajlott. Bátran ajánlom mindenkinek, aki megbízható reptéri transzfert keres.","rating":5,"author":"Tunde Csendes","publishTime":"2025-10-08T06:21:01.050570478Z"},{"text":"100%-os pozitív tapasztalat, nagyon örülök, hogy rátaláltunk a cégre. A kapott árajánlatok közül messze a legjobb árat kaptuk tőlük reptéri transzferre.Korrekt ár, gördülékeny kommunikáció, gyors és precíz választ kaptunk minden kérdésünkre. A sofőr nagyon kedves, udvarias, pontos és megbízható volt. A járatunk késését is nagyon rugalmasan kezelték. Csak ajánlani tudjuk őket a legjobb szívvel.","rating":5,"author":"Gruber Andrea","publishTime":"2025-09-22T12:24:38.650812077Z"}]}]} \ No newline at end of file diff --git a/out/szolgaltatasok/__next._full.txt b/out/szolgaltatasok/__next._full.txt index 9ee14d8..8f14bfe 100644 --- a/out/szolgaltatasok/__next._full.txt +++ b/out/szolgaltatasok/__next._full.txt @@ -4,15 +4,15 @@ 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] 6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"] -7:I[3339,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/7644c98974b8d3d8.js","/_next/static/chunks/395811fdad4290d6.js"],"default"] +7:I[3339,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/0a68385b73467ee7.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"] a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] b:"$Sreact.suspense" d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ViewportBoundary"] f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 11:I[68027,[],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"dlUmvSkzMXWqNPc7KK_BI","c":["","szolgaltatasok",""],"q":"","i":false,"f":[[["",{"children":["szolgaltatasok",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/b82ba4ad59b06105.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/7644c98974b8d3d8.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/395811fdad4290d6.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} +0:{"P":null,"b":"Pj4xFqf2HT4fIIHVuAQ_W","c":["","szolgaltatasok",""],"q":"","i":false,"f":[[["",{"children":["szolgaltatasok",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0ac639d69cda9244.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0a68385b73467ee7.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/9d04f56e53f43e3d.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} 8:{} 9:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" e:[["$","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 4693143..8a56466 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":"dlUmvSkzMXWqNPc7KK_BI","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":"icon","href":"/favicon.ico?favicon.86cc8906.ico","sizes":"16x16","type":"image/x-icon"}],["$","$L5","4",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","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":"icon","href":"/favicon.ico?favicon.86cc8906.ico","sizes":"16x16","type":"image/x-icon"}],["$","$L5","4",{}]]}]}]}],["$","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 7ae2f9b..5cc6e61 100644 --- a/out/szolgaltatasok/__next._index.txt +++ b/out/szolgaltatasok/__next._index.txt @@ -3,5 +3,5 @@ 3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/b82ba4ad59b06105.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$L5",null,{}]]}]}]}]]}],"loading":null,"isPartial":false} +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0ac639d69cda9244.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$L5",null,{}]]}]}]}]]}],"loading":null,"isPartial":false} diff --git a/out/szolgaltatasok/__next._tree.txt b/out/szolgaltatasok/__next._tree.txt index 07c6135..412f416 100644 --- a/out/szolgaltatasok/__next._tree.txt +++ b/out/szolgaltatasok/__next._tree.txt @@ -1,3 +1,3 @@ -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","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":"Pj4xFqf2HT4fIIHVuAQ_W","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 12da382..dc08b13 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":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","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 11fee1e..fd1b40c 100644 --- a/out/szolgaltatasok/__next.szolgaltatasok/__PAGE__.txt +++ b/out/szolgaltatasok/__next.szolgaltatasok/__PAGE__.txt @@ -1,9 +1,9 @@ 1:"$Sreact.fragment" 2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"] -3:I[3339,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/7644c98974b8d3d8.js","/_next/static/chunks/395811fdad4290d6.js"],"default"] +3:I[3339,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/0a68385b73467ee7.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"] 6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] 7:"$Sreact.suspense" -0:{"buildId":"dlUmvSkzMXWqNPc7KK_BI","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/7644c98974b8d3d8.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/395811fdad4290d6.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} +0:{"buildId":"Pj4xFqf2HT4fIIHVuAQ_W","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0a68385b73467ee7.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/9d04f56e53f43e3d.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 3764fdb..faed1ae 100644 --- a/out/szolgaltatasok/index.html +++ b/out/szolgaltatasok/index.html @@ -1 +1 @@ -Szolgáltatások - Személyre szabott transzfer megoldások | SkyFly Travel
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ő CLASSIC":

Gyűjtő CLASSIC

Igazodva más utasokhoz, szabad kapacitás függvényében. Igénybe vehető, ha van más utasunk is, és teljesül a feltétel: min. 30 perc max. 1,5 óra alkalmazkodás.

Város - Reptér útvonal:

Az ideális utas felvételhez képest max. 1-1,5 órával korábbi indulás.

Reptér - Város útvonal:

Tervezett leszállás, csomagfelvétel után max. 1-1,5 órával későbbi indulás.

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: 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: 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.
Sofőreink szakképzettek, GKI engedéllyel, PÁV-II tanúsítvánnyal és több éves tapasztalattal rendelkeznek.
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
Google
5.0
(285)
★★★★★
Gyopar Kallos

Mindig a SkyFly-jal utazunk a repülőterekre. Utastársaim nevében is a legjobbakat tudom mondani a cégről és szívesen ajánlom őket mindenkinek. Pontos szervezés,...

★★★★★
Péter

Évente több alkalommal használom reptéri transzfer szolgáltatásukat. Minden alkalommal a megbeszéltek szerint, pontosan a helyszínen voltak. Sofőrjeik segítőkés...

Összes értékelés
FacebookGoogle PlusX (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 Travel
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ő CLASSIC":

Gyűjtő CLASSIC

Igazodva más utasokhoz, szabad kapacitás függvényében. Igénybe vehető, ha van más utasunk is, és teljesül a feltétel: min. 30 perc max. 1,5 óra alkalmazkodás.

Város - Reptér útvonal:

Az ideális utas felvételhez képest max. 1-1,5 órával korábbi indulás.

Reptér - Város útvonal:

Tervezett leszállás, csomagfelvétel után max. 1-1,5 órával későbbi indulás.

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: 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: 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.
Sofőreink szakképzettek, GKI engedéllyel, PÁV-II tanúsítvánnyal és több éves tapasztalattal rendelkeznek.
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
Google
5.0
(0)
Összes értékelés
FacebookGoogle PlusX (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 9ee14d8..8f14bfe 100644 --- a/out/szolgaltatasok/index.txt +++ b/out/szolgaltatasok/index.txt @@ -4,15 +4,15 @@ 4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"default"] 5:I[34581,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"default"] 6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"] -7:I[3339,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/7644c98974b8d3d8.js","/_next/static/chunks/395811fdad4290d6.js"],"default"] +7:I[3339,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js","/_next/static/chunks/0a68385b73467ee7.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"] a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"] b:"$Sreact.suspense" d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ViewportBoundary"] f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"MetadataBoundary"] 11:I[68027,[],"default"] -:HL["/_next/static/chunks/b82ba4ad59b06105.css","style"] +:HL["/_next/static/chunks/0ac639d69cda9244.css","style"] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -0:{"P":null,"b":"dlUmvSkzMXWqNPc7KK_BI","c":["","szolgaltatasok",""],"q":"","i":false,"f":[[["",{"children":["szolgaltatasok",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/b82ba4ad59b06105.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/7644c98974b8d3d8.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/395811fdad4290d6.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} +0:{"P":null,"b":"Pj4xFqf2HT4fIIHVuAQ_W","c":["","szolgaltatasok",""],"q":"","i":false,"f":[[["",{"children":["szolgaltatasok",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0ac639d69cda9244.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/9c87745f176c3743.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6b34b633b74e9a44.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"hu","className":"scroll-smooth","children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable font-sans antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0a68385b73467ee7.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/9d04f56e53f43e3d.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true} 8:{} 9:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] diff --git a/public/ratings_en.json b/public/ratings_en.json new file mode 100644 index 0000000..526927e --- /dev/null +++ b/public/ratings_en.json @@ -0,0 +1 @@ +{"data":[{"area":"SkyFly Travel","placeId":"ChIJQz_NzJm_a0cRGW1U_iUDLuU","rating":5,"userRatingCount":286,"reviews":[{"text":"Sky fly is a great company. The booking website is easy to understand. And the prices are fare. Also when a last minute situation occurs they always make it work to get you to your destination. Over the years I had a couple situations where I needed a last second change and every time the make it work. The drivers are also great. I would recommend this shuttle service.","rating":5,"author":"matthijs van leijenhorst","publishTime":"2025-09-22T07:55:17.174730841Z"},{"text":"SkyFly Travel Kft is MORE than a partner in providing the best chauffeur service — professional, reliable, and always exceeding expectations. Highly recommended for anyone seeking comfort, punctuality, and premium service in every ride - ViziZene Kft","rating":5,"author":"Zoltan Biczo","publishTime":"2025-05-11T05:53:25.464513Z"},{"text":"Travel SkyFly has been providing an outstanding experience. The drivers are professional, punctual, and polite, and their cars are always immaculate and comfortable. Whether you're traveling between Vienna and Budapest or need reliable airport transportation, I highly recommend their services. Truly a hassle-free and dependable choice!","rating":5,"author":"Krisztian Nagy","publishTime":"2024-12-04T16:27:45.117418Z"},{"text":"Professional, punctual, polite driver. Nice clean cars. I would highly recommend to those who needs a ride from or to airport from Vienna or to Budapest. I had a last minute booking, they were there as promised. Punctual arriving for my flight. Highly recommend.","rating":5,"author":"Judit Csibi","publishTime":"2023-09-05T21:47:44.438396Z"},{"text":"I was asked to fill in a review about my experiences with flysky travel. I have been able to experience a taxi ride with them 6 times so far. Everything is arranged down to the last detail, the reservation, the information provided about how the trip will go.. and especially the drivers. I have no complaints about this, polite and friendly drivers. In my case I have been picked up several times by Roland Klauz. This driver is recommended to be picked up by. Super friendly guy. Who takes you from A to B in a relaxed way. And with whom good contact can be maintained before / during and after the ride. Applause for Skyfly. Greetings Martijn van der Meer.","rating":5,"author":"Martijn van der Meer","publishTime":"2024-08-05T15:18:27.019324Z"}]}]} \ No newline at end of file diff --git a/public/ratings_hu.json b/public/ratings_hu.json new file mode 100644 index 0000000..b5135a7 --- /dev/null +++ b/public/ratings_hu.json @@ -0,0 +1 @@ +{"data":[{"area":"SkyFly Travel","placeId":"ChIJQz_NzJm_a0cRGW1U_iUDLuU","rating":5,"userRatingCount":286,"reviews":[{"text":"Évente több alkalommal használom reptéri transzfer szolgáltatásukat. Minden alkalommal a megbeszéltek szerint, pontosan a helyszínen voltak. Sofőrjeik segítőkészek. A megrendelés leadása után nem zaklatják az embert különféle emailekkel. Az utazás előtti napon küldik a sofőr nevét, elérhetőségét.","rating":5,"author":"Péter","publishTime":"2025-12-04T13:51:00.646252562Z"},{"text":"Mindig a SkyFly-jal utazunk a repülőterekre. Utastársaim nevében is a legjobbakat tudom mondani a cégről és szívesen ajánlom őket mindenkinek. Pontos szervezés, kedves, udvarias és rutinos sofőrök.","rating":5,"author":"Gyopar Kallos","publishTime":"2026-01-13T13:05:09.781273430Z"},{"text":"Évek óta a SkyFly szolgáltatását használjuk, mindig maximálisan elégedett voltunk. Megbízhatóak, pontosak és rugalmasak, ami hosszú utazások előtt és után különösen sokat jelent. A sofőrök kedvesek, figyelmesek és biztonságosan vezetnek.\nAz autók tiszták, kényelmesek, minden alkalommal gördülékeny a teljes transzfer. Bátran ajánlom mindenkinek, aki minőségi és profi szolgáltatást keres!","rating":5,"author":"Csaba Farkas","publishTime":"2025-11-19T10:02:24.246395337Z"},{"text":"Nagyon elégedett voltam a szolgáltatással! A sofőr pontosan érkezett, udvarias és segítőkész volt, az autó tiszta és kényelmes. Az út gyorsan és biztonságosan telt, minden gördülékenyen zajlott. Bátran ajánlom mindenkinek, aki megbízható reptéri transzfert keres.","rating":5,"author":"Tunde Csendes","publishTime":"2025-10-08T06:21:01.050570478Z"},{"text":"100%-os pozitív tapasztalat, nagyon örülök, hogy rátaláltunk a cégre. A kapott árajánlatok közül messze a legjobb árat kaptuk tőlük reptéri transzferre.Korrekt ár, gördülékeny kommunikáció, gyors és precíz választ kaptunk minden kérdésünkre. A sofőr nagyon kedves, udvarias, pontos és megbízható volt. A járatunk késését is nagyon rugalmasan kezelték. Csak ajánlani tudjuk őket a legjobb szívvel.","rating":5,"author":"Gruber Andrea","publishTime":"2025-09-22T12:24:38.650812077Z"}]}]} \ No newline at end of file