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.

don't prefretch login

Luna ab0ddabe 15cbce4c

+32 -13
+2 -1
app/(home)/faq.component.tsx
··· 146 146 }) { 147 147 return ( 148 148 <Link 149 + className={cn("text-violet-400 underline decoration-violet-400", className)} 149 150 href={href} 151 + prefetch={false} 150 152 target="_blank" 151 - className={cn("text-violet-400 underline decoration-violet-400", className)} 152 153 > 153 154 {children} 154 155 <HiExternalLink className="inline ml-1 mb-0.5" />
+6 -4
app/(home)/page.tsx
··· 71 71 const Invite = () => ( 72 72 <ServerButton 73 73 as={Link} 74 + color="secondary" 75 + href="/login?invite=true" 76 + prefetch={false} 74 77 startContent={<HiUserAdd />} 75 - href="/login?invite=true" 76 - color="secondary" 77 78 > 78 79 <span className="block sm:hidden">Invite</span> 79 80 <span className="hidden sm:block">Invite Wamellow</span> ··· 131 132 <div className="flex gap-2 lg:mt-0"> 132 133 <ServerButton 133 134 as={Link} 134 - startContent={<HiUserAdd />} 135 135 className="w-1/2 lg:w-fit !text-xl !font-medium" 136 136 color="secondary" 137 + prefetch={false} 137 138 href="/login?invite=true" 138 139 size="lg" 140 + startContent={<HiUserAdd />} 139 141 > 140 142 <span className="block sm:hidden">Invite</span> 141 143 <span className="hidden sm:block">Invite Wamellow</span> ··· 721 723 722 724 </div > 723 725 ); 724 - } 726 + }
+1
app/(home)/pro/page.tsx
··· 56 56 as={Link} 57 57 className="w-1/2 font-medium" 58 58 href="/login?invite=true" 59 + prefetch={false} 59 60 startContent={<BsDiscord />} 60 61 > 61 62 Get started
+3 -1
app/ai-gallery/(home)/layout.tsx
··· 87 87 88 88 <Link 89 89 href="/login?invite=true" 90 + prefetch={false} 90 91 target="_blank" 91 92 > 92 93 <Image ··· 101 102 <div className="flex gap-2 mt-4"> 102 103 <ServerButton 103 104 as={Link} 104 - startContent={<HiUserAdd />} 105 105 className="w-1/2 lg:w-fit !text-xl !font-medium" 106 106 color="secondary" 107 107 href="/login?invite=true" 108 + prefetch={false} 108 109 size="lg" 110 + startContent={<HiUserAdd />} 109 111 > 110 112 <span className="block sm:hidden">Invite</span> 111 113 <span className="hidden sm:block">Invite Wamellow</span>
+2 -1
app/ai-gallery/[uploadId]/layout.tsx
··· 136 136 </Link> 137 137 ))} 138 138 <Link 139 + className="h-24 w-24 border-2 dark:border-wamellow border-wamellow-100 p-4 flex justify-center items-center rounded-lg drop-shadow-md overflow-hidden relative duration-100 outline-violet-500 hover:outline" 139 140 href="/login?invite=true" 141 + prefetch={false} 140 142 target="_blank" 141 - className="h-24 w-24 border-2 dark:border-wamellow border-wamellow-100 p-4 flex justify-center items-center rounded-lg drop-shadow-md overflow-hidden relative duration-100 outline-violet-500 hover:outline" 142 143 > 143 144 <HiPlus /> 144 145 </Link>
+4 -2
app/dashboard/page.tsx
··· 117 117 </div> 118 118 <Button 119 119 as={Link} 120 + className="w-1/2 md:w-min" 120 121 href="/login?invite=true" 121 - className="w-1/2 md:w-min" 122 + prefetch={false} 122 123 startContent={<HiUserAdd />} 123 124 > 124 125 Add to Server 125 126 </Button> 126 127 <Button 127 128 as={Link} 129 + className="button-primary w-1/2 md:w-min" 128 130 href="/login" 129 - className="button-primary w-1/2 md:w-min" 131 + prefetch={false} 130 132 startContent={<HiRefresh />} 131 133 > 132 134 Reload
+2 -1
app/passport/[guildId]/verify.component.tsx
··· 135 135 (user && !user.id) || error?.includes("email") ? 136 136 <Button 137 137 as={Link} 138 + className="button-blurple font-medium w-full" 138 139 href="/login" 139 - className="button-blurple font-medium w-full" 140 + prefetch={false} 140 141 startContent={<BsDiscord />} 141 142 > 142 143 Login to Verify
+7 -1
app/profile/spotify/page.tsx
··· 95 95 <BsSpotify className="h-4 relative top-0.5 text-[#1ed760]" /> 96 96 </div> 97 97 <div className="flex items-center"> 98 - <Link href="/login/spotify?logout=true" className="text-violet-500 opacity-60 hover:opacity-80 duration-200">Not you?</Link> 98 + <Link 99 + className="text-violet-500 opacity-60 hover:opacity-80 duration-200" 100 + href="/login/spotify?logout=true" 101 + prefetch={false} 102 + > 103 + Not you? 104 + </Link> 99 105 {searchParams.spotify_login_success === "true" && spotify.displayName && <> 100 106 <span className="mx-2 text-neutral-500">•</span> 101 107 <div className="text-green-500 duration-200">Link was successfull!</div>
+2 -1
components/footer.tsx
··· 137 137 <Link 138 138 className="flex items-center gap-2" 139 139 href="/login?invite=true" 140 + prefetch={false} 140 141 > 141 142 <HiUserAdd /> 142 143 Invite ··· 144 145 </div> 145 146 </div> 146 147 ); 147 - } 148 + }
+2 -1
components/login-button.tsx
··· 30 30 <div className={className || "ml-auto"}> 31 31 <Button 32 32 as={Link} 33 + className={cn("hover:bg-blurple hover:text-white dark:bg-wamellow bg-wamellow-100", loginstate === "ERRORED" && "dark:bg-danger/80 bg-danger/80 text-white", addClassName)} 33 34 href="/login" 35 + prefetch={false} 34 36 startContent={<Icon />} 35 - className={cn("hover:bg-blurple hover:text-white dark:bg-wamellow bg-wamellow-100", loginstate === "ERRORED" && "dark:bg-danger/80 bg-danger/80 text-white", addClassName)} 36 37 > 37 38 {!loginstate ? 38 39 <span className={`${montserrat.className} font-semibold`}>
+1
components/screen-message.tsx
··· 101 101 as={Link} 102 102 className="button-primary" 103 103 href="/login?invite=true" 104 + prefetch={false} 104 105 startContent={<BsDiscord />} 105 106 > 106 107 Add bot to your server