This repository has been archived by the owner on Nov 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
146 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<script> | ||
import placeholder from "$lib/img/placeholder-square.png"; | ||
export let image = placeholder; | ||
export let link = "/"; | ||
</script> | ||
|
||
<div class="flex flex-row items-center justify-around w-[100%]"> | ||
<a class="w-48" href={link}> | ||
<img | ||
class="rounded-full outline-dashed outline-2 outline-offset-2 outline-palette-900" | ||
src={image} | ||
alt="Logo" | ||
/> | ||
</a> | ||
<div class="flex flex-col items-center gap-y-12"> | ||
<a | ||
href={link} | ||
class="text-4xl text-center underline underline-offset-8 w-[600px]" | ||
> | ||
<slot name="name">Name</slot> | ||
</a> | ||
<p class="text-xl text-center w-[800px]"> | ||
<slot name="content" | ||
>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do | ||
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut | ||
enim ad minim veniam, quis nostrud exercitation ullamco laboris | ||
nisi ut aliquip ex ea commodo consequat.</slot | ||
> | ||
</p> | ||
</div> | ||
</div> |
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.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,30 @@ | ||
volunteer | ||
<script> | ||
import scribble from "$lib/graphics/scribble.svg"; | ||
import OrgCard from "../../components/OrgCard.svelte"; | ||
import { orgStore } from "../../stores/stores"; | ||
</script> | ||
|
||
<div class="flex flex-col items-center mt-8 -space-y-2"> | ||
<h1 class="text-4xl text-center">The Sustainable<br />Organizations</h1> | ||
<img class="w-56" src={scribble} alt="Scribble" /> | ||
</div> | ||
|
||
<div class="flex flex-col items-center mt-8"> | ||
<p class="text-xl text-center w-[800px]"> | ||
Consider choosing one organization that resonates with your passion and | ||
values. Whether it's reforestation, marine conservation, or sustainable | ||
development, your unique skills and dedication can contribute to | ||
positive change. By volunteering your time, you become an integral part | ||
of the solution, actively working towards a healthier and more | ||
sustainable future. | ||
</p> | ||
</div> | ||
|
||
<div class="flex flex-col items-center mt-24 mb-8 gap-y-16"> | ||
{#each $orgStore as org} | ||
<OrgCard image={org.image} link={org.link}> | ||
<h1 slot="name">{org.name}</h1> | ||
<p slot="content">{org.content}</p> | ||
</OrgCard> | ||
{/each} | ||
</div> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.