Incognito3 / src /pages /index.astro
Alex Scott
rebrand space to incognito
46c7a16
---
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>