diff --git a/src/components/FooterNav.astro b/src/components/FooterNav.astro index 8e2e706..1b08dbd 100644 --- a/src/components/FooterNav.astro +++ b/src/components/FooterNav.astro @@ -7,7 +7,7 @@ import { linkedinURL, meetupURL, pitchProjectURL, - proposalsURL, + proposeTalkURL, slackURL, twitterURL } from "@/utils/urls"; @@ -16,7 +16,7 @@ const columns = [ [ "Resources", [ - [proposalsURL, "propose a talk"], + [proposeTalkURL, "propose a talk"], [pitchProjectURL, "pitch a project"], ], ], diff --git a/src/pages/index.astro b/src/pages/index.astro index ade24ff..f611fca 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -2,10 +2,10 @@ import BaseLayout from "@/layouts/BaseLayout.astro"; import Card from "@/components/Card.astro"; import NewsSummary from "@/components/NewsSummary.astro"; +import { newsletterURL, pitchProjectURL, slackURL } from "@/utils/urls"; --- - -

We are SF Civic Tech

+

We are a welcoming and inclusive volunteer group of developers, designers, data geeks, and citizen activists who use creative technology to solve civic @@ -19,19 +19,19 @@ import NewsSummary from "@/components/NewsSummary.astro"; title="Propose a Project" body="Have any idea to improve community or civic life in San Francisco? We want to hear it." label="Propose a Project" - href="https://docs.google.com/forms/d/e/1FAIpQLSexe5qvmJ6LTiU1HcR-XAzlrgPLBudVBPK_ouHeBkFz2JVUHw/viewform" + href={pitchProjectURL} /> diff --git a/src/utils/urls.ts b/src/utils/urls.ts index 8b6243b..780cc51 100644 --- a/src/utils/urls.ts +++ b/src/utils/urls.ts @@ -1,7 +1,8 @@ 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 proposeTalkURL = "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 newsletterURL = "https://eepurl.com/bfFkF9"; export const memberFormURL = "https://c4sf.me/member"; export const slackURL = "https://c4sf.me/slack"; export const blogURL = "https://c4sf.me/blog";