This commit is contained in:
Bognar 2026-02-21 17:37:58 +01:00
parent 864864e8f4
commit 2c6138b600
175 changed files with 1118 additions and 518 deletions

View File

@ -91,9 +91,15 @@ export default function PricingPage() {
</div>
<div className="flex-1">
<h3 className="font-extrabold text-blue-950 uppercase tracking-tight mb-1">{t.pricing.banner.title}</h3>
<p className="text-slate-500 text-sm leading-relaxed">
{t.pricing.banner.description}
</p>
<div className="text-slate-500 text-sm leading-relaxed space-y-3">
{Array.isArray(t.pricing.banner.description) ? (
t.pricing.banner.description.map((p: string, i: number) => (
<p key={i}>{p}</p>
))
) : (
<p>{t.pricing.banner.description}</p>
)}
</div>
</div>
<Button asChild className="rounded-full px-8 h-12 bg-primary hover:bg-primary/90 text-sm font-bold tracking-widest uppercase">
<a href="https://app.skyflytravel.hu/public/offers/new" target="_blank" rel="noopener noreferrer">
@ -136,8 +142,8 @@ export default function PricingPage() {
<PricingTable
route={t.pricing.routesTable.gyorBudapest}
rows={t.pricing.rows.budapest}
specials={t.pricing.specials.base}
vipInfo={t.pricing.vipInfo.base}
specials={t.pricing.specials.budapest}
vipInfo={t.pricing.vipInfo.budapest}
effectiveFrom={`${t.pricing.table.effective}: 2026.01.15`}
expressInfo={expressInfoBudapest}
districtSurcharge={districtSurcharge}

View File

@ -0,0 +1,216 @@
"use client"
import Navbar from "@/components/navbar"
import Footer from "@/components/footer"
import PageReveal from "@/components/page-reveal"
import { Button } from "@/components/ui/button"
import { Card } from "@/components/ui/card"
import {
ArrowLeft,
CheckCircle2,
Calendar,
Users,
Bus,
Briefcase,
Heart,
Phone,
Sparkles,
Shield,
Clock,
MapPin
} from "lucide-react"
import Link from "next/link"
import Image from "next/image"
import { useLanguage } from "@/lib/language-context"
export default function OtherTransportPage() {
const { t } = useLanguage()
const serviceIcons = [
<Bus key="excursions" className="w-8 h-8 text-primary" />,
<Heart key="weddings" className="w-8 h-8 text-secondary" />,
<Briefcase key="corporate" className="w-8 h-8 text-primary" />,
<Users key="work" className="w-8 h-8 text-secondary" />
]
const serviceImages = [
"/images/service-cards/ford-transit.jpg",
"/images/service-cards/merci-eskuvo.png",
"/images/service-cards/ford-tourneo.jpg",
"/images/service-cards/opel-vivaro.jpg"
]
return (
<PageReveal className="relative min-h-screen bg-slate-50">
<Navbar darkMode={false} />
{/* Atmosphere */}
<div className="absolute md:fixed inset-0 pointer-events-none -z-10 overflow-hidden">
<div className="absolute -top-24 -right-24 w-[420px] h-[420px] bg-primary/10 rounded-full blur-3xl opacity-30 animate-blob" />
<div className="absolute top-1/2 -left-20 w-[360px] h-[360px] bg-blue-100 rounded-full blur-3xl opacity-30 animate-blob animation-delay-2000" />
<div className="absolute bottom-0 right-1/3 w-[280px] h-[280px] bg-pink-50 rounded-full blur-3xl opacity-30 animate-blob animation-delay-4000" />
</div>
{/* Hero */}
<section className="relative pt-32 pb-20 overflow-hidden">
<div className="absolute inset-0 -z-10 bg-[#fafaf9]" />
<div className="absolute bottom-0 left-0 w-full h-[90px] bg-white transform -skew-y-2 origin-bottom-left -z-10" />
<div className="max-w-7xl mx-auto px-6">
<Link href="/" className="inline-flex items-center text-slate-400 hover:text-primary mb-10 transition-colors group">
<div className="bg-slate-100 p-2 rounded-full mr-3 group-hover:bg-primary/10 transition-colors">
<ArrowLeft className="w-4 h-4" />
</div>
<span className="text-[10px] font-black uppercase tracking-[0.3em]">{t.otherTransportPage.back}</span>
</Link>
<div className="space-y-8 max-w-4xl">
<h1 className="text-6xl md:text-9xl font-black uppercase tracking-tighter leading-[0.85] text-slate-900">
{t.otherTransportPage.title}
<br />
<span className="text-primary italic">{t.otherTransportPage.titleAccent}</span>
</h1>
<p className="text-lg md:text-2xl text-slate-500 leading-relaxed font-medium">
{t.otherTransportPage.heroDescription}
</p>
</div>
</div>
</section>
<section className="py-16">
<div className="max-w-7xl mx-auto px-6">
<div className="grid grid-cols-1 lg:grid-cols-3 gap-10">
{/* Left column */}
<div className="lg:col-span-2 space-y-12">
{/* Main Introduction Card */}
<Card className="rounded-[3rem] border-none shadow-2xl bg-white overflow-hidden p-8 md:p-12">
<div className="space-y-6">
<div className="inline-flex items-center gap-2 px-4 py-2 rounded-full bg-primary/10 text-primary">
<Sparkles className="w-4 h-4" />
<span className="text-[10px] font-black uppercase tracking-[0.2em]">Egyedi Megoldások</span>
</div>
<h2 className="text-3xl md:text-4xl font-black uppercase tracking-tighter text-slate-900 leading-tight">
Minden igényre <span className="text-primary">van megoldásunk</span>
</h2>
<p className="text-slate-600 text-lg leading-relaxed font-medium">
{t.otherTransportPage.mainContent}
</p>
</div>
</Card>
{/* Service Grid - Ensuring relative position for fill images */}
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
{t.otherTransportPage.services.map((service: any, idx: number) => (
<Card key={idx} className="rounded-[3rem] border-none shadow-xl bg-white overflow-hidden group hover:-translate-y-2 transition-transform duration-500">
<div className="relative w-full overflow-hidden bg-slate-100" style={{ height: '240px' }}>
<Image
src={serviceImages[idx]}
alt={service.title}
fill
className="object-cover group-hover:scale-110 transition-transform duration-700"
sizes="(min-width: 768px) 400px, 100vw"
/>
<div className="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent" />
<div className="absolute bottom-6 left-6">
<div className="bg-white/20 backdrop-blur-md p-3 rounded-2xl border border-white/20">
{serviceIcons[idx]}
</div>
</div>
</div>
<div className="p-8 space-y-4">
<h3 className="text-2xl font-black uppercase tracking-tight text-slate-900">
{service.title}
</h3>
<p className="text-slate-500 text-sm leading-relaxed font-medium">
{service.desc}
</p>
</div>
</Card>
))}
</div>
</div>
{/* Right column */}
<div className="space-y-8">
{/* Capacity Card */}
<Card className="rounded-[3rem] border-none shadow-2xl bg-slate-900 text-white overflow-hidden">
<div className="bg-primary px-8 py-6">
<div className="flex items-center gap-3">
<Users className="w-5 h-5 text-white" />
<h2 className="text-white text-sm font-black uppercase tracking-[0.3em]">
{t.otherTransportPage.capacityTitle}
</h2>
</div>
</div>
<div className="p-8 space-y-6">
<p className="text-slate-300 text-sm leading-relaxed font-medium">
{t.otherTransportPage.capacityDesc}
</p>
<div className="space-y-4">
<div className="flex items-start gap-3">
<CheckCircle2 className="w-4 h-4 text-primary mt-1" />
<span className="text-slate-200 text-sm font-medium">Több kisbusz egyszerre</span>
</div>
<div className="flex items-start gap-3">
<CheckCircle2 className="w-4 h-4 text-primary mt-1" />
<span className="text-slate-200 text-sm font-medium">Buszpartner szoros együttműködésben</span>
</div>
<div className="flex items-start gap-3">
<CheckCircle2 className="w-4 h-4 text-primary mt-1" />
<span className="text-slate-200 text-sm font-medium">Logisztikai tervezés nagy létszámhoz</span>
</div>
</div>
</div>
</Card>
{/* Contact Card */}
<Card className="rounded-[3rem] border-none shadow-2xl bg-white overflow-hidden p-8 space-y-8">
<div className="space-y-2">
<p className="text-[10px] font-black uppercase tracking-[0.3em] text-primary">Kapcsolatfelvétel</p>
<h3 className="text-2xl font-black uppercase tracking-tight text-slate-900">
Kérjen egyedi ajánlatot
</h3>
</div>
<div className="space-y-4">
<Button asChild className="w-full h-16 rounded-full bg-primary hover:bg-primary/90 text-white font-black uppercase tracking-widest text-xs shadow-lg shadow-primary/20">
<Link href="/kapcsolat">
{t.otherTransportPage.cta}
</Link>
</Button>
<div className="flex items-center justify-center gap-4 py-4">
<div className="h-px bg-slate-100 flex-grow" />
<span className="text-[10px] font-black text-slate-300 uppercase tracking-widest">vagy hívjon minket</span>
<div className="h-px bg-slate-100 flex-grow" />
</div>
<a href={`tel:${t.common.phone}`} className="flex items-center gap-4 p-5 rounded-[2rem] bg-slate-50 hover:bg-slate-100 transition-colors border border-slate-100 group">
<div className="bg-slate-900 p-3 rounded-2xl group-hover:scale-110 transition-transform">
<Phone className="w-5 h-5 text-white" />
</div>
<div>
<p className="text-[10px] font-black text-slate-400 uppercase tracking-[0.2em]">Hotline 24/7</p>
<p className="text-lg font-black text-slate-900">{t.common.phone}</p>
</div>
</a>
</div>
</Card>
{/* Quality Badge */}
<div className="rounded-[3rem] bg-gradient-to-br from-primary to-secondary p-[1px]">
<div className="bg-white rounded-[2.9rem] p-8 space-y-4">
<Shield className="w-10 h-10 text-primary" />
<h4 className="text-xl font-black uppercase tracking-tight text-slate-900">Garantált minőség</h4>
<p className="text-slate-500 text-sm font-medium leading-relaxed">
Több mint 10 év tapasztalatával garantáljuk a pontosságot és a prémium szolgáltatást minden egyedi megrendelés esetén is.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<Footer />
</PageReveal>
)
}

View File

@ -57,13 +57,42 @@ export default function Home() {
</div>
</FeatureSection>
{/* Other Transport Section */}
<FeatureSection
oversizedTitle={t.features.other.oversized}
title={t.features.other.title}
description={t.features.other.description}
ctaText={t.features.other.cta}
reversed
accentColor="text-indigo-500"
href="/egyeb-szemelyszallitas"
>
<div className="relative group p-4">
<div className="absolute inset-0 bg-indigo-500/10 blur-3xl rounded-full scale-110 group-hover:scale-125 transition-transform" />
<Card className="relative w-full aspect-square md:w-[450px] md:h-[450px] rounded-[3rem] overflow-hidden border-none shadow-2xl">
<Image
src="/images/mercedes.jpg"
alt="Egyéb személyszállítás"
fill
sizes="(min-width: 768px) 450px, 90vw"
className="object-cover group-hover:scale-105 transition-transform duration-700"
/>
<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">
<div className="space-y-2">
<p className="text-white text-xl font-black uppercase tracking-widest">{t.features.other.cardCaption}</p>
<p className="text-white/80 text-sm font-medium leading-relaxed">{t.features.other.cardDescription}</p>
</div>
</div>
</Card>
</div>
</FeatureSection>
{/* Customize Section */}
<FeatureSection
oversizedTitle={t.features.packages.oversized}
title={t.features.packages.title}
description={t.features.packages.description}
ctaText={t.features.packages.cta}
reversed
accentColor="text-purple-500"
href="/szolgaltatasok"
>
@ -92,6 +121,7 @@ export default function Home() {
oversizedTitle={t.features.security.oversized}
title={t.features.security.title}
description={t.features.security.description}
reversed
accentColor="text-green-500"
>
<div className="relative group p-4">
@ -120,36 +150,24 @@ export default function Home() {
title={t.features.booking.title}
description={t.features.booking.description}
ctaText={t.features.booking.cta}
reversed
accentColor="text-orange-500"
href="https://app.skyflytravel.hu/public/offers/new"
externalLink
>
<div className="relative group p-4">
<div className="absolute inset-0 bg-orange-500/10 blur-3xl rounded-full scale-110 group-hover:scale-125 transition-transform" />
<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">
<Card className="relative w-full aspect-square md:w-[450px] md:h-[450px] rounded-[3rem] overflow-hidden border-none shadow-2xl bg-white">
<Image
src="/images/booking-bg.svg"
alt=""
src="/images/booking.png"
alt="Online booking"
fill
sizes="(min-width: 768px) 450px, 90vw"
className="object-cover opacity-35"
aria-hidden
className="object-cover group-hover:scale-105 transition-transform duration-700"
/>
<div className="absolute inset-0 bg-gradient-to-b from-white/95 via-white/80 to-white/95" />
<div className="absolute inset-0 backdrop-blur-[1px]" />
<div className="relative text-center space-y-6">
<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">
<Star className="w-10 h-10 text-orange-500" />
</div>
<h4 className="text-2xl font-black uppercase tracking-tighter text-slate-900">{t.features.booking.cardCaption}</h4>
<p className="text-slate-700 text-sm font-medium leading-relaxed max-w-xs mx-auto">
{t.features.booking.cardDescription}
</p>
<div className="space-y-2 pt-4">
<div className="h-2 w-48 bg-slate-200/70 rounded-full mx-auto" >
</div>
<div className="h-2 w-32 bg-slate-200/40 rounded-full mx-auto" />
<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">
<div className="space-y-2">
<p className="text-white text-xl font-black uppercase tracking-widest">{t.features.booking.cardCaption}</p>
<p className="text-white/80 text-sm font-medium leading-relaxed">{t.features.booking.cardDescription}</p>
</div>
</div>
</Card>
@ -162,6 +180,7 @@ export default function Home() {
title={t.features.fleet.title}
description={t.features.fleet.description}
ctaText={t.features.fleet.cta}
reversed
accentColor="text-pink-500"
href="/flotta"
>
@ -190,7 +209,6 @@ export default function Home() {
oversizedTitle={t.features.nonstop.oversized}
title={t.features.nonstop.title}
description={t.features.nonstop.description}
reversed
accentColor="text-cyan-500"
customCTA={
<div className="flex flex-wrap gap-6 pt-2">
@ -227,6 +245,7 @@ export default function Home() {
oversizedTitle={t.discounts.oversized}
title={t.discounts.title}
description={t.discounts.description}
reversed
accentColor="text-primary"
customCTA={
<div className="flex flex-wrap gap-4">

View File

@ -34,21 +34,21 @@ const FeatureSection = ({
<section className="py-12 md:py-16 overflow-hidden">
<div className="max-w-7xl mx-auto px-6">
<div className={cn(
"flex flex-col lg:flex-row items-center gap-16",
"flex flex-col lg:flex-row items-center gap-12 lg:gap-16",
reversed && "lg:flex-row-reverse"
)}>
{/* Content */}
<div className="flex-1 space-y-8">
<div className="flex-1 space-y-8 w-full">
<div className="space-y-2">
<h3 className={cn("text-6xl md:text-8xl font-black uppercase tracking-tighter opacity-20", accentColor)}>
{oversizedTitle}
</h3>
<h2 className="text-4xl font-bold tracking-tight -mt-8 md:-mt-12 ml-2">
<h2 className="text-3xl md:text-4xl font-bold tracking-tight -mt-8 md:-mt-12 ml-2">
{title}
</h2>
</div>
<p className="text-xl text-slate-600 leading-relaxed max-w-xl">
<p className="text-lg md:text-xl text-slate-600 leading-relaxed max-w-xl">
{description}
</p>
@ -72,16 +72,21 @@ const FeatureSection = ({
</div>
{/* Visual */}
<div className="flex-1 w-full flex justify-center">
<div className={cn(
"flex-1 w-full flex justify-center",
reversed ? "order-first lg:order-last" : "order-last"
)}>
{children ? (
children
<div className="w-full">
{children}
</div>
) : (
<div className="relative group">
<div className="relative group w-full max-w-[500px]">
<div className={cn(
"absolute inset-0 blur-3xl opacity-20 rounded-full transition-all duration-500 scale-110 group-hover:scale-125",
accentColor.replace("text-", "bg-")
)} />
<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">
<Card className="relative w-full aspect-[4/3] md: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">
<div className="w-full h-full bg-slate-50 flex items-center justify-center">
<div className={cn("w-20 h-20 rounded-full opacity-20", accentColor.replace("text-", "bg-"))} />
</div>

View File

@ -4,13 +4,19 @@ import Image from "next/image"
import { Button } from "@/components/ui/button"
import { useLanguage } from "@/lib/language-context"
import { useEffect, useState } from "react"
import { ChevronLeft, ChevronRight } from "lucide-react"
import { cn } from "@/lib/utils"
export default function Footer() {
const { t, language } = useLanguage()
const year = new Date().getFullYear().toString()
const [ratingsData, setRatingsData] = useState<any>(null)
const [featuredReviews, setFeaturedReviews] = useState<any[]>([])
const [allReviews, setAllReviews] = useState<any[]>([])
const [currentPage, setCurrentPage] = useState(0)
const [isTransitioning, setIsTransitioning] = useState(false)
const reviewsPerPage = 2
useEffect(() => {
const fetchRatings = async () => {
@ -18,20 +24,8 @@ export default function Footer() {
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]])
setAllReviews(reviews)
} catch (error) {
console.error("Error fetching ratings:", error)
}
@ -39,27 +33,47 @@ export default function Footer() {
fetchRatings()
}, [language])
const totalPages = Math.ceil(allReviews.length / reviewsPerPage)
const handlePageChange = (direction: 'next' | 'prev') => {
if (isTransitioning) return
setIsTransitioning(true)
setTimeout(() => {
if (direction === 'next') {
setCurrentPage((prev) => (prev + 1) % totalPages)
} else {
setCurrentPage((prev) => (prev - 1 + totalPages) % totalPages)
}
setIsTransitioning(false)
}, 300)
}
const currentReviews = allReviews.slice(
currentPage * reviewsPerPage,
(currentPage + 1) * reviewsPerPage
)
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 reviewUrl = "https://g.page/r/CRltVP4lAy7lEBM/review"
const reviewPreviewText = (text: string) => (text.length > 160 ? `${text.slice(0, 160).trimEnd()}...` : text)
const reviewPreviewText = (text: string) => (text.length > 140 ? `${text.slice(0, 140).trimEnd()}...` : text)
const reviewStars = (value: number) => {
const safe = Math.max(0, Math.min(5, Math.round(value)))
return "★".repeat(safe) + "☆".repeat(5 - safe)
}
return (
<section className="py-16 md:py-20 bg-slate-950 text-white">
<section className="py-16 md:py-20 bg-slate-950 text-white overflow-hidden">
<div className="max-w-6xl mx-auto px-6">
<div className="grid gap-12 md:grid-cols-2 items-start">
<div className="space-y-8 text-center flex flex-col items-center">
<h2 className="text-4xl md:text-6xl font-black tracking-tighter uppercase">{t.footer.ready}</h2>
<p className="text-xl text-slate-400 max-w-xl mx-auto">
<div className="grid gap-12 lg:grid-cols-2 items-start">
<div className="space-y-8 text-center lg:text-left flex flex-col items-center lg:items-start transition-all duration-700">
<h2 className="text-4xl md:text-6xl font-black tracking-tighter uppercase leading-[0.9]">{t.footer.ready}</h2>
<p className="text-xl text-slate-400 max-w-xl">
{t.footer.description}
</p>
<div className="flex justify-center gap-6">
<Button size="lg" asChild className="rounded-full px-12 h-14 text-sm font-bold uppercase tracking-widest bg-primary hover:bg-primary/90 transition-all shadow-2xl">
<div className="flex justify-center lg:justify-start gap-6 pt-4">
<Button size="lg" asChild className="rounded-full px-12 h-14 text-sm font-bold uppercase tracking-widest bg-primary hover:bg-primary/90 transition-all shadow-2xl hover:scale-105 active:scale-95">
<a href="https://app.skyflytravel.hu/public/offers/new" target="_blank" rel="noopener noreferrer">
{t.footer.cta}
</a>
@ -67,27 +81,48 @@ export default function Footer() {
</div>
</div>
<div className="relative">
<div className="absolute -top-10 right-0 w-40 h-40 bg-primary/20 blur-3xl rounded-full" />
<div className="relative rounded-[2.5rem] bg-white/5 border border-white/10 p-6 md:p-7 backdrop-blur-xl shadow-2xl">
<div className="flex items-center justify-between gap-4">
<div className="text-[10px] font-black uppercase tracking-[0.3em] text-white/60">
<div className="relative group">
<div className="relative rounded-[2rem] bg-white/[0.03] border border-white/10 p-6 md:p-7 backdrop-blur-2xl shadow-[0_32px_64px_-16px_rgba(0,0,0,0.5)] transition-all duration-500 hover:border-white/20">
<div className="flex items-center justify-between gap-4 mb-6">
<div className="flex items-center gap-3">
<div className="w-1.5 h-1.5 bg-primary rounded-full animate-pulse" />
<div className="text-[10px] font-black uppercase tracking-[0.4em] text-white/50">
{t.footer.reviewsTitle}
</div>
<a href={reviewUrl} target="_blank" rel="noopener noreferrer" className="text-[10px] font-black uppercase tracking-[0.3em] text-primary hover:text-primary/80 transition-colors">
Google
</a>
</div>
{totalPages > 1 && (
<div className="flex items-center gap-2">
<button
onClick={() => handlePageChange('prev')}
className="p-1.5 rounded-full border border-white/5 hover:border-white/20 hover:bg-white/5 transition-all text-white/40 hover:text-white"
disabled={isTransitioning}
>
<ChevronLeft className="w-4 h-4" />
</button>
<div className="text-[10px] font-bold text-white/20 tracking-widest px-1">
{currentPage + 1} / {totalPages}
</div>
<button
onClick={() => handlePageChange('next')}
className="p-1.5 rounded-full border border-white/5 hover:border-white/20 hover:bg-white/5 transition-all text-white/40 hover:text-white"
disabled={isTransitioning}
>
<ChevronRight className="w-4 h-4" />
</button>
</div>
)}
</div>
<div className="mt-4 flex items-center gap-4">
<div className="text-3xl md:text-4xl font-black text-white">
<div className="flex items-center gap-6 mb-8">
<div className="text-4xl md:text-5xl font-black text-white tracking-tighter leading-none">
{ratingValue.toFixed(1)}
</div>
<div className="space-y-1">
<div className="space-y-1.5">
<div className="flex items-center gap-1.5">
<span
className="text-[14px] leading-none tracking-[0.1em] font-semibold"
className="text-[14px] md:text-[16px] leading-none tracking-[0.2em] font-semibold"
style={{
backgroundImage: `linear-gradient(90deg, #fde047 ${ratingPercent}%, rgba(255,255,255,0.35) ${ratingPercent}%)`,
backgroundImage: `linear-gradient(90deg, #fde047 ${ratingPercent}%, rgba(255,255,255,0.2) ${ratingPercent}%)`,
WebkitBackgroundClip: "text",
color: "transparent",
}}
@ -95,38 +130,59 @@ export default function Footer() {
>
</span>
<div className="text-[10px] font-black uppercase tracking-[0.3em] text-white/50">
({ratingCount})
</div>
<div className="text-[10px] font-black uppercase tracking-[0.3em] text-white/40 ml-0.5">
{ratingCount} {t.hero.rating}
</div>
</div>
</div>
<div className="mt-6 grid gap-4">
{featuredReviews.map((review, idx) => (
<div key={`${review.author ?? "review"}-${idx}`} className="rounded-[1.5rem] bg-white/5 border border-white/10 p-4 hover:-translate-y-1 transition-transform duration-300">
<div className="flex items-center justify-between gap-4">
<div className="text-[11px] tracking-[0.2em] text-yellow-300">
<div className="relative min-h-[260px]">
<div className={cn(
"grid gap-3 transition-all duration-300",
isTransitioning ? "opacity-0 translate-y-2 scale-[0.99] blur-sm" : "opacity-100 translate-y-0 scale-100 blur-0"
)}>
{currentReviews.map((review, idx) => (
<div key={`${review.author ?? "review"}-${idx}`} className="group/card rounded-[1.8rem] bg-white/[0.02] border border-white/5 p-5 transition-all duration-300 hover:bg-white/[0.05] hover:border-white/10">
<div className="flex items-center justify-between gap-4 mb-4">
<div className="text-[11px] tracking-[0.25em] text-yellow-400/80 drop-shadow-[0_0_8px_rgba(250,204,21,0.3)]">
{reviewStars(review.rating ?? 5)}
</div>
<div className="text-[9px] uppercase tracking-widest text-white/40">
{review.author ?? "Customer"}
<div className="text-[9px] uppercase tracking-[0.2em] font-black text-white/30 group-hover/card:text-white/50 transition-colors">
{review.author ?? "Google Reviewer"}
</div>
</div>
<p className="mt-3 text-sm text-white/80 leading-relaxed [display:-webkit-box] [webkit-line-clamp:3] [webkit-box-orient:vertical] overflow-hidden">
{reviewPreviewText(review.text ?? "")}
<p className="text-sm text-white/70 leading-relaxed font-medium [display:-webkit-box] [-webkit-line-clamp:3] [-webkit-box-orient:vertical] overflow-hidden italic">
"{reviewPreviewText(review.text ?? "")}"
</p>
</div>
))}
</div>
</div>
<div className="mt-8 pt-6 border-t border-white/5 flex items-center justify-between">
<a
href={reviewUrl}
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"
className="inline-flex items-center gap-3 text-[10px] font-black uppercase tracking-[0.4em] text-white/40 hover:text-primary transition-all group/cta"
>
{t.footer.reviewsCta}
<span className="group-hover/cta:translate-x-1 transition-transform">{t.footer.reviewsCta}</span>
<div className="w-5 h-px bg-white/10 group-hover/cta:bg-primary transition-colors" />
</a>
<div className="flex gap-1">
{Array.from({ length: totalPages }).map((_, i) => (
<div
key={i}
className={cn(
"h-0.5 transition-all duration-500",
currentPage === i ? "w-4 bg-primary" : "w-2 bg-white/10"
)}
/>
))}
</div>
</div>
</div>
</div>
</div>

View File

@ -92,6 +92,10 @@ const Hero = () => {
</span>
</h1>
<p className="text-sm md:text-base font-bold text-white/60 tracking-widest uppercase mb-4">
{t.hero.subtitle}
</p>
<p className="text-xl text-white/80 max-w-lg leading-relaxed font-medium">
{t.hero.description}
</p>
@ -111,7 +115,7 @@ const Hero = () => {
<div className="relative hidden lg:block">
{/* Main Floating Card - Booking Status */}
<div className="animate-float">
<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">
<Card className="w-full max-w-[500px] mx-auto bg-white shadow-2xl rounded-[2.5rem] p-6 transform lg:-rotate-2 overflow-hidden border-none backdrop-blur-sm bg-white/95">
<div className="space-y-6">
<div className="flex justify-between items-center border-b border-slate-100 pb-4">
<div className="flex items-center space-x-2">
@ -122,12 +126,12 @@ const Hero = () => {
</div>
<div className="space-y-4">
<div className="flex items-center justify-between">
<div className="flex items-center justify-between gap-4">
<div className="space-y-1">
<p className="text-[10px] text-slate-400 font-bold uppercase">{t.hero.cards.departure}</p>
<p className="text-xl font-black text-slate-900">{t.hero.cards.fromCity}</p>
<p className="text-lg md:text-xl font-black text-slate-900">{t.hero.cards.fromCity}</p>
</div>
<div className="flex-1 px-6 flex flex-col items-center">
<div className="flex-1 px-2 md:px-6 flex flex-col items-center">
<div className="w-full h-px bg-slate-200 relative">
<div className="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 bg-white px-2">
<Star className="w-4 h-4 text-primary fill-primary" />
@ -136,11 +140,11 @@ const Hero = () => {
</div>
<div className="text-right space-y-1">
<p className="text-[10px] text-slate-400 font-bold uppercase">{t.hero.cards.destination}</p>
<p className="text-xl font-black text-slate-900">{t.hero.cards.toAirport}</p>
<p className="text-lg md:text-xl font-black text-slate-900">{t.hero.cards.toAirport}</p>
</div>
</div>
<div className="grid grid-cols-3 gap-4 pt-4">
<div className="grid grid-cols-3 gap-3 md:gap-4 pt-4">
<div className="p-3 bg-slate-50 rounded-2xl flex flex-col items-center text-center space-y-1 border border-slate-100">
<Clock className="w-5 h-5 text-primary" />
<p className="text-[10px] font-bold">{t.hero.cards.duration}</p>
@ -155,15 +159,15 @@ const Hero = () => {
</div>
</div>
</div>
<Button className="w-full h-12 rounded-xl bg-slate-900 hover:bg-slate-800 text-white font-bold text-xs uppercase tracking-widest">
<Button className="w-full h-12 rounded-xl bg-slate-900 hover:bg-slate-800 text-white font-bold text-xs uppercase tracking-widest transition-all active:scale-[0.98]">
{t.hero.cards.manageBooking}
</Button>
</div>
</Card>
</div>
{/* Overlapping small cards */}
<div className="absolute -top-16 -right-10 animate-float animation-delay-2000">
{/* Overlapping small cards - Hidden on mobile, only visible from lg up */}
<div className="absolute -top-16 -right-10 hidden lg:block animate-float animation-delay-2000">
<Card className="w-56 bg-white shadow-xl rounded-3xl p-3 transform rotate-6 border-none overflow-hidden group">
<div className="relative w-full h-40 rounded-2xl overflow-hidden mb-3">
<Image
@ -182,7 +186,7 @@ const Hero = () => {
</Card>
</div>
<div className="absolute -bottom-16 -left-10 animate-float animation-delay-4000">
<div className="absolute -bottom-16 -left-10 hidden lg:block animate-float animation-delay-4000">
<Card className="w-64 bg-white shadow-xl rounded-3xl p-3 transform -rotate-3 border-none overflow-hidden group">
<div className="flex items-center space-x-3 mb-3">
<div className="relative w-16 h-16 rounded-2xl overflow-hidden shrink-0">
@ -209,8 +213,8 @@ const Hero = () => {
</Card>
</div>
{/* Review Snippet */}
<div className="absolute top-1/2 -right-16 translate-y-1/2 animate-float animation-delay-3000">
{/* Review Snippet - Hidden on mobile, only visible from lg up */}
<div className="absolute top-1/2 -right-16 translate-y-1/2 hidden lg:block animate-float animation-delay-3000">
<Card className="w-52 bg-primary/10 backdrop-blur-md shadow-lg rounded-2xl p-4 border border-white/20 transform -rotate-6">
<div className="flex mb-2">
{[1, 2, 3, 4, 5].map((i) => (

View File

@ -6,7 +6,8 @@ import Image from "next/image"
import { Button } from "@/components/ui/button"
import { cn } from "@/lib/utils"
import { useLanguage } from "@/lib/language-context"
import { Globe, Menu } from "lucide-react"
import { Globe, Menu, ChevronDown, Bus } from "lucide-react"
import { motion, AnimatePresence } from "framer-motion"
interface NavbarProps {
darkMode?: boolean
@ -15,6 +16,7 @@ interface NavbarProps {
const Navbar = ({ darkMode = false }: NavbarProps) => {
const [isScrolled, setIsScrolled] = React.useState(false)
const [isMenuOpen, setIsMenuOpen] = React.useState(false)
const [isDropdownOpen, setIsDropdownOpen] = React.useState(false)
const { language, setLanguage, t } = useLanguage()
const useLightNav = isScrolled || !darkMode
@ -54,25 +56,65 @@ const Navbar = ({ darkMode = false }: NavbarProps) => {
<Link
href="/arak"
className={cn(
"text-sm font-medium transition-colors",
"text-base font-semibold tracking-wide transition-colors",
useLightNav ? "text-slate-700 hover:text-primary" : "text-white/90 hover:text-slate-900"
)}
>
{t.nav.prices}
</Link>
<Link
href="/szolgaltatasok"
{/* Services Dropdown */}
<div
className="relative"
onMouseEnter={() => setIsDropdownOpen(true)}
onMouseLeave={() => setIsDropdownOpen(false)}
>
<button
className={cn(
"text-sm font-medium transition-colors",
"flex items-center gap-1 text-base font-semibold tracking-wide transition-colors cursor-pointer",
useLightNav ? "text-slate-700 hover:text-primary" : "text-white/90 hover:text-slate-900"
)}
>
{t.nav.services}
<ChevronDown className={cn("w-3.5 h-3.5 transition-transform duration-300", isDropdownOpen && "rotate-180")} />
</button>
<AnimatePresence>
{isDropdownOpen && (
<motion.div
initial={{ opacity: 0, y: 10, scale: 0.95 }}
animate={{ opacity: 1, y: 0, scale: 1 }}
exit={{ opacity: 0, y: 10, scale: 0.95 }}
transition={{ duration: 0.2, ease: "easeOut" }}
className="absolute top-full left-1/2 -translate-x-1/2 mt-3 w-64 bg-white rounded-2xl shadow-2xl border border-slate-100 overflow-hidden p-2"
>
<Link
href="/szolgaltatasok"
className="flex items-center gap-3 px-4 py-3 rounded-xl hover:bg-slate-50 text-slate-700 hover:text-primary transition-all group"
>
<div className="bg-primary/10 p-2 rounded-lg group-hover:bg-primary group-hover:text-white transition-colors">
<Globe className="w-4 h-4" />
</div>
<span className="text-sm font-bold">{t.nav.servicePackages}</span>
</Link>
<Link
href="/egyeb-szemelyszallitas"
className="flex items-center gap-3 px-4 py-3 rounded-xl hover:bg-slate-50 text-slate-700 hover:text-primary transition-all group"
>
<div className="bg-slate-100 p-2 rounded-lg group-hover:bg-primary group-hover:text-white transition-colors">
<Bus className="w-4 h-4" />
</div>
<span className="text-sm font-bold">{t.nav.otherTransport}</span>
</Link>
</motion.div>
)}
</AnimatePresence>
</div>
<Link
href="/feltetelek"
className={cn(
"text-sm font-medium transition-colors",
"text-base font-semibold tracking-wide transition-colors",
useLightNav ? "text-slate-700 hover:text-primary" : "text-white/90 hover:text-slate-900"
)}
>
@ -81,7 +123,7 @@ const Navbar = ({ darkMode = false }: NavbarProps) => {
<Link
href="/flotta"
className={cn(
"text-sm font-medium transition-colors",
"text-base font-semibold tracking-wide transition-colors",
useLightNav ? "text-slate-700 hover:text-primary" : "text-white/90 hover:text-slate-900"
)}
>
@ -90,7 +132,7 @@ const Navbar = ({ darkMode = false }: NavbarProps) => {
<Link
href="/kapcsolat"
className={cn(
"text-sm font-medium transition-colors",
"text-base font-semibold tracking-wide transition-colors",
useLightNav ? "text-slate-700 hover:text-primary" : "text-white/90 hover:text-slate-900"
)}
>
@ -161,14 +203,22 @@ const Navbar = ({ darkMode = false }: NavbarProps) => {
{isMenuOpen && (
<div className="fixed inset-0 z-40 flex flex-col pt-32 px-8 animate-in slide-in-from-top duration-300">
<div className="absolute inset-0 bg-slate-950/95 backdrop-blur-md" />
<div className="relative flex flex-col space-y-6 text-center">
<Link onClick={() => setIsMenuOpen(false)} href="/arak" className="text-2xl font-bold text-white hover:text-primary transition-colors">{t.nav.prices}</Link>
<Link onClick={() => setIsMenuOpen(false)} href="/szolgaltatasok" className="text-2xl font-bold text-white hover:text-primary transition-colors">{t.nav.services}</Link>
<Link onClick={() => setIsMenuOpen(false)} href="/feltetelek" className="text-2xl font-bold text-white hover:text-primary transition-colors">{t.nav.conditions}</Link>
<Link onClick={() => setIsMenuOpen(false)} href="/flotta" className="text-2xl font-bold text-white hover:text-primary transition-colors">{t.nav.fleet}</Link>
<Link onClick={() => setIsMenuOpen(false)} href="/kapcsolat" className="text-2xl font-bold text-white hover:text-primary transition-colors">{t.nav.contact}</Link>
<div className="relative flex flex-col space-y-5 text-center">
<Link onClick={() => setIsMenuOpen(false)} href="/arak" className="text-xl font-bold text-white hover:text-primary transition-colors">{t.nav.prices}</Link>
<div className="flex justify-center gap-4 pt-8">
<div className="flex flex-col space-y-4 py-4 px-6 bg-white/5 rounded-[2rem] border border-white/5">
<span className="text-[10px] font-black uppercase tracking-[0.3em] text-white/40">{t.nav.services}</span>
<div className="flex flex-col space-y-4">
<Link onClick={() => setIsMenuOpen(false)} href="/szolgaltatasok" className="text-lg font-bold text-white hover:text-primary transition-colors">{t.nav.servicePackages}</Link>
<Link onClick={() => setIsMenuOpen(false)} href="/egyeb-szemelyszallitas" className="text-lg font-bold text-white hover:text-primary transition-colors">{t.nav.otherTransport}</Link>
</div>
</div>
<Link onClick={() => setIsMenuOpen(false)} href="/feltetelek" className="text-xl font-bold text-white hover:text-primary transition-colors">{t.nav.conditions}</Link>
<Link onClick={() => setIsMenuOpen(false)} href="/flotta" className="text-xl font-bold text-white hover:text-primary transition-colors">{t.nav.fleet}</Link>
<Link onClick={() => setIsMenuOpen(false)} href="/kapcsolat" className="text-xl font-bold text-white hover:text-primary transition-colors">{t.nav.contact}</Link>
<div className="flex justify-center gap-4 pt-6">
<button onClick={() => { setLanguage("hu"); setIsMenuOpen(false) }} className={cn("px-6 py-2 rounded-full font-bold", language === "hu" ? "bg-white text-slate-900" : "bg-white/10 text-white")}>{t.nav.language.hu}</button>
<button onClick={() => { setLanguage("en"); setIsMenuOpen(false) }} className={cn("px-6 py-2 rounded-full font-bold", language === "en" ? "bg-white text-slate-900" : "bg-white/10 text-white")}>{t.nav.language.en}</button>
</div>

View File

@ -3,7 +3,7 @@
import { cn } from "@/lib/utils"
import { Info, Tag, Check, Shield, CircleHelp } from "lucide-react"
import { useLanguage } from "@/lib/language-context"
import { useState } from "react"
import { useState, Fragment } from "react"
interface PricingRow {
persons: string
@ -45,6 +45,7 @@ const PricingTable = ({
}: PricingTableProps) => {
const { t } = useLanguage()
const [isSurchargeOpen, setIsSurchargeOpen] = useState(false)
const [activeInfo, setActiveInfo] = useState<string | null>(null)
return (
<div className="w-full space-y-8 mb-24">
@ -76,34 +77,38 @@ const PricingTable = ({
{/* Mobile cards */}
<div className="block md:hidden divide-y divide-slate-100">
{rows.map((row, idx) => (
<div key={idx} className={cn("p-5", idx % 2 === 0 ? "bg-white" : "bg-slate-50/30")}>
<div className="flex items-center gap-3 text-slate-900 font-bold mb-4">
<div key={idx} className={cn("p-4 px-6", idx % 2 === 0 ? "bg-white" : "bg-slate-50/30")}>
<div className="flex items-center gap-2 text-slate-900 font-bold mb-3">
<div className="w-1.5 h-1.5 rounded-full bg-primary" />
<span>{row.persons}</span>
<span className="text-base">{row.persons}</span>
</div>
<div className="grid grid-cols-2 gap-4 text-sm">
<div className="text-center">
<div className="text-[10px] uppercase tracking-[0.2em] text-slate-400 mb-2">{t.pricing.table.express}</div>
<div className="font-extrabold text-blue-950 flex items-center justify-center gap-2">
<span>{row.express}</span>
<div className="grid grid-cols-2 gap-2 text-sm items-start">
<div className="text-center space-y-1">
<div className="text-[9px] uppercase tracking-[0.2em] text-slate-400">{t.pricing.table.express}</div>
<div className="font-extrabold text-blue-950 flex flex-col items-center gap-1.5">
<span className="text-lg leading-tight">{row.express}</span>
{idx === 0 && expressInfo && (
<span className="relative inline-flex items-center group">
<Info className="w-3 h-3 text-slate-300 hover:text-primary cursor-help transition-colors" />
<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">
{expressInfo}
</span>
</span>
<button
type="button"
onClick={() => setActiveInfo(expressInfo)}
className="inline-flex items-center gap-1 px-2 py-0.5 rounded-full text-[9px] font-black uppercase tracking-wider bg-primary/5 text-primary border border-primary/20 hover:bg-primary/10 transition-all active:scale-95"
>
<Info className="w-2.5 h-2.5" />
Infó
</button>
)}
</div>
</div>
<div className="text-center">
<div className="text-[10px] uppercase tracking-[0.2em] text-slate-400 mb-2">{t.pricing.table.private}</div>
<div className="font-extrabold text-white px-4 py-1.5 bg-secondary rounded-full text-xs tracking-wider shadow-sm inline-block">
<div className="text-center space-y-1">
<div className="text-[9px] uppercase tracking-[0.2em] text-slate-400">{t.pricing.table.private}</div>
<div className="flex flex-col items-center">
<div className="font-extrabold text-white px-3 py-1 bg-secondary rounded-full text-[11px] tracking-wider shadow-sm">
{row.private}
</div>
</div>
</div>
</div>
</div>
))}
</div>
@ -113,12 +118,6 @@ const PricingTable = ({
<thead>
<tr className="bg-slate-50/50 text-slate-500 text-[10px] uppercase tracking-[0.2em] border-b border-slate-100">
<th className="py-6 px-4 md:py-8 md:px-10 font-bold whitespace-nowrap">{t.pricing.table.passengers}</th>
<th className="py-6 px-2 md:py-8 md:px-4 font-bold text-center">
<div className="flex flex-col items-center gap-1 opacity-40">
<span className="text-slate-400">{t.pricing.table.classic}</span>
<span className="text-[10px] lowercase normal-case tracking-normal">{t.pricing.table.classicNote}</span>
</div>
</th>
<th className="py-8 px-4 font-bold text-center">
<div className="flex items-center justify-center gap-2">
<span className="text-primary font-black">{t.pricing.table.express}</span>
@ -140,7 +139,7 @@ const PricingTable = ({
<tbody className="text-slate-700">
{rows.map((row, idx) => (
<tr
key={idx}
key={`row-${idx}`}
className={cn(
"border-b border-slate-50 transition-colors hover:bg-slate-50/80",
idx % 2 === 0 ? "bg-white" : "bg-slate-50/20"
@ -152,19 +151,20 @@ const PricingTable = ({
{row.persons}
</div>
</td>
<td className="py-4 px-2 md:py-5 md:px-4 text-center text-slate-300">
<span className="text-xs"></span>
</td>
<td className="py-5 px-4 text-center">
<div className="flex items-center justify-center gap-2">
<div className="flex flex-col items-center justify-center gap-1">
<span className="font-extrabold text-blue-950">{row.express}</span>
{idx === 0 && expressInfo && (
<span className="relative inline-flex items-center group">
<Info className="w-3 h-3 text-slate-300 hover:text-primary cursor-help transition-colors" />
<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">
{expressInfo}
</span>
</span>
<div className="mt-1">
<button
type="button"
onClick={() => setActiveInfo(expressInfo)}
className="inline-flex items-center gap-1 px-2.5 py-0.5 rounded-full text-[10px] font-black uppercase tracking-wider bg-primary/5 text-primary border border-primary/20 hover:bg-primary/10 transition-colors"
>
<Info className="w-3 h-3" />
Infó
</button>
</div>
)}
</div>
</td>
@ -269,6 +269,57 @@ const PricingTable = ({
</div>
</div>
)}
{/* Luxury Popover - Redesigned to be beautiful and dynamic */}
{
activeInfo && (
<div className="fixed inset-0 z-[100] flex items-center justify-center p-6 animate-in fade-in duration-300">
{/* Backdrop with premium silk blur */}
<div
className="absolute inset-0 bg-slate-950/60 backdrop-blur-md"
onClick={() => setActiveInfo(null)}
/>
{/* Popover Card */}
<div className="relative w-full max-w-md bg-white rounded-[2.5rem] shadow-[0_25px_70px_rgba(0,0,0,0.4)] border border-white/20 overflow-hidden animate-in zoom-in-95 slide-in-from-bottom-5 duration-300">
{/* Decorative Header */}
<div className="bg-slate-900 px-8 py-6 flex items-center justify-between">
<div className="flex items-center gap-3">
<div className="w-10 h-10 bg-primary/20 rounded-xl flex items-center justify-center">
<Info className="w-5 h-5 text-primary" />
</div>
<span className="font-black uppercase tracking-[0.2em] text-[11px] text-white">Információ</span>
</div>
<button
onClick={() => setActiveInfo(null)}
className="w-8 h-8 rounded-full bg-white/5 flex items-center justify-center text-white/40 hover:text-white hover:bg-white/10 transition-all"
>
<svg className="w-4 h-4" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
</div>
{/* Content Area */}
<div className="px-10 py-12 text-center">
<p className="text-slate-600 text-lg leading-relaxed font-medium">
{activeInfo}
</p>
</div>
{/* Footer Button */}
<div className="px-8 pb-8">
<button
type="button"
onClick={() => setActiveInfo(null)}
className="w-full rounded-2xl bg-slate-900 py-5 text-sm font-black uppercase tracking-[0.2em] text-white shadow-xl shadow-slate-950/20 hover:bg-slate-800 transition-all active:scale-[0.98]"
>
Értem
</button>
</div>
</div>
</div>
)
}
</div>
)
}

BIN
images/Ford Tourneo.JPG Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

BIN
images/Ford Transit.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 200 KiB

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 144 KiB

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 171 KiB

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 131 KiB

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 175 KiB

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 211 KiB

After

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 206 KiB

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 147 KiB

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 122 KiB

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 127 KiB

After

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 116 KiB

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 163 KiB

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 149 KiB

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 207 KiB

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 209 KiB

After

Width:  |  Height:  |  Size: 48 KiB

BIN
images/Merci esküvő.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 MiB

BIN
images/Opel vivaro.JPG Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

View File

@ -13,6 +13,8 @@
},
nav: {
services: "Szolgáltatások",
servicePackages: "Szolgáltatási csomagok",
otherTransport: "Egyéb személyszállítás",
fleet: "Flotta",
prices: "Árak",
conditions: "Feltételek",
@ -24,6 +26,7 @@
rating: "Ügyfél elégedettség",
title: "Gyors, Megbízható ",
titleAccent: "Reptéri transzfer",
subtitle: " és egyéb személyszállítás ",
description: "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.",
booking: "Online Foglalás",
fares: "Viteldíjak",
@ -56,9 +59,16 @@
title: "Háztól-házig reptéri transzfer",
description: "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.",
cta: "Foglalás indítása",
cardCaption: "Reptéri Transzfer",
cardDescription: "Kényelmes utazás háztól-házig, fix árakon, rejtett költségek nélkül."
},
other: {
oversized: "EGYÉB",
title: "Egyéb személyszállítási szolgáltatások",
description: "Nem csak reptéri transzfert vállalunk. Rendezvényekre, esküvőkre, üzleti utakra vagy akár városnézésre is rendelkezésre állunk prémium gépjárműveinkkel és tapasztalt sofőreinkkel.",
cta: "Ajánlatkérés",
cardCaption: "Személyszállítás",
cardDescription: "Rendezvények, üzleti utak és egyedi igények kiszolgálása prémium színvonalon."
},
packages: {
oversized: "CSOMAGOK",
title: "Személyre szabott utazási típusok",
@ -70,7 +80,7 @@
security: {
oversized: "BIZTONSÁG",
title: "Több mint 10 év szakmai tapasztalat",
description: "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.",
description: "több mint 10 éve vagyunk jelen a piacon. Megbízható, tapasztalt, képzett sofőreink és folyamatosan karbantartott flottánk a garancia arra, hogy Ön időben és biztonságban érkezzen meg úticéljához.",
cta: "Rólunk bővebben",
cardCaption: "Prémium Kényelem",
cardDescription: "Tapasztalt sofőrök, modern flotta és teljes körű utasbiztosítás."
@ -78,10 +88,10 @@
booking: {
oversized: "FOGLALÁS",
title: "Villámgyors online rendszer",
description: "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ű.",
description: "Modern foglalási felületünkön percek alatt rögzítheti utazását. Azonnali visszaigazolást kap arról, hogy megrendelését sikeresen leadta. Visszaigazolást, minden részlettel együtt legfeljebb 2 munkanapon belül küldjük az Ön által megadott email címre, szabad kapacitás függvényében. Nincs rejtett költség, nincs apróbetű, a visszaigazolásban minden vállalási feltételt megtalál. (időpont, viteldíj, lemondás, módosítás, gép késés stb.)",
cta: "Online Árajánlat",
cardCaption: "Gyors Foglalás",
cardDescription: "Egyszerű, 2 perces online foglalás azonnali visszaigazolással."
cardDescription: "Egyszerű, 2 perces online foglalás, azonnali visszaigazolás a foglalás rendszerünkbe érkezéséről."
},
fleet: {
oversized: "FLOTTA",
@ -108,18 +118,20 @@
back: "Vissza a kezdőlapra",
title: "Transzfer",
titleAccent: "Viteldíjak",
description: "Á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.",
description: "Átlátható árak, rejtett költségek nélkül. Számoljon előre és utazzon stresszmentesen a SkyFly Travellel. Válassza a kényelmes, biztonságos utazást és élvezze a több mint 10 éves szakmai tapasztalatunkat!",
banner: {
title: "Fontos foglalási információ",
description: "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."
description: [
"A foglalásokat legfeljebb 2 munkanapon belül, kizárólag szabad kapacitás függvényében áll módunkban visszaigazolni. Az út előtti munkanap 12:00 után leadott megrendelések esetén, kérjük mindenképp keresse fel ügyfélszolgálatunkat (+36305543838), hogy tájékoztatni tudjuk a lehetőségekről. Határidőn túli megrendelések elfogadása esetén, 2.500 Ft sürgősségi felárat számítunk fel.",
"Ünnepnapokon ( pl. Húsvét, Pünkösd, Karácsony, Szilveszter stb.) feláras szolgáltatás keretében vállalunk transzfer szolgáltatást. (a felárak útvonalanként eltérőek, ezért kérjen ajánlatot az utazási részletek megadásával és tájékoztatjuk a pontos ünnepi felárakról)",
"Győrtől eltérő címek esetén is vállalunk transzfert (Nyugat - Dunántúli régióban), kérjen ajánlatot és tájékoztatjuk a pontos viteldíjakról!"
]
},
table: {
passengers: "Utasok száma",
classic: "Gyűjtő CLASSIC",
classicNote: "Jelenleg nem elérhető",
express: "Gyűjtő EXPRESS",
private: "PRIVATE",
premium: "Prémium opciók",
premium: "Prémium VIP opciók",
effective: "Érvényes árak"
},
routes: {
@ -133,7 +145,7 @@
gyorBecs: "GYŐR BÉCS REPTÉR (SCHWECHAT) vagy BÉCS REPTÉR - GYŐR",
gyorBudapest: "GYŐR BUDAPEST REPTÉR vagy BUDAPEST REPTÉR - GYŐR",
gyorPozsony: "GYŐR POZSONY REPTÉR vagy POZSONY REPTÉR - GYŐR",
budapestBecs: "BUDAPEST BÉCS REPTÉR (SCHWECHAT) vagy BÉCS REPTÉR (SCHWECHAT) - BUDAPEST"
budapestBecs: "BUDAPEST BÉCS vagy POZSONY REPTÉR és visszairány"
},
rows: {
becs: [
@ -145,12 +157,12 @@
{ persons: "7-8 fő / 1 út", express: "35.000 HUF", private: "39.000 HUF" }
],
budapest: [
{ persons: "1 fő / 1 út", express: "22.000 HUF", private: "38.000 HUF" },
{ persons: "2 fő / 1 út", express: "28.000 HUF", private: "38.000 HUF" },
{ persons: "3 fő / 1 út", express: "33.000 HUF", private: "38.000 HUF" },
{ persons: "4 fő / 1 út", express: "38.000 HUF", private: "45.000 HUF" },
{ persons: "5-6 fő / 1 út", express: "42.000 HUF", private: "50.000 HUF" },
{ persons: "7-8 fő / 1 út", express: "45.000 HUF", private: "52.000 HUF" }
{ persons: "1 fő / 1 út", express: "20.000 HUF", private: "40.000 HUF" },
{ persons: "2 fő / 1 út", express: "28.000 HUF", private: "40.000 HUF" },
{ persons: "3 fő / 1 út", express: "32.000 HUF", private: "40.000 HUF" },
{ persons: "4 fő / 1 út", express: "40.000 HUF", private: "45.000 HUF" },
{ persons: "5-6 fő / 1 út", express: "45.000 HUF", private: "50.000 HUF" },
{ persons: "7-8 fő / 1 út", express: "50.000 HUF", private: "55.000 HUF" }
],
pozsony: [
{ persons: "1 fő / 1 út", express: "16.000 HUF", private: "29.000 HUF" },
@ -183,6 +195,18 @@
description: "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)"
}
],
budapest: [
{
name: "Családi csomag",
price: "42.000 HUF",
description: "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)"
},
{
name: "„Nagy” családi csomag",
price: "47.500 HUF",
description: "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)"
}
],
budapestVienna: [
{
name: "Családi csomag",
@ -198,12 +222,16 @@
},
vipInfo: {
base: [
"1-3 fő (Mercedes E-class): 40.000 Ft",
"4-6 fő (Mercedes Vito / Ford Tourneo Custom): 50.000 Ft"
"1-3 fő (Mercedes E-class VIP): 40.000 Ft",
"4-6 fő (Mercedes Vito / Ford Tourneo Custom VIP): 50.000 Ft"
],
budapest: [
"1-3 fő (Mercedes E-class VIP): 50.000 Ft",
"4-6 fő (Mercedes Vito / Ford Tourneo Custom VIP): 65.000 Ft"
],
budapestVienna: [
"1-3 fő (Mercedes E-class): 75.000 Ft",
"4-6 fő (Mercedes Vito / Ford Tourneo Custom): 95.000 Ft"
"1-3 fő (Mercedes E-class VIP): 75.000 Ft",
"4-6 fő (Mercedes Vito / Ford Tourneo Custom VIP): 95.000 Ft"
]
},
expressInfoTemplate: "Amennyiben nincs más utas a viteldíj {price}. (22:00-05:00 utasfelvétel esetén Private transzfer keretében tudjuk vállalni, ha nincs más)",
@ -438,18 +466,18 @@
oversized: "AKCIÓK",
fbGoogle: {
title: "Facebook & Google",
desc: "Kövessen minket Facebookon vagy értékeljen a Google-ön a kedvezményért.",
desc: "Kövessen minket Facebookon vagy értékeljen a Google-ön az 5% extra kedvezményért.",
cta: "Részletek és igénylés"
},
tiktok: {
title: "TikTok Akció",
desc: "Likeolja a kijelölt videónkat a TikTokon és utazzon kedvezménnyel.",
desc: "Likeolja a kijelölt videónkat a TikTokon és utazzon a 2025-ös árakon!",
cta: "Részletek és igénylés"
},
pages: {
fbGoogle: {
back: "Vissza a kezdőlapra",
discountLabel: "Kedvezmény",
discountLabel: "-5% Kedvezmény",
facebookOpen: "Facebook oldal megnyitása",
googleReview: "Google értékelés írása",
facebookLabel: "Facebook:",
@ -567,6 +595,38 @@
phone: "Tel/Fax: +36 96 335 605"
}
},
otherTransportPage: {
meta: {
title: "Egyéb személyszállítás - Egyedi igényekre szabva | SkyFly Travel",
description: "Egyéni és csoportos személyszállítás: kirándulások, esküvők, céges rendezvények, munkásjáratok. Rugalmas megoldások, modern flotta."
},
back: "Vissza a kezdőlapra",
title: "Egyéb",
titleAccent: "személyszállítás",
heroDescription: "Egyedi igényekhez szabott, rugalmas személyszállítási megoldások. Legyen szó családi eseményről, céges rendezvényről vagy rendszeres munkásjáratról, ránk számíthat.",
mainContent: "Egyéb személyszállítás alatt értjük azokat az utaztatásokat, melyek során a megrendelő egyedi igényeinek megfelelően teljesítjük a személyszállítást. Például: kirándulások (akár több napos külföldi kirándulás), esküvők (esküvői autó és vendégek szállítása kisbuszokkal), céges rendezvények, konferenciák, munkásjáratok. Nagyobb létszám esetén több kisbusz rendelhető egyidőre vagy nagy buszos partnerünk szolgáltatása is választható.",
services: [
{
title: "Kirándulások",
desc: "Belföldi és külföldi kirándulások, akár több napos utak lebonyolítása modern, kényelmes járműveinkkel."
},
{
title: "Esküvők",
desc: "Elegáns esküvői autók a párnak, és megbízható kisbuszos szállítás a násznép részére."
},
{
title: "Céges rendezvények",
desc: "Konferenciák, csapatépítők és egyéb vállalati események logisztikai háttere."
},
{
title: "Munkásjáratok",
desc: "Rendszeres, pontos és biztonságos munkaszállítás a hét minden napján, vállalatok részére."
}
],
capacityTitle: "Rugalmas létszám",
capacityDesc: "Flottánk és partnerhálózatunk lehetővé teszi, hogy a kisebb csoportoktól a több száz fős rendezvényekig mindenre megoldást nyújtsunk. Több kisbusz vagy akár nagy buszos partnerünk bevonásával garantáljuk a zökkenőmentes szállítást.",
cta: "Kérjen egyedi ajánlatot"
},
footer: {
ready: "Készen áll az indulásra?",
description: "Csatlakozzon elégedett utasaink ezreihez és válassza a kényelmet.",
@ -601,6 +661,8 @@
},
nav: {
services: "Services",
servicePackages: "Service Packages",
otherTransport: "Other Personal Transport",
fleet: "Fleet",
prices: "Prices",
conditions: "Conditions",
@ -612,6 +674,7 @@
rating: "Customer Satisfaction",
title: "Fast, Reliable ",
titleAccent: "Airport transfer",
subtitle: " and other passenger transport ",
description: "Door-to-door service with more than 10 years of experience. Travel comfortably between Budapest, Vienna, Bratislava, and Győr.",
booking: "Online Booking",
fares: "Fares",
@ -644,9 +707,16 @@
title: "Door-to-door airport transfer",
description: "Forget parking hassles and struggling with luggage. Our drivers wait for you at the specified address and whisk you directly to the terminal entrance. Győr, Budapest, Vienna, Bratislava travel is easy with us.",
cta: "Start Booking",
cardCaption: "Airport Transfer",
cardDescription: "Comfortable door-to-door travel at fixed prices with no hidden costs."
},
other: {
oversized: "TRANSPORT",
title: "Other passenger transport services",
description: "We don't just do airport transfers. We are available for events, weddings, business trips, or even city tours with our premium vehicles and experienced drivers.",
cta: "Request a Quote",
cardCaption: "Passenger Transport",
cardDescription: "Serving events, business trips, and unique needs at a premium level."
},
packages: {
oversized: "PACKAGES",
title: "Tailored travel types",
@ -658,7 +728,7 @@
security: {
oversized: "SECURITY",
title: "More than 10 years of professional experience",
description: "We have been on the market for nearly two decades. Our reliable, experienced drivers and continuously maintained fleet are the guarantee that you arrive on time and safely at your destination.",
description: "We have been on the market for more than 10 years. Our reliable, experienced drivers and continuously maintained fleet are the guarantee that you arrive on time and safely at your destination.",
cta: "Read More About Us",
cardCaption: "Premium Comfort",
cardDescription: "Experienced drivers, modern fleet, and full passenger insurance."
@ -666,10 +736,10 @@
booking: {
oversized: "BOOKING",
title: "Lightning-fast online system",
description: "You can book your trip in minutes on our modern booking interface. You receive immediate confirmation, so you can prepare for your flight with peace of mind. No hidden costs, no small print.",
description: "Record your trip in minutes on our modern booking interface. You'll receive immediate confirmation that your order has been successfully submitted. A full confirmation with all details will be sent to your email within 2 business days, subject to availability. No hidden costs, no small print - you'll find all terms and conditions (time, fare, cancellation, modification, flight delay, etc.) in the final confirmation.",
cta: "Online Quote",
cardCaption: "Fast Booking",
cardDescription: "Simple, 2-minute online booking with immediate confirmation."
cardDescription: "Simple, 2-minute online booking with instant receipt confirmation."
},
fleet: {
oversized: "FLEET",
@ -696,18 +766,20 @@
back: "Back to home",
title: "Transfer",
titleAccent: "Fares",
description: "Transparent prices, no hidden costs. Plan ahead and travel stress-free with SkyFly Travel. Choose from our premium fleet and enjoy our more than 10 years of professional experience.",
description: "Transparent prices, no hidden costs. Plan ahead and travel stress-free with SkyFly Travel. Choose comfortable, safe travel and enjoy our more than 10 years of professional experience!",
banner: {
title: "Important booking information",
description: "Bookings can only be confirmed subject to free capacity within max. 3 working days. For bookings made after 12:00 on the working day before the trip, an urgency surcharge of 2,500 HUF will be charged."
description: [
"We are able to confirm bookings within a maximum of 2 business days, strictly subject to availability. For orders placed after 12:00 on the business day before the trip, please be sure to contact our customer service (+36305543838) so we can inform you of the options. If a late order is accepted, a 2,500 HUF urgency surcharge will be applied.",
"On public holidays (e.g., Easter, Whitsun, Christmas, New Year's Eve, etc.), we provide transfer services as a premium-surcharge service. (Surcharges vary by route, so please request a quote with your travel details, and we will inform you of the exact holiday surcharge)",
"We also undertake transfers to/from addresses other than Győr (in the Western Transdanubia region); request a quote, and we will inform you of the exact fares!"
]
},
table: {
passengers: "Number of passengers",
classic: "Shared CLASSIC",
classicNote: "Currently unavailable",
express: "Shared EXPRESS",
private: "PRIVATE",
premium: "Premium options",
premium: "Premium VIP options",
effective: "Prices valid from"
},
routes: {
@ -721,7 +793,7 @@
gyorBecs: "GYŐR VIENNA AIRPORT (SCHWECHAT) or VIENNA AIRPORT - GYŐR",
gyorBudapest: "GYŐR BUDAPEST AIRPORT or BUDAPEST AIRPORT - GYŐR",
gyorPozsony: "GYŐR BRATISLAVA AIRPORT or BRATISLAVA AIRPORT - GYŐR",
budapestBecs: "BUDAPEST VIENNA AIRPORT (SCHWECHAT) or VIENNA AIRPORT (SCHWECHAT) - BUDAPEST"
budapestBecs: "BUDAPEST VIENNA or BRATISLAVA AIRPORT and back"
},
rows: {
becs: [
@ -733,12 +805,12 @@
{ persons: "7-8 pax / 1 way", express: "35.000 HUF", private: "39.000 HUF" }
],
budapest: [
{ persons: "1 pax / 1 way", express: "22.000 HUF", private: "38.000 HUF" },
{ persons: "2 pax / 1 way", express: "28.000 HUF", private: "38.000 HUF" },
{ persons: "3 pax / 1 way", express: "33.000 HUF", private: "38.000 HUF" },
{ persons: "4 pax / 1 way", express: "38.000 HUF", private: "45.000 HUF" },
{ persons: "5-6 pax / 1 way", express: "42.000 HUF", private: "50.000 HUF" },
{ persons: "7-8 pax / 1 way", express: "45.000 HUF", private: "52.000 HUF" }
{ persons: "1 pax / 1 way", express: "20.000 HUF", private: "40.000 HUF" },
{ persons: "2 pax / 1 way", express: "28.000 HUF", private: "40.000 HUF" },
{ persons: "3 pax / 1 way", express: "32.000 HUF", private: "40.000 HUF" },
{ persons: "4 pax / 1 way", express: "40.000 HUF", private: "45.000 HUF" },
{ persons: "5-6 pax / 1 way", express: "45.000 HUF", private: "50.000 HUF" },
{ persons: "7-8 pax / 1 way", express: "50.000 HUF", private: "55.000 HUF" }
],
pozsony: [
{ persons: "1 pax / 1 way", express: "16.000 HUF", private: "29.000 HUF" },
@ -771,6 +843,18 @@
description: "max. 6 pax, min. 1 child (0-14 yrs), private transfer, max. 6 standard and 6 hand luggage (Performed by minibus)"
}
],
budapest: [
{
name: "Family package",
price: "42.000 HUF",
description: "max. 4 pax, min. 1 child (0-14 yrs), private transfer, max. 3 standard and 3 hand luggage (Performed by passenger car)"
},
{
name: "„Large” family package",
price: "47.500 HUF",
description: "max. 6 pax, min. 1 child (0-14 yrs), private transfer, max. 6 standard and 6 hand luggage (Performed by minibus)"
}
],
budapestVienna: [
{
name: "Family package",
@ -786,12 +870,16 @@
},
vipInfo: {
base: [
"1-3 pax (Mercedes E-class): 40.000 Ft",
"4-6 pax (Mercedes Vito / Ford Tourneo Custom): 50.000 Ft"
"1-3 passengers (Mercedes E-class VIP): 40.000 HUF",
"4-6 passengers (Mercedes Vito / Ford Tourneo Custom VIP): 50.000 HUF"
],
budapest: [
"1-3 passengers (Mercedes E-class VIP): 50.000 HUF",
"4-6 passengers (Mercedes Vito / Ford Tourneo Custom VIP): 65.000 HUF"
],
budapestVienna: [
"1-3 pax (Mercedes E-class): 75.000 Ft",
"4-6 pax (Mercedes Vito / Ford Tourneo Custom): 95.000 Ft"
"1-3 passengers (Mercedes E-class VIP): 75.000 HUF",
"4-6 passengers (Mercedes Vito / Ford Tourneo Custom VIP): 95.000 HUF"
]
},
expressInfoTemplate: "If there are no other passengers, the fare is {price}. (For pickups between 22:00-05:00 we can only provide Private transfer if there are no other passengers.)",
@ -1023,18 +1111,18 @@
oversized: "OFFERS",
fbGoogle: {
title: "Facebook & Google",
desc: "Follow us on Facebook or review us on Google for a discount.",
desc: "Follow us on Facebook or rate us on Google for a 5% extra discount.",
cta: "Details and claim"
},
tiktok: {
title: "TikTok Promotion",
desc: "Like our designated video on TikTok and travel with a discount.",
desc: "Like our designated video on TikTok and travel at 2025 fares!",
cta: "Details and claim"
},
pages: {
fbGoogle: {
back: "Back to home",
discountLabel: "Discount",
discountLabel: "5% Discount",
facebookOpen: "Open Facebook page",
googleReview: "Write a Google review",
facebookLabel: "Facebook:",
@ -1055,7 +1143,7 @@
},
tiktok: {
back: "Back to home",
discountLabel: "Discount",
discountLabel: "2025 Prices",
claimTitle: "Claim discount",
openPage: "Open TikTok page",
title: "TikTok Discount",
@ -1155,6 +1243,38 @@
phone: "Tel/Fax: +36 96 335 605"
}
},
otherTransportPage: {
meta: {
title: "Other Personal Transport - Tailored to individual needs | SkyFly Travel",
description: "Individual and group passenger transport: trips, weddings, corporate events, work shuttles. Flexible solutions, modern fleet."
},
back: "Back to home",
title: "Other",
titleAccent: "transport",
heroDescription: "Flexible transport solutions tailored to your unique needs. Whether it's a family event, corporate gathering, or regular staff commute, you can count on us.",
mainContent: "By other personal transport, we mean trips where we fulfill the transport according to the customer's unique needs. For example: excursions (even multi-day trips abroad), weddings (wedding car and guest transport by minibuses), corporate events, conferences, work shuttles. For larger groups, several minibuses can be ordered at once, or our large bus partner's service can also be chosen.",
services: [
{
title: "Excursions",
desc: "Domestic and international trips, even multi-day journeys, conducted with our modern, comfortable vehicles."
},
{
title: "Weddings",
desc: "Elegant wedding cars for the couple, and reliable minibus transport for the guests."
},
{
title: "Corporate events",
desc: "Logistical support for conferences, team building, and other corporate events."
},
{
title: "Work shuttles",
desc: "Regular, punctual, and safe work transport every day of the week for companies."
}
],
capacityTitle: "Flexible Capacity",
capacityDesc: "Our fleet and partner network allow us to provide solutions for everything from small groups to events with hundreds of people. With multiple minibuses or by involving our large bus partner, we guarantee smooth transport.",
cta: "Request a unique quote"
},
footer: {
ready: "Ready to go?",
description: "Join thousands of satisfied passengers and choose comfort.",

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -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/4a1f084bd07d6520.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"]
3:I[31713,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js","/_next/static/chunks/0cfc57030916c21b.js","/_next/static/chunks/901915e18eb8ff7c.js"],"default"]
6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"]
7:"$Sreact.suspense"
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}
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0cfc57030916c21b.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/901915e18eb8ff7c.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

View File

@ -1,18 +1,18 @@
1:"$Sreact.fragment"
2:I[50661,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"LanguageProvider"]
2:I[50661,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"LanguageProvider"]
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"]
5:I[34581,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.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/4a1f084bd07d6520.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"]
7:I[31713,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js","/_next/static/chunks/0cfc57030916c21b.js","/_next/static/chunks/901915e18eb8ff7c.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/0ac639d69cda9244.css","style"]
:HL["/_next/static/chunks/e0f5ea9faf1d2e7f.css","style"]
:HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
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}
0:{"P":null,"b":"B0FbGPvVAaT6_WveGV5rb","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/e0f5ea9faf1d2e7f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/b06e93ed1ebede1c.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6d6d03f28863e6b8.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/0cfc57030916c21b.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/901915e18eb8ff7c.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"}]]

View File

@ -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":"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}
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","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}

View File

@ -1,7 +1,7 @@
1:"$Sreact.fragment"
2:I[50661,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"LanguageProvider"]
2:I[50661,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"LanguageProvider"]
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/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}
5:I[34581,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"default"]
:HL["/_next/static/chunks/e0f5ea9faf1d2e7f.css","style"]
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/e0f5ea9faf1d2e7f.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/b06e93ed1ebede1c.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6d6d03f28863e6b8.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}

View File

@ -1,3 +1,3 @@
:HL["/_next/static/chunks/0ac639d69cda9244.css","style"]
:HL["/_next/static/chunks/e0f5ea9faf1d2e7f.css","style"]
:HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
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}
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","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}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,9 +0,0 @@
(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,88653,e=>{"use strict";e.i(47167);var t=e.i(43476),r=e.i(71645),n=e.i(31178),o=e.i(47414),i=e.i(74008),s=e.i(21476),l=e.i(72846),u=r,a=e.i(37806);function c(e,t){if("function"==typeof e)return e(t);null!=e&&(e.current=t)}class f extends u.Component{getSnapshotBeforeUpdate(e){let t=this.props.childRef.current;if(t&&e.isPresent&&!this.props.isPresent){let e=t.offsetParent,r=(0,l.isHTMLElement)(e)&&e.offsetWidth||0,n=(0,l.isHTMLElement)(e)&&e.offsetHeight||0,o=this.props.sizeRef.current;o.height=t.offsetHeight||0,o.width=t.offsetWidth||0,o.top=t.offsetTop,o.left=t.offsetLeft,o.right=r-o.width-o.left,o.bottom=n-o.height-o.top}return null}componentDidUpdate(){}render(){return this.props.children}}function p({children:e,isPresent:n,anchorX:o,anchorY:i,root:s}){let l=(0,u.useId)(),p=(0,u.useRef)(null),h=(0,u.useRef)({width:0,height:0,top:0,left:0,right:0,bottom:0}),{nonce:d}=(0,u.useContext)(a.MotionConfigContext),m=function(...e){return r.useCallback(function(...e){return t=>{let r=!1,n=e.map(e=>{let n=c(e,t);return r||"function"!=typeof n||(r=!0),n});if(r)return()=>{for(let t=0;t<n.length;t++){let r=n[t];"function"==typeof r?r():c(e[t],null)}}}}(...e),e)}(p,e.props?.ref??e?.ref);return(0,u.useInsertionEffect)(()=>{let{width:e,height:t,top:r,left:u,right:a,bottom:c}=h.current;if(n||!p.current||!e||!t)return;let f="left"===o?`left: ${u}`:`right: ${a}`,m="bottom"===i?`bottom: ${c}`:`top: ${r}`;p.current.dataset.motionPopId=l;let x=document.createElement("style");d&&(x.nonce=d);let g=s??document.head;return g.appendChild(x),x.sheet&&x.sheet.insertRule(`
[data-motion-pop-id="${l}"] {
position: absolute !important;
width: ${e}px !important;
height: ${t}px !important;
${f}px !important;
${m}px !important;
}
`),()=>{g.contains(x)&&g.removeChild(x)}},[n]),(0,t.jsx)(f,{isPresent:n,childRef:p,sizeRef:h,children:u.cloneElement(e,{ref:m})})}let h=({children:e,initial:n,isPresent:i,onExitComplete:l,custom:u,presenceAffectsLayout:a,mode:c,anchorX:f,anchorY:h,root:m})=>{let x=(0,o.useConstant)(d),g=(0,r.useId)(),w=!0,y=(0,r.useMemo)(()=>(w=!1,{id:g,initial:n,isPresent:i,custom:u,onExitComplete:e=>{for(let t of(x.set(e,!0),x.values()))if(!t)return;l&&l()},register:e=>(x.set(e,!1),()=>x.delete(e))}),[i,x,l]);return a&&w&&(y={...y}),(0,r.useMemo)(()=>{x.forEach((e,t)=>x.set(t,!1))},[i]),r.useEffect(()=>{i||x.size||!l||l()},[i]),"popLayout"===c&&(e=(0,t.jsx)(p,{isPresent:i,anchorX:f,anchorY:h,root:m,children:e})),(0,t.jsx)(s.PresenceContext.Provider,{value:y,children:e})};function d(){return new Map}var m=e.i(64978);let x=e=>e.key||"";function g(e){let t=[];return r.Children.forEach(e,e=>{(0,r.isValidElement)(e)&&t.push(e)}),t}let w=({children:e,custom:s,initial:l=!0,onExitComplete:u,presenceAffectsLayout:a=!0,mode:c="sync",propagate:f=!1,anchorX:p="left",anchorY:d="top",root:w})=>{let[y,b]=(0,m.usePresence)(f),v=(0,r.useMemo)(()=>g(e),[e]),C=f&&!y?[]:v.map(x),E=(0,r.useRef)(!0),P=(0,r.useRef)(v),R=(0,o.useConstant)(()=>new Map),j=(0,r.useRef)(new Set),[L,M]=(0,r.useState)(v),[T,$]=(0,r.useState)(v);(0,i.useIsomorphicLayoutEffect)(()=>{E.current=!1,P.current=v;for(let e=0;e<T.length;e++){let t=x(T[e]);C.includes(t)?(R.delete(t),j.current.delete(t)):!0!==R.get(t)&&R.set(t,!1)}},[T,C.length,C.join("-")]);let _=[];if(v!==L){let e=[...v];for(let t=0;t<T.length;t++){let r=T[t],n=x(r);C.includes(n)||(e.splice(t,0,r),_.push(r))}return"wait"===c&&_.length&&(e=_),$(g(e)),M(v),null}let{forceRender:S}=(0,r.useContext)(n.LayoutGroupContext);return(0,t.jsx)(t.Fragment,{children:T.map(e=>{let r=x(e),n=(!f||!!y)&&(v===T||C.includes(r));return(0,t.jsx)(h,{isPresent:n,initial:(!E.current||!!l)&&void 0,custom:s,presenceAffectsLayout:a,mode:c,root:w,onExitComplete:n?void 0:()=>{if(j.current.has(r)||(j.current.add(r),!R.has(r)))return;R.set(r,!0);let e=!0;R.forEach(t=>{t||(e=!1)}),e&&(S?.(),$(P.current),f&&b?.(),u&&u())},anchorX:p,anchorY:d,children:e},r)})})};e.s(["AnimatePresence",()=>w],88653)},34581,e=>{"use strict";var t=e.i(43476),r=e.i(71645);let n=(0,e.i(75254).default)("arrow-up",[["path",{d:"m5 12 7-7 7 7",key:"hav0vg"}],["path",{d:"M12 19V5",key:"x0mq9r"}]]);var o=e.i(46932),i=e.i(88653),s=e.i(47163);e.s(["default",0,()=>{let[e,l]=r.useState(!1);return r.useEffect(()=>{let e=()=>{window.scrollY>300?l(!0):l(!1)};return window.addEventListener("scroll",e),()=>window.removeEventListener("scroll",e)},[]),(0,t.jsx)(i.AnimatePresence,{children:e&&(0,t.jsx)(o.motion.button,{initial:{opacity:0,scale:.5,y:20},animate:{opacity:1,scale:1,y:0},exit:{opacity:0,scale:.5,y:20},whileHover:{scale:1.1,y:-5},whileTap:{scale:.9},onClick:()=>{window.scrollTo({top:0,behavior:"smooth"})},className:(0,s.cn)("fixed bottom-8 right-8 z-[60] p-4 rounded-2xl","bg-primary text-white shadow-[0_20px_40px_-10px_rgba(217,163,33,0.3)]","backdrop-blur-md border border-white/20","transition-shadow duration-300 hover:shadow-[0_25px_50px_-12px_rgba(217,163,33,0.5)]","flex items-center justify-center group"),"aria-label":"Scroll to top",children:(0,t.jsx)(n,{className:"w-6 h-6 group-hover:animate-bounce"})})})}],34581)}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,34581,e=>{"use strict";var t=e.i(43476),o=e.i(71645);let r=(0,e.i(75254).default)("arrow-up",[["path",{d:"m5 12 7-7 7 7",key:"hav0vg"}],["path",{d:"M12 19V5",key:"x0mq9r"}]]);var i=e.i(46932),a=e.i(88653),l=e.i(47163);e.s(["default",0,()=>{let[e,s]=o.useState(!1);return o.useEffect(()=>{let e=()=>{window.scrollY>300?s(!0):s(!1)};return window.addEventListener("scroll",e),()=>window.removeEventListener("scroll",e)},[]),(0,t.jsx)(a.AnimatePresence,{children:e&&(0,t.jsx)(i.motion.button,{initial:{opacity:0,scale:.5,y:20},animate:{opacity:1,scale:1,y:0},exit:{opacity:0,scale:.5,y:20},whileHover:{scale:1.1,y:-5},whileTap:{scale:.9},onClick:()=>{window.scrollTo({top:0,behavior:"smooth"})},className:(0,l.cn)("fixed bottom-8 right-8 z-[60] p-4 rounded-2xl","bg-primary text-white shadow-[0_20px_40px_-10px_rgba(217,163,33,0.3)]","backdrop-blur-md border border-white/20","transition-shadow duration-300 hover:shadow-[0_25px_50px_-12px_rgba(217,163,33,0.5)]","flex items-center justify-center group"),"aria-label":"Scroll to top",children:(0,t.jsx)(r,{className:"w-6 h-6 group-hover:animate-bounce"})})})}],34581)}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,15 +1,15 @@
1:"$Sreact.fragment"
2:I[50661,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"LanguageProvider"]
2:I[50661,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"LanguageProvider"]
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"]
5:I[34581,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"default"]
6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"]
7:"$Sreact.suspense"
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/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}
:HL["/_next/static/chunks/e0f5ea9faf1d2e7f.css","style"]
0:{"P":null,"b":"B0FbGPvVAaT6_WveGV5rb","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/e0f5ea9faf1d2e7f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/b06e93ed1ebede1c.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6d6d03f28863e6b8.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

View File

@ -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":"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}
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","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}

View File

@ -1,7 +1,7 @@
1:"$Sreact.fragment"
2:I[50661,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"LanguageProvider"]
2:I[50661,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"LanguageProvider"]
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/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}
5:I[34581,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"default"]
:HL["/_next/static/chunks/e0f5ea9faf1d2e7f.css","style"]
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/e0f5ea9faf1d2e7f.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/b06e93ed1ebede1c.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6d6d03f28863e6b8.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}

View File

@ -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":"Pj4xFqf2HT4fIIHVuAQ_W","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}

View File

@ -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":"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}
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","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

View File

@ -1,2 +1,2 @@
: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}
:HL["/_next/static/chunks/e0f5ea9faf1d2e7f.css","style"]
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","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}

File diff suppressed because one or more lines are too long

View File

@ -1,15 +1,15 @@
1:"$Sreact.fragment"
2:I[50661,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"LanguageProvider"]
2:I[50661,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"LanguageProvider"]
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"]
5:I[34581,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"default"]
6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"]
7:"$Sreact.suspense"
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/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}
:HL["/_next/static/chunks/e0f5ea9faf1d2e7f.css","style"]
0:{"P":null,"b":"B0FbGPvVAaT6_WveGV5rb","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/e0f5ea9faf1d2e7f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/b06e93ed1ebede1c.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6d6d03f28863e6b8.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

View File

@ -1,18 +1,18 @@
1:"$Sreact.fragment"
2:I[50661,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"LanguageProvider"]
2:I[50661,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"LanguageProvider"]
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"]
5:I[34581,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.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/b90daf66f1af1d6b.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"]
7:I[51539,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js","/_next/static/chunks/b90daf66f1af1d6b.js","/_next/static/chunks/901915e18eb8ff7c.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/0ac639d69cda9244.css","style"]
:HL["/_next/static/chunks/e0f5ea9faf1d2e7f.css","style"]
:HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
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}
0:{"P":null,"b":"B0FbGPvVAaT6_WveGV5rb","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/e0f5ea9faf1d2e7f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/b06e93ed1ebede1c.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6d6d03f28863e6b8.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/901915e18eb8ff7c.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"}]]

View File

@ -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":"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}
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","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}

View File

@ -1,7 +1,7 @@
1:"$Sreact.fragment"
2:I[50661,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"LanguageProvider"]
2:I[50661,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"LanguageProvider"]
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/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}
5:I[34581,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"default"]
:HL["/_next/static/chunks/e0f5ea9faf1d2e7f.css","style"]
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/e0f5ea9faf1d2e7f.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/b06e93ed1ebede1c.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6d6d03f28863e6b8.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}

View File

@ -1,3 +1,3 @@
:HL["/_next/static/chunks/0ac639d69cda9244.css","style"]
:HL["/_next/static/chunks/e0f5ea9faf1d2e7f.css","style"]
:HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
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}
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","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}

View File

@ -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":"Pj4xFqf2HT4fIIHVuAQ_W","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}

View File

@ -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":"Pj4xFqf2HT4fIIHVuAQ_W","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}

View File

@ -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/b90daf66f1af1d6b.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"]
3:I[51539,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js","/_next/static/chunks/b90daf66f1af1d6b.js","/_next/static/chunks/901915e18eb8ff7c.js"],"default"]
6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"]
7:"$Sreact.suspense"
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}
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","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/901915e18eb8ff7c.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

File diff suppressed because one or more lines are too long

View File

@ -1,18 +1,18 @@
1:"$Sreact.fragment"
2:I[50661,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"LanguageProvider"]
2:I[50661,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"LanguageProvider"]
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"]
5:I[34581,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.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/b90daf66f1af1d6b.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"]
7:I[51539,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js","/_next/static/chunks/b90daf66f1af1d6b.js","/_next/static/chunks/901915e18eb8ff7c.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/0ac639d69cda9244.css","style"]
:HL["/_next/static/chunks/e0f5ea9faf1d2e7f.css","style"]
:HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
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}
0:{"P":null,"b":"B0FbGPvVAaT6_WveGV5rb","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/e0f5ea9faf1d2e7f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/b06e93ed1ebede1c.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6d6d03f28863e6b8.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/901915e18eb8ff7c.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"}]]

View File

@ -1,18 +1,18 @@
1:"$Sreact.fragment"
2:I[50661,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"LanguageProvider"]
2:I[50661,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"LanguageProvider"]
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"]
5:I[34581,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.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/fa5e60f25affe4ad.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"]
7:I[6494,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js","/_next/static/chunks/fa5e60f25affe4ad.js","/_next/static/chunks/901915e18eb8ff7c.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/0ac639d69cda9244.css","style"]
:HL["/_next/static/chunks/e0f5ea9faf1d2e7f.css","style"]
:HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
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}
0:{"P":null,"b":"B0FbGPvVAaT6_WveGV5rb","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/e0f5ea9faf1d2e7f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/b06e93ed1ebede1c.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6d6d03f28863e6b8.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/901915e18eb8ff7c.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"}]]

View File

@ -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":"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}
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","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}

View File

@ -1,7 +1,7 @@
1:"$Sreact.fragment"
2:I[50661,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"LanguageProvider"]
2:I[50661,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"LanguageProvider"]
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/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}
5:I[34581,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"default"]
:HL["/_next/static/chunks/e0f5ea9faf1d2e7f.css","style"]
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/e0f5ea9faf1d2e7f.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/b06e93ed1ebede1c.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6d6d03f28863e6b8.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}

View File

@ -1,3 +1,3 @@
:HL["/_next/static/chunks/0ac639d69cda9244.css","style"]
:HL["/_next/static/chunks/e0f5ea9faf1d2e7f.css","style"]
:HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
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}
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","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}

View File

@ -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":"Pj4xFqf2HT4fIIHVuAQ_W","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}

View File

@ -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":"Pj4xFqf2HT4fIIHVuAQ_W","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}

View File

@ -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/fa5e60f25affe4ad.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"]
3:I[6494,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js","/_next/static/chunks/fa5e60f25affe4ad.js","/_next/static/chunks/901915e18eb8ff7c.js"],"default"]
6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"]
7:"$Sreact.suspense"
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}
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","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/901915e18eb8ff7c.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

File diff suppressed because one or more lines are too long

View File

@ -1,18 +1,18 @@
1:"$Sreact.fragment"
2:I[50661,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"LanguageProvider"]
2:I[50661,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"LanguageProvider"]
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"]
5:I[34581,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.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/fa5e60f25affe4ad.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"]
7:I[6494,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js","/_next/static/chunks/fa5e60f25affe4ad.js","/_next/static/chunks/901915e18eb8ff7c.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/0ac639d69cda9244.css","style"]
:HL["/_next/static/chunks/e0f5ea9faf1d2e7f.css","style"]
:HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
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}
0:{"P":null,"b":"B0FbGPvVAaT6_WveGV5rb","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/e0f5ea9faf1d2e7f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/b06e93ed1ebede1c.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6d6d03f28863e6b8.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/901915e18eb8ff7c.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"}]]

View File

@ -1,18 +1,18 @@
1:"$Sreact.fragment"
2:I[50661,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"LanguageProvider"]
2:I[50661,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"LanguageProvider"]
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"]
5:I[34581,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.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/7e5a7cffa7289968.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"]
7:I[61030,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js","/_next/static/chunks/04e2afb8540f56fa.js","/_next/static/chunks/901915e18eb8ff7c.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/0ac639d69cda9244.css","style"]
:HL["/_next/static/chunks/e0f5ea9faf1d2e7f.css","style"]
:HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
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}
0:{"P":null,"b":"B0FbGPvVAaT6_WveGV5rb","c":["","arak",""],"q":"","i":false,"f":[[["",{"children":["arak",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/e0f5ea9faf1d2e7f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/b06e93ed1ebede1c.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6d6d03f28863e6b8.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/04e2afb8540f56fa.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/901915e18eb8ff7c.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"}]]

View File

@ -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":"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}
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","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}

View File

@ -1,7 +1,7 @@
1:"$Sreact.fragment"
2:I[50661,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"LanguageProvider"]
2:I[50661,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"LanguageProvider"]
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/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}
5:I[34581,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"default"]
:HL["/_next/static/chunks/e0f5ea9faf1d2e7f.css","style"]
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/e0f5ea9faf1d2e7f.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/b06e93ed1ebede1c.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6d6d03f28863e6b8.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}

View File

@ -1,3 +1,3 @@
:HL["/_next/static/chunks/0ac639d69cda9244.css","style"]
:HL["/_next/static/chunks/e0f5ea9faf1d2e7f.css","style"]
:HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
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}
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","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}

View File

@ -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":"Pj4xFqf2HT4fIIHVuAQ_W","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}

View File

@ -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/7e5a7cffa7289968.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"]
3:I[61030,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js","/_next/static/chunks/04e2afb8540f56fa.js","/_next/static/chunks/901915e18eb8ff7c.js"],"default"]
6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"]
7:"$Sreact.suspense"
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}
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/04e2afb8540f56fa.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/901915e18eb8ff7c.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

File diff suppressed because one or more lines are too long

View File

@ -1,18 +1,18 @@
1:"$Sreact.fragment"
2:I[50661,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"LanguageProvider"]
2:I[50661,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"LanguageProvider"]
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"]
5:I[34581,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.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/7e5a7cffa7289968.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"]
7:I[61030,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js","/_next/static/chunks/04e2afb8540f56fa.js","/_next/static/chunks/901915e18eb8ff7c.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/0ac639d69cda9244.css","style"]
:HL["/_next/static/chunks/e0f5ea9faf1d2e7f.css","style"]
:HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
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}
0:{"P":null,"b":"B0FbGPvVAaT6_WveGV5rb","c":["","arak",""],"q":"","i":false,"f":[[["",{"children":["arak",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/e0f5ea9faf1d2e7f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/b06e93ed1ebede1c.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6d6d03f28863e6b8.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/04e2afb8540f56fa.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/901915e18eb8ff7c.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"}]]

View File

@ -0,0 +1,21 @@
1:"$Sreact.fragment"
2:I[50661,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"LanguageProvider"]
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/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"default"]
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"]
7:I[24564,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js","/_next/static/chunks/a91186e1c55b9492.js","/_next/static/chunks/901915e18eb8ff7c.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/e0f5ea9faf1d2e7f.css","style"]
:HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
0:{"P":null,"b":"B0FbGPvVAaT6_WveGV5rb","c":["","egyeb-szemelyszallitas",""],"q":"","i":false,"f":[[["",{"children":["egyeb-szemelyszallitas",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/e0f5ea9faf1d2e7f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/b06e93ed1ebede1c.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6d6d03f28863e6b8.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/a91186e1c55b9492.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/901915e18eb8ff7c.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"}]]
12:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"IconMark"]
c:null
10:[["$","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"}],["$","$L12","4",{}]]

View File

@ -0,0 +1,6 @@
1:"$Sreact.fragment"
2:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ViewportBoundary"]
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":"B0FbGPvVAaT6_WveGV5rb","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}

View File

@ -0,0 +1,7 @@
1:"$Sreact.fragment"
2:I[50661,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"LanguageProvider"]
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/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"default"]
:HL["/_next/static/chunks/e0f5ea9faf1d2e7f.css","style"]
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/e0f5ea9faf1d2e7f.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/b06e93ed1ebede1c.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/6d6d03f28863e6b8.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}

View File

@ -0,0 +1,3 @@
:HL["/_next/static/chunks/e0f5ea9faf1d2e7f.css","style"]
:HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"egyeb-szemelyszallitas","paramType":null,"paramKey":"egyeb-szemelyszallitas","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}

View File

@ -0,0 +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":"B0FbGPvVAaT6_WveGV5rb","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}

View File

@ -0,0 +1,9 @@
1:"$Sreact.fragment"
2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"]
3:I[24564,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js","/_next/static/chunks/a91186e1c55b9492.js","/_next/static/chunks/901915e18eb8ff7c.js"],"default"]
6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"OutletBoundary"]
7:"$Sreact.suspense"
0:{"buildId":"B0FbGPvVAaT6_WveGV5rb","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/a91186e1c55b9492.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/901915e18eb8ff7c.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

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,21 @@
1:"$Sreact.fragment"
2:I[50661,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"LanguageProvider"]
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/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"default"]
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"ClientPageRoot"]
7:I[24564,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js","/_next/static/chunks/a91186e1c55b9492.js","/_next/static/chunks/901915e18eb8ff7c.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/e0f5ea9faf1d2e7f.css","style"]
:HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
0:{"P":null,"b":"B0FbGPvVAaT6_WveGV5rb","c":["","egyeb-szemelyszallitas",""],"q":"","i":false,"f":[[["",{"children":["egyeb-szemelyszallitas",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/e0f5ea9faf1d2e7f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/b06e93ed1ebede1c.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6d6d03f28863e6b8.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/a91186e1c55b9492.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/901915e18eb8ff7c.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"}]]
12:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/d2be314c3ece3fbe.js"],"IconMark"]
c:null
10:[["$","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"}],["$","$L12","4",{}]]

View File

@ -1,18 +1,18 @@
1:"$Sreact.fragment"
2:I[50661,["/_next/static/chunks/9c87745f176c3743.js","/_next/static/chunks/6b34b633b74e9a44.js"],"LanguageProvider"]
2:I[50661,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js"],"LanguageProvider"]
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"]
5:I[34581,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.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/922e34ac0731fb14.js","/_next/static/chunks/9d04f56e53f43e3d.js"],"default"]
7:I[22604,["/_next/static/chunks/b06e93ed1ebede1c.js","/_next/static/chunks/6d6d03f28863e6b8.js","/_next/static/chunks/922e34ac0731fb14.js","/_next/static/chunks/901915e18eb8ff7c.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/0ac639d69cda9244.css","style"]
:HL["/_next/static/chunks/e0f5ea9faf1d2e7f.css","style"]
:HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
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}
0:{"P":null,"b":"B0FbGPvVAaT6_WveGV5rb","c":["","feltetelek",""],"q":"","i":false,"f":[[["",{"children":["feltetelek",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/e0f5ea9faf1d2e7f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/b06e93ed1ebede1c.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/6d6d03f28863e6b8.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/901915e18eb8ff7c.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"}]]

Some files were not shown because too many files have changed in this diff Show More