-
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
1 parent
aedff83
commit 1057eef
Showing
3 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ const pages = [ | |
"Home", | ||
"Volunteer", | ||
"Team", | ||
"PVSA", | ||
"Apply", | ||
"Calendar", | ||
"Shop", | ||
|
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,39 @@ | ||
--- | ||
import BackOnTrackLayout from "../layouts/BackOnTrackLayout.astro"; | ||
--- | ||
|
||
<BackOnTrackLayout title="PVSA"> | ||
<div | ||
class="flex flex-grow flex-col items-center justify-center bg-black/[.7] bg-[url('/ftb.jpg')] bg-cover bg-fixed bg-center bg-no-repeat text-center font-semibold text-white bg-blend-overlay" | ||
> | ||
<p class="p-5 text-5xl"> | ||
Back on Track America is a <a | ||
class="underline" | ||
href="https://presidentialserviceawards.gov/eligibility#organizations" | ||
>Certifying Organization</a | ||
> for the <a | ||
class="underline" | ||
href="https://presidentialserviceawards.gov/" | ||
>President's Volunteer Service Award Program</a | ||
>. | ||
</p> | ||
|
||
<p class="p-1 text-4xl"> | ||
<a | ||
class="underline" | ||
href="https://presidentialserviceawards.gov/eligibility#volunteers" | ||
>Eligible volunteers</a | ||
> can talk to their <a | ||
class="underline" | ||
href="https://backontrackus.org/team/">local chapter leader</a | ||
> on how to verify their hours and receive an award. | ||
</p> | ||
|
||
<p class="p-1 text-4xl"> | ||
More information about the program can be found <a | ||
class="underline" | ||
href="https://presidentialserviceawards.gov/">here</a | ||
>. | ||
</p> | ||
</div> | ||
</BackOnTrackLayout> |