We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c860e0a commit 9b73bbfCopy full SHA for 9b73bbf
app2/src/lib/components/layout/Navigation.svelte
@@ -152,7 +152,7 @@ let isMoreUnionFirst = $derived(
152
{#if section.title === "More Union"}
153
<!-- Spacer to push social icons to bottom -->
154
<div class="flex-1"></div>
155
- <YapAd />
+ <!-- <YapAd /> -->
156
<!-- Special rendering for More Union section - just icons in a row -->
157
<section class="px-4 py-4 flex flex-col justify-end {!isMoreUnionFirst && index > 0 ? 'border-t border-zinc-800/50' : ''}">
158
<div class="flex items-center justify-center gap-4">
app2/src/routes/yaps/+page.ts
@@ -0,0 +1,6 @@
1
+import { type Load, redirect } from "@sveltejs/kit"
2
+
3
+export const load: Load = () => {
4
+ throw redirect(302, "/")
5
+}
6
0 commit comments