"use client" import Navbar from "@/components/navbar" import Footer from "@/components/footer" import { Card } from "@/components/ui/card" import { ArrowLeft, Info } from "lucide-react" import Link from "next/link" import { useLanguage } from "@/lib/language-context" import { cn } from "@/lib/utils" export default function ConditionsPage() { const { t } = useLanguage() return (
{/* Background Decorations */}
{/* Header Section */}
{t.conditionsPage.back}

{t.conditionsPage.title}
{t.conditionsPage.titleAccent}

{t.conditionsPage.sections.map((section: any, idx: number) => (
{/* Section Header */}

{section.title}

{/* Section Content */} {section.content.map((paragraph: string, pIdx: number) => (

{paragraph}

))}
))}
{/* Contact Info Footer */}

SkyFly Travel

{t.nav.contact}

) }