Skip to content

Commit

Permalink
Add K512 application page
Browse files Browse the repository at this point in the history
  • Loading branch information
Park-Joonyoung authored and loftol committed Apr 5, 2024
1 parent c26b3eb commit 920acdf
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
showTopBar as showTopBarStore,
showFooter as showFooterStore,
} from "./template/NavBar/store";
import ApplyK512 from "./routes/apply-k512/apply-k512.svelte";
// 필요한 데이터 fetch
let latestOrganizerData;
Expand All @@ -29,6 +30,7 @@
router("/introduction", () => (page = Introduction));
router("/history", () => (page = History));
router("/spc", () => (page = Spc));
router("/apply-k512", () => (page = ApplyK512));
router("/spc-22", () => (page = Spc22));
router(
"/contact",
Expand Down
9 changes: 9 additions & 0 deletions src/routes/apply-k512/apply-k512.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<script>
import { onMount } from 'svelte';
onMount(() => {
window.location.replace('https://forms.gle/bm34seYG5yHtwRdL7');
});
</script>

<style>
</style>
1 change: 1 addition & 0 deletions src/template/NavBar/NavBar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<li class="nav_item"><a href="/introduction">소개</a></li>
<li class="nav_item"><a href="/history">기록</a></li>
<li class="nav_item"><a href="/spc">SPC</a></li>
<li class="nav_item"><a href="/apply-k512">K512컵</a></li>
<li class="nav_item"><a href="/contact">가입 및 문의</a></li>
</ul>
</div>
Expand Down

0 comments on commit 920acdf

Please sign in to comment.