tangled
alpha
login
or
join now
cosmik.network
/
semble
43
fork
atom
A social knowledge tool for researchers built on ATProto
43
fork
atom
overview
issues
13
pulls
pipelines
feat: cosmik newsletter link on landing page
Pouria Delfanazari
5 months ago
a221442d
425c2379
+48
-36
1 changed file
expand all
collapse all
unified
split
src
webapp
app
page.tsx
+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
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
138
+
<Group gap="0">
139
139
+
<ActionIcon
140
140
+
component="a"
141
141
+
href="https://bsky.app/profile/cosmik.network"
142
142
+
target="_blank"
143
143
+
variant="subtle"
144
144
+
color={'dark.2'}
145
145
+
radius={'xl'}
146
146
+
size={'xl'}
147
147
+
m={0}
148
148
+
>
149
149
+
<FaBluesky size={22} />
150
150
+
</ActionIcon>
151
151
+
<ActionIcon
152
152
+
component="a"
153
153
+
href="https://github.com/cosmik-network"
154
154
+
target="_blank"
155
155
+
variant="subtle"
156
156
+
color={'dark.2'}
157
157
+
radius={'xl'}
158
158
+
size={'xl'}
159
159
+
>
160
160
+
<FaGithub size={22} />
161
161
+
</ActionIcon>
162
162
+
<ActionIcon
163
163
+
component="a"
164
164
+
href="https://discord.gg/SHvvysb73e"
165
165
+
target="_blank"
166
166
+
variant="subtle"
167
167
+
color={'dark.2'}
168
168
+
radius={'xl'}
169
169
+
size={'xl'}
170
170
+
>
171
171
+
<FaDiscord size={22} />
172
172
+
</ActionIcon>
173
173
+
</Group>
174
174
+
<Button
175
175
+
component="a"
176
176
+
href="https://blog.cosmik.network"
177
177
+
target="_blank"
178
178
+
variant="light"
179
179
+
color="dark.1"
180
180
+
fw={600}
181
181
+
rightSection={<RiArrowRightUpLine />}
182
182
+
>
183
183
+
Follow our blog for updates
184
184
+
</Button>
137
185
<Text c="dark.1" fw={600} ta="center">
138
186
Made by
139
187
<Anchor
···
176
224
</Anchor>
177
225
</Text>
178
226
</Text>
179
179
-
<Group gap="0">
180
180
-
<ActionIcon
181
181
-
component="a"
182
182
-
href="https://bsky.app/profile/cosmik.network"
183
183
-
target="_blank"
184
184
-
variant="subtle"
185
185
-
color={'dark.2'}
186
186
-
radius={'xl'}
187
187
-
size={'xl'}
188
188
-
m={0}
189
189
-
>
190
190
-
<FaBluesky size={22} />
191
191
-
</ActionIcon>
192
192
-
<ActionIcon
193
193
-
component="a"
194
194
-
href="https://github.com/cosmik-network"
195
195
-
target="_blank"
196
196
-
variant="subtle"
197
197
-
color={'dark.2'}
198
198
-
radius={'xl'}
199
199
-
size={'xl'}
200
200
-
>
201
201
-
<FaGithub size={22} />
202
202
-
</ActionIcon>
203
203
-
<ActionIcon
204
204
-
component="a"
205
205
-
href="https://discord.gg/SHvvysb73e"
206
206
-
target="_blank"
207
207
-
variant="subtle"
208
208
-
color={'dark.2'}
209
209
-
radius={'xl'}
210
210
-
size={'xl'}
211
211
-
>
212
212
-
<FaDiscord size={22} />
213
213
-
</ActionIcon>
214
214
-
</Group>
215
227
</Stack>
216
228
</Box>
217
229
</Stack>