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.

add wumpus.store

Luna bee767aa 386571c7

+14 -2
+10 -1
app/(home)/layout.tsx
··· 79 79 <SiKofi /> 80 80 <span className="sr-only">Support Wamellow{"'"}s developers monetarily on Kofi</span> 81 81 </Link> 82 - <Link href="https://top.gg/bot/1125449347451068437/vote" className="text-neutral-400 hover:text-[#ff3366] duration-200 h-6 w-6" aria-label="Wamellow on top.gg"> 82 + <Link href="/vote" className="text-[#ff3366] duration-200 h-6 w-6" aria-label="Wamellow on top.gg"> 83 83 <TopggIcon /> 84 84 <span className="sr-only">Wamellow on top.gg</span> 85 + </Link> 86 + <Link href="/wumpus" className="text-neutral-400 hover:text-[#b6a5e3] duration-200 h-6 w-6 -ml-0.5" aria-label="Wamellow on wumpus.store"> 87 + <Image 88 + alt="Wumpus.store" 89 + height={24} 90 + src="https://cdn.discordapp.com/emojis/1184215185964146728.webp?size=96&quality=lossless" 91 + width={24} 92 + /> 93 + <span className="sr-only">Wamellow on wumpus.store</span> 85 94 </Link> 86 95 </div> 87 96
+4 -1
app/[pathname]/page.tsx
··· 5 5 } 6 6 7 7 const fetchOptions = { next: { revalidate: 60 * 60 } }; 8 + const utm = "?utm_source=wamellow.com&utm_medium=redirect"; 8 9 9 10 export default async function Home({ params }: Props) { 10 11 ··· 12 13 case "support": 13 14 return redirect("https://discord.com/invite/DNyyA2HFM9"); 14 15 case "vote": 15 - return redirect("https://top.gg/bot/1125449347451068437/vote"); 16 + return redirect("https://top.gg/bot/1125449347451068437/vote" + utm); 17 + case "wumpus": 18 + return redirect("https://wumpus.store/bot/1125449347451068437" + utm); 16 19 case "invite": 17 20 case "add": 18 21 case "get":