att-hackathon-2023/Frontend/src/routes/about/+page.svelte
2023-05-17 10:44:09 +02:00

18 lines
512 B
Svelte
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div class="height">
<div class="bg-[#05171E] rounded-lg w-3/4 h-full mx-auto mt-20 py-4 px-20">
<div class="text-white text-center text-5xl">About</div>
<div class="flex flex-row text-white mt-20 text-3xl">
This project was made by the Pátek team during the 2023 Junior AT&T Hackathon.
</div>
<div class="flex flex-row text-white mt-20 text-3xl">
Its an open-source management tool for access points with
</div>
</div>
</div>
<style>
.height {
height: calc(100vh - 14rem);
}
</style>