add new content

This commit is contained in:
2025-08-13 18:37:34 +02:00
commit 127bf9c83b
350 changed files with 63539 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import { CallToAction3 } from '@/components/CallToAction3'
import { Footer } from '@/components/Footer'
import { Header } from '@/components/Header'
import Iti1 from '@/components/Iti1'
import Timeline from '@/components/Timeline'
export default function Itinerary() {
return (
<>
<Header />
<main>
<Iti1 />
<Timeline />
<CallToAction3 />
</main>
<Footer />
</>
)
}