Files
www_maison_noire/src/components/Route.jsx
2025-08-22 19:33:22 +02:00

53 lines
2.2 KiB
JavaScript

"use client"
import { CloudArrowUpIcon, LockClosedIcon, ServerIcon } from '@heroicons/react/20/solid'
import { useId } from 'react'
import { Tab, TabGroup, TabList, TabPanel, TabPanels } from '@headlessui/react'
import clsx from 'clsx'
import { Button } from '@/components/Button'
import { Container } from '@/components/Container'
import { H2, P, PS, PXS, H3 , H4 } from '@/components/text'
export default function Route() {
return (
<div className="bg-bg-sand overflow-hidden pt-12 pb-24 px-6 lg:px-8">
<div className="mx-auto max-w-7xl ">
<div className="grid grid-cols-1 gap-x-8 gap-y-4 lg:gap-y-16 lg:grid-cols-2 lg:items-start">
<div className="lg:pr-4 lg:pt-4">
<div className="mx-auto max-w-2xl lg:mx-0 lg:max-w-lg">
<H2 className="">Itinerary</H2>
<P className="mt-4 ">
By following the natural flow of the Nile river you will discover some of the most sacred places of the world.</P>
<P className="my-4">All our trips are designed according to your wishes. Your group's tailored itinerary will lead you to the locations and temples which fit your energy.
</P>
<div className="relative z-10 mt-4 mb-10 lg:mb-40 lg:py-2 xs:mb-20 flex justify-startgap-x-6">
<Button href="/contact" variant="link" color="darkgr">
Learn More
</Button>
</div>
</div>
</div>
<div className="sm:px-6 lg:px-0">
<div className="relative overflow-hidden sm:mx-auto sm:max-w-2xl lg:mx-0 lg:max-w-none">
<div className="mx-auto max-w-2xl sm:mx-0 sm:max-w-none">
<img
alt="trip map"
src="/images/map.png"
width={500}
height={500}
className="w-full max-w-full bg-gray-800 ring-1 ring-white/10"
/>
</div>
<div
aria-hidden="true"
className="pointer-events-none absolute inset-0 ring-1 ring-inset ring-black/10 "
/>
</div>
</div>
</div>
</div>
</div>
)
}