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.

somewhat better docs pages

Luna c25df203 5131c2bd

+54 -59
+54 -59
app/docs/[...pathname]/layout.tsx
··· 69 69 <Divider className="mt-2" /> 70 70 71 71 <div className="flex flex-col lg:flex-row gap-6 mt-5 min-h-[63vh]"> 72 - <ul className="w-full lg:w-1/4 space-y-2"> 73 - {metadata.pages.map((page) => ( 74 - <ol key={page.file}> 75 - <Button 76 - as={Link} 77 - className="w-full !justify-start" 78 - href={`/docs/${page.file.replace(/\.md$/, "")}`} 79 - > 80 - {page.name} 81 - </Button> 82 - </ol> 83 - ))} 72 + <div className="w-full lg:w-1/4 space-y-2"> 84 73 85 - <ol> 86 - <Button 87 - as={Link} 88 - className="w-full !justify-start button-blurple mt-4" 89 - href="/support" 90 - target="_blank" 91 - startContent={<BsDiscord />} 92 - endContent={<HiExternalLink />} 93 - > 94 - Join Support 95 - </Button> 96 - </ol> 97 - <ol> 98 - <Button 99 - as={Link} 100 - className="w-full !justify-start font-medium" 101 - href="/invite" 102 - target="_blank" 103 - color="secondary" 104 - startContent={<HiUserAdd />} 105 - endContent={<HiExternalLink />} 106 - > 107 - Invite Wamellow 108 - </Button> 109 - </ol> 110 - <ol> 111 - <Button 112 - as={Link} 113 - className="w-full !justify-start" 114 - href="/profile" 115 - target="_blank" 116 - startContent={<HiViewGridAdd />} 117 - endContent={<HiExternalLink />} 118 - > 119 - Dashboard 120 - </Button> 121 - </ol> 74 + <ul className="space-y-2 mb-4 bg-wamellow p-2 rounded-md border border-wamellow-alpha"> 75 + {metadata.pages.map((page) => ( 76 + <ol key={page.file}> 77 + <Button 78 + as={Link} 79 + className="w-full !justify-start" 80 + href={`/docs/${page.file.replace(/\.md$/, "")}`} 81 + size="sm" 82 + > 83 + {page.name} 84 + </Button> 85 + </ol> 86 + ))} 87 + </ul> 122 88 123 - <ol> 124 - <Link 125 - className="flex items-center gap-1.5 hover:text-violet-400 duration-100" 126 - href={"https://github.com/Luna-devv/mellow-web/blob/master/public/docs"} 127 - target="_blank" 128 - > 129 - <BsGithub /> Contribute 130 - </Link> 131 - </ol> 132 - </ul> 89 + <Button 90 + as={Link} 91 + className="w-full !justify-start button-blurple" 92 + href="/support" 93 + target="_blank" 94 + startContent={<BsDiscord />} 95 + endContent={<HiExternalLink />} 96 + > 97 + Join Support 98 + </Button> 99 + <Button 100 + as={Link} 101 + className="w-full !justify-start font-medium" 102 + href="/invite" 103 + target="_blank" 104 + color="secondary" 105 + startContent={<HiUserAdd />} 106 + endContent={<HiExternalLink />} 107 + > 108 + Invite Wamellow 109 + </Button> 110 + <Button 111 + as={Link} 112 + className="w-full !justify-start" 113 + href="/profile" 114 + target="_blank" 115 + startContent={<HiViewGridAdd />} 116 + endContent={<HiExternalLink />} 117 + > 118 + Dashboard 119 + </Button> 120 + <Link 121 + className="flex items-center gap-1.5 hover:text-violet-400 duration-100" 122 + href={"https://github.com/Luna-devv/mellow-web/blob/master/public/docs"} 123 + target="_blank" 124 + > 125 + <BsGithub /> Contribute 126 + </Link> 127 + </div> 133 128 134 129 <Divider className="lg:hidden" /> 135 130