Spaces:
Paused
Paused
| --- | |
| import Links from '@components/NavLinks.astro'; | |
| import Search from '@components/Search.astro'; | |
| import Layout from '@layouts/Layout.astro'; | |
| --- | |
| <Layout title="Home"> | |
| <div class="w-full h-full px-[20%] flex flex-row justify-center items-center"> | |
| <Search /> | |
| <Links /> | |
| <iframe | |
| id="iframe" | |
| class="hidden bg-[--background] w-full h-full absolute" | |
| src="/load" | |
| ></iframe> | |
| </div> | |
| </Layout> | |