Files
vitrify-me/apps/web/app/page.tsx
2025-08-26 18:06:44 +04:00

23 lines
602 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">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>
);
}