Skip to content

Commit

Permalink
Merge pull request #310 from n9d0g/nate
Browse files Browse the repository at this point in the history
feat(web): ✨ av setup document
  • Loading branch information
n9d0g authored Sep 22, 2024
2 parents 7822cec + de947c5 commit cd6295c
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "web",
"private": true,
"version": "3.16.7",
"version": "3.16.8",
"type": "module",
"scripts": {
"dev": "vite dev --host --open",
Expand Down
1 change: 1 addition & 0 deletions apps/web/src/lib/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ export const navOptions = [

export const links = {
njil: 'https://njil.dev',
avSetup: 'https://n9d0g.notion.site/AV-setup-10949c91f89280c8b319c20ecec69bef',
ghReleases: 'https://github.com/n9d0g/fcc/releases',
googleMaps:
'https://www.google.ca/maps/place/5225+Orbitor+Dr,+Mississauga,+ON+L4W+4Y8/@43.6598788,-79.6065117,17z/data=!3m1!4b1!4m6!3m5!1s0x882b38554ef96393:0x5a2b697b840d7a7d!8m2!3d43.6598749!4d-79.604323!16s%2Fg%2F11b8v4jvnm',
Expand Down
5 changes: 5 additions & 0 deletions apps/web/src/routes/av/+page.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { redirect } from '@sveltejs/kit'

export const load = () => {
redirect(302, 'https://n9d0g.notion.site/AV-setup-10949c91f89280c8b319c20ecec69bef')
}
11 changes: 6 additions & 5 deletions apps/web/src/routes/ministries/praise/schedule/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -158,15 +158,16 @@
</div>
</div>

<WorshipAssignments worshipAssignmentsData={worshipAssignments} />

<!-- link to excel sheet -->
<div class="my-8 flex w-full justify-center">
<div class="my-4 flex flex-col sm:flex-row w-full justify-center gap-4">
<a href={links.excel} target="_blank" class="variant-filled btn">
Excel Data Sheet
</a>
<a href={links.avSetup} target="_blank" class="variant-filled btn">
AV Setup Document
</a>
</div>

<hr />

<WorshipAssignments worshipAssignmentsData={worshipAssignments} />
{/await}
</FccLayout>
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit cd6295c

Please sign in to comment.