2024-10-23 13:59:28 -04:00
|
|
|
---
|
|
|
|
// Layout
|
|
|
|
import Base from "@layouts/Base.astro";
|
2024-10-25 14:52:40 -04:00
|
|
|
|
|
|
|
// Components
|
|
|
|
import SearchBox from "@components/global/SearchBox.astro";
|
2024-10-23 13:59:28 -04:00
|
|
|
---
|
|
|
|
|
|
|
|
<Base>
|
2024-10-25 14:52:40 -04:00
|
|
|
<div class="home-center">
|
|
|
|
<SearchBox/>
|
|
|
|
</div>
|
2024-10-23 13:59:28 -04:00
|
|
|
</Base>
|
|
|
|
<style is:global>
|
2024-10-25 14:52:40 -04:00
|
|
|
/* Don't show header search */
|
|
|
|
header form {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
/* Home CSS */
|
|
|
|
.home-center {
|
|
|
|
position: absolute;
|
|
|
|
top: 42%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
}
|
2024-10-23 13:59:28 -04:00
|
|
|
footer {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0px;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 1200px;
|
|
|
|
}
|
2024-10-25 14:52:40 -04:00
|
|
|
</style>
|
|
|
|
<script is:inline>FocusSearch()</script>
|