Skip to content
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: 7 additions & 0 deletions src/components/blocks/sponsors/ScrollingBlock.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<div class="w-full overflow-hidden rounded-[3rem]">
<!-- Green part -->
<div class="h-56 bg-[#D0FFAF]"></div>

<!-- Grey part -->
<div class="h-20 bg-gray-300"></div>
</div>
12 changes: 12 additions & 0 deletions src/pages/sponsor.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
import Layout from "../layouts/Layout.astro";
import ScrollingBlock from "../components/blocks/sponsors/ScrollingBlock.astro";
---

<Layout>
<main class="flex min-h-screen w-full flex-col items-center gap-24 px-6 py-8">
<div class="mb-10 w-full max-w-7xl space-y-36">
<ScrollingBlock />
</div>
</main>
</Layout>
Loading