-
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.
Showing
5 changed files
with
110 additions
and
20 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
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,10 +1,80 @@ | ||
--- | ||
import BaseLayout from "@/layouts/BaseLayout.astro"; | ||
import { base, meetupURL, memberFormURL, projectsURL, slackURL } from "@/utils/urls"; | ||
--- | ||
|
||
<BaseLayout title="Get Started"> | ||
<p> | ||
Regardless of skillset or background, anyone can contribute to their | ||
community through SF Civic Tech | ||
</p> | ||
<ol class="steps"> | ||
<li> | ||
<h3>Tell us about yourself</h3> | ||
<p> | ||
Fill out our <a href={memberFormURL}>2 minute form</a> so we can help match you with opportunities | ||
</p> | ||
</li> | ||
<li> | ||
<h3>Onboard</h3> | ||
<p> | ||
Get familiar with SF Civic Tech | ||
</p> | ||
<ol> | ||
<li> | ||
Read our <a href={base("/about/code-of-conduct")}>Code of Conduct</a> | ||
</li> | ||
<li> | ||
Read over the <a href={projectsURL}>Current Projects</a> | ||
</li> | ||
<li> | ||
Join our <a href={slackURL}>Slack</a> | ||
</li> | ||
</ol> | ||
</li> | ||
<li> | ||
<h3>Attend Hack Night</h3> | ||
<p> | ||
We meet remotely every Wednesday to work on projects! Head over to our | ||
<a href={meetupURL}>Meetup page</a> for more info. | ||
</p> | ||
</li> | ||
<li> | ||
<h3>Join a Project</h3> | ||
<p> | ||
Review our current portfolio listed on our <a href={projectsURL}>Projects</a> page. Join us at Hack Night or on Slack to get involved! | ||
</p> | ||
</li> | ||
</ol> | ||
</BaseLayout> | ||
|
||
<style> | ||
h3 { | ||
margin: 0.5rem 0; | ||
font-size: 1.25rem; | ||
color: var(--color-accent); | ||
} | ||
|
||
ol.steps { | ||
list-style: none; | ||
counter-reset: item; | ||
margin-top: var(--pico-block-spacing-vertical); | ||
} | ||
|
||
ol.steps > li { | ||
counter-increment: item; | ||
padding-left: 1rem; | ||
margin-bottom: 0.5rem; | ||
} | ||
|
||
ol.steps > li::marker { | ||
content: counter(item); | ||
font-weight: bold; | ||
font-size: 1.75rem; | ||
color: var(--color-accent); | ||
} | ||
|
||
a { | ||
font-weight: bold; | ||
} | ||
</style> |
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,14 @@ | ||
export const projectsURL = "https://sfbrigade.notion.site/Current-Projects-4fefa377e1424ff0b59230b9c160e6a4"; | ||
export const wikiURL = "https://sfbrigade.notion.site/Code-for-San-Francisco-Wiki-3ae6aaf3ad3f4b7a9caab1c291c60081"; | ||
export const proposalsURL = "https://docs.google.com/forms/d/e/1FAIpQLScHe7aWQ-2n3lSTU1WfcK8rhBZp8pkDGH9EcJdbQb5lqMbbzA/viewform"; | ||
export const pitchProjectURL = "https://docs.google.com/forms/d/e/1FAIpQLSexe5qvmJ6LTiU1HcR-XAzlrgPLBudVBPK_ouHeBkFz2JVUHw/viewform"; | ||
export const memberFormURL = "https://c4sf.me/member"; | ||
export const slackURL = "https://c4sf.me/slack"; | ||
export const blogURL = "https://c4sf.me/blog"; | ||
export const meetupURL = "https://www.meetup.com/sfcivictech/"; | ||
export const twitterURL = "https://twitter.com/sfcivictech"; | ||
export const githubURL = "https://github.com/sfbrigade"; | ||
export const facebookURL = "https://www.facebook.com/sfcivictech"; | ||
export const linkedinURL = "https://www.linkedin.com/company/sfbrigade/"; | ||
|
||
export const base = (url: string) => `${url.startsWith("/") ? import.meta.env.BASE_URL : ""}${url}`; |