Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add hero part #48

Merged
merged 5 commits into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
<h1 class="font-mono text-5xl">Bienvenido a KOKOA</h1>
<p class="font-mono">Promovemos la programación orientada al comunismo</p>
<script lang="ts">
import Hero from "./Hero.svelte";
</script>

<Hero />
33 changes: 33 additions & 0 deletions src/routes/Hero.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<section class="mt-24 flex flex-col items-center justify-around gap-y-12 lg:flex lg:flex-row">
<div class="relative">
<img
src="https://images.unsplash.com/photo-1601933470096-0e34634ffcde?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"
alt="Imagen de amigos programando"
class="relative z-10 h-[12.5rem] w-[16rem] lg:h-[18rem] lg:w-[26rem]"
/>
<div
class="absolute left-[-0.5rem] top-[-0.5rem] z-0 h-5 w-5 bg-lime-500 lg:left-[-1.3rem] lg:top-[-1.3rem] lg:h-[6rem] lg:w-[6rem]"
></div>
<div
class="absolute bottom-[-0.5rem] right-[-0.5rem] z-0 h-5 w-5 border border-lime-500 lg:bottom-[-1.2rem] lg:right-[-1.2rem] lg:h-[6rem] lg:w-[6rem]"
></div>
</div>
<div class="flex flex-col items-center gap-y-5">
<h1>
<span class="text-lime-500 lg:text-xl">Kokoa</span>
<span class="font-fira text-blue-100 lg:text-xl">- Vive el software libre</span>
</h1>
<div class="max-w-screen-md lg:max-w-screen-sm">
<p class="lg:text-md text-center font-fira text-sm text-blue-100">
Club estudiantil politécnico promotor del uso, modificación, distribución y aprendizaje de
software libre
</p>
</div>
<button
class="w-15 border-2xl rounded-2xl border-lime-500 bg-lime-500 px-14 py-1 font-medium text-black shadow-2xl"
>
Unirse
</button>
<div class="bg-green-400"></div>
</div>
</section>
Loading