Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions apps/landing/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,13 @@ export default function HomePage() {
borderRadius="100px"
gap="20px"
p="16px 40px"
role="group"
>
<Box
_active={{
_groupActive={{
bg: '$third',
}}
_hover={{
_groupHover={{
bg: '$primary',
}}
bg="$secondary"
Expand Down
7 changes: 7 additions & 0 deletions apps/landing/src/components/Discord.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,18 @@ export function Discord() {
<Link
className={css({
textDecoration: 'none',
borderRadius: '100px',
})}
href="https://discord.gg/BtNffusw"
target="_blank"
>
<Flex
_active={{
bg: '$buttonBlueActive',
}}
_hover={{
bg: '$buttonBlueHover',
}}
alignItems="center"
bg="$buttonBlue"
borderRadius="100px"
Expand Down
Loading