A social knowledge tool for researchers built on ATProto

feat: cosmik newsletter link on landing page

+48 -36
+48 -36
src/webapp/app/page.tsx
··· 15 15 } from '@mantine/core'; 16 16 import { FaBluesky, FaGithub, FaDiscord } from 'react-icons/fa6'; 17 17 import { BiRightArrowAlt } from 'react-icons/bi'; 18 + import { RiArrowRightUpLine } from 'react-icons/ri'; 18 19 import BG from '@/assets/semble-bg.webp'; 19 20 import CosmikLogo from '@/assets/cosmik-logo-full.svg'; 20 21 import CurateIcon from '@/assets/icons/curate-icon.svg'; ··· 134 135 pos={'relative'} 135 136 > 136 137 <Stack align="center" gap={'xs'}> 138 + <Group gap="0"> 139 + <ActionIcon 140 + component="a" 141 + href="https://bsky.app/profile/cosmik.network" 142 + target="_blank" 143 + variant="subtle" 144 + color={'dark.2'} 145 + radius={'xl'} 146 + size={'xl'} 147 + m={0} 148 + > 149 + <FaBluesky size={22} /> 150 + </ActionIcon> 151 + <ActionIcon 152 + component="a" 153 + href="https://github.com/cosmik-network" 154 + target="_blank" 155 + variant="subtle" 156 + color={'dark.2'} 157 + radius={'xl'} 158 + size={'xl'} 159 + > 160 + <FaGithub size={22} /> 161 + </ActionIcon> 162 + <ActionIcon 163 + component="a" 164 + href="https://discord.gg/SHvvysb73e" 165 + target="_blank" 166 + variant="subtle" 167 + color={'dark.2'} 168 + radius={'xl'} 169 + size={'xl'} 170 + > 171 + <FaDiscord size={22} /> 172 + </ActionIcon> 173 + </Group> 174 + <Button 175 + component="a" 176 + href="https://blog.cosmik.network" 177 + target="_blank" 178 + variant="light" 179 + color="dark.1" 180 + fw={600} 181 + rightSection={<RiArrowRightUpLine />} 182 + > 183 + Follow our blog for updates 184 + </Button> 137 185 <Text c="dark.1" fw={600} ta="center"> 138 186 Made by &nbsp; 139 187 <Anchor ··· 176 224 </Anchor> 177 225 </Text> 178 226 </Text> 179 - <Group gap="0"> 180 - <ActionIcon 181 - component="a" 182 - href="https://bsky.app/profile/cosmik.network" 183 - target="_blank" 184 - variant="subtle" 185 - color={'dark.2'} 186 - radius={'xl'} 187 - size={'xl'} 188 - m={0} 189 - > 190 - <FaBluesky size={22} /> 191 - </ActionIcon> 192 - <ActionIcon 193 - component="a" 194 - href="https://github.com/cosmik-network" 195 - target="_blank" 196 - variant="subtle" 197 - color={'dark.2'} 198 - radius={'xl'} 199 - size={'xl'} 200 - > 201 - <FaGithub size={22} /> 202 - </ActionIcon> 203 - <ActionIcon 204 - component="a" 205 - href="https://discord.gg/SHvvysb73e" 206 - target="_blank" 207 - variant="subtle" 208 - color={'dark.2'} 209 - radius={'xl'} 210 - size={'xl'} 211 - > 212 - <FaDiscord size={22} /> 213 - </ActionIcon> 214 - </Group> 215 227 </Stack> 216 228 </Box> 217 229 </Stack>