Files
irth-new-client/src/components/modals/DisclaimerModal.tsx
T
2025-04-22 13:22:50 +05:00

38 lines
1.8 KiB
TypeScript

export default function DisclaimerModal() {
return (
<div className="bg-white z-40 2xl:rounded-[0.556vw] rounded-lg py-[37px] px-8 2xl:w-[29.236vw] md:max-2xl:w-[54.818vw] w-full">
<h2 className="text-subheadline-m font-semibold py-6 2xl:border-t-[0.139vw] border-t-2 border-[#00BED7] w-fit">
Disclaimer
</h2>
<div className="flex flex-col gap-4">
<p className="text-caption-m">
This masterplan has been designed solely to provide an impression of
the Rove Home projects as well as the approximate location of existing
and proposed facilities, services, and destinations and is not
intended for any other purpose.
</p>
<p className="text-caption-m">
All elements including the interior design used in the units and
images shown in the virtual tour are only for illustration. The
pictures of the proposed residential units, furniture, landscaping,
amenities, color schemes, fixtures, and accessories among all other
items are illustrative to showcase the units.
</p>
<p className="text-caption-m">
IRTH does not make any representation or give any warranty concerning
the future developments shown, or the current or future amenities,
location, or existence of any facilities, services, and destinations.
Any indications of distance, sizes, travel times, and any other
information are approximate and for indicative purposes only and are
not to scale.
</p>
<p className="text-caption-m">
IRTH gives notice that this virtual tour (including units, amenities,
plans of the property) does not constitute any part of a sale offer or
sale and purchase contract.
</p>
</div>
</div>
);
}