22 lines
365 B
TypeScript
22 lines
365 B
TypeScript
export default function HomePage(){
|
|
return (
|
|
<main
|
|
className="flex flex-col items-center justify-center gap-4"
|
|
>
|
|
<h1
|
|
className="text-4xl mb-12"
|
|
>
|
|
Raid Builder Demo
|
|
</h1>
|
|
<div>
|
|
<iframe
|
|
width="640"
|
|
height="360"
|
|
src="https://www.youtube.com/embed/0WX-zoMKzSo"
|
|
allowFullScreen={true}
|
|
/>
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|