23 lines
613 B
TypeScript
23 lines
613 B
TypeScript
import BookingInterface from "../components/BookingForm";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div>
|
|
<main>
|
|
<BookingInterface />
|
|
</main>
|
|
<footer className="bg-white text-black py-8 mt-12">
|
|
<div className="max-w-2xl mx-auto px-4 text-center">
|
|
<p className="text-gray-600 mb-2">Questions? Get in touch</p>
|
|
<a
|
|
href="mailto:vitrify@asyavee.me"
|
|
className="text-blue-600 hover:text-blue-800 transition-colors font-medium"
|
|
>
|
|
vitrify@asyavee.me
|
|
</a>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
);
|
|
}
|