Skip to content

Commit

Permalink
Stub out a resources page w/ stickers
Browse files Browse the repository at this point in the history
  • Loading branch information
chadwhitacre committed Oct 17, 2024
1 parent ae08640 commit 9c4aa97
Show file tree
Hide file tree
Showing 4 changed files with 170 additions and 0 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
130 changes: 130 additions & 0 deletions public/resources/stickers/open-source-pledge-logo-sticker.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
40 changes: 40 additions & 0 deletions src/pages/resources.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
// © 2024 Vlad-Stefan Harbuz <[email protected]>
// SPDX-License-Identifier: Apache-2.0
import Blob from "../components/Blob.astro";
import Button from "../components/Button.astro";
import Layout from "../layouts/Layout.astro";
---

<Layout>
<div class="edge-blobs">
<Blob kind="solid-fill-03" top="42%" left="-13rem"></Blob>
<Blob kind="grad-dots-06" top="37%" right="-5rem"></Blob>
</div>
<div class="container">
<Blob kind="solid-fill-05" top="20%" right="-16rem"></Blob>
<Blob kind="solid-fill-04" top="90%" left="-20rem"></Blob>
<Blob kind="grad-dots-03" top="10%" left="-15rem"></Blob>

<main id="main-content">
<h1>Resources</h1>

<p>Go make stickers:</p>

<ul>
<li>logo -
<a href="/public/resources/stickers/open-source-pledge-logo-sticker.png">PNG</a>,
<a href="/public/resources/stickers/open-source-pledge-logo-sticker.svg">SVG</a>
</li>
<li>money machine -
<a href="/public/resources/stickers/open-source-pledge-money-machine.png">PNG</a>
</li>
</ul>
</main>
</div>
</Layout>

<style>
</style>

0 comments on commit 9c4aa97

Please sign in to comment.