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.

fix home server side rendering

Luna ff78f9bc 38938c27

+22 -19
+22 -19
app/(home)/page.tsx
··· 1 1 import { Montserrat, Patrick_Hand } from "next/font/google"; 2 2 import Image from "next/image"; 3 3 import Link from "next/link"; 4 + import { Suspense } from "react"; 4 5 import { BsDiscord } from "react-icons/bs"; 5 6 import { HiArrowRight, HiInformationCircle, HiPlus } from "react-icons/hi"; 6 7 ··· 106 107 </div> 107 108 108 109 <div className="md:ml-auto md:w-1/2 px-3 pb-3"> 109 - <ListTab 110 - tabs={[ 111 - { 112 - name: "Messages", 113 - value: "" 114 - }, 115 - { 116 - name: "Voicetime", 117 - value: "voiceminutes" 118 - }, 119 - { 120 - name: "Invites", 121 - value: "invites" 122 - } 123 - ]} 124 - url="/" 125 - searchParamName="type" 126 - disabled={true} 127 - /> 110 + <Suspense> 111 + <ListTab 112 + tabs={[ 113 + { 114 + name: "Messages", 115 + value: "" 116 + }, 117 + { 118 + name: "Voicetime", 119 + value: "voiceminutes" 120 + }, 121 + { 122 + name: "Invites", 123 + value: "invites" 124 + } 125 + ]} 126 + url="/" 127 + searchParamName="type" 128 + disabled={true} 129 + /> 130 + </Suspense> 128 131 <Image src="/leaderboard.webp" itemProp="image" width={1224 / 2} height={768 / 2} alt="Example leaderboard webpage" loading="lazy" /> 129 132 </div> 130 133