The weeb for the next gen discord boat - Wamellow wamellow.com
bot discord
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

better link shortener

Luna aa36a925 b503e508

+17 -6
+17
app/[pathname]/page.tsx
··· 1 + import { notFound, redirect } from "next/navigation"; 2 + 3 + interface Props { 4 + params: { pathname: string } 5 + } 6 + 7 + export default function Home({ params }: Props) { 8 + 9 + switch (params.pathname) { 10 + case "support": 11 + return redirect("https://discord.com/invite/DNyyA2HFM9"); 12 + case "vote": 13 + return redirect("https://top.gg/bot/1125449347451068437/vote"); 14 + } 15 + 16 + notFound(); 17 + }
-6
app/support/page.tsx
··· 1 - import { redirect } from "next/navigation"; 2 - 3 - export default async function Home() { 4 - redirect("https://discord.com/invite/DNyyA2HFM9"); 5 - return <></>; 6 - }