-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.tsx
More file actions
423 lines (416 loc) · 13 KB
/
Copy pathpage.tsx
File metadata and controls
423 lines (416 loc) · 13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
import { OpenInV0Button } from "@/components/open-in-v0-button";
import {
DiscordChat,
DiscordMention,
DiscordMessage,
DiscordMessageAuthor,
DiscordMessageAuthorImage,
DiscordMessageAuthorName,
DiscordMessageContent,
DiscordMessageGroup
} from "@/registry/discord-base/discord-base";
export default function Home() {
return (
<div className="mx-auto flex min-h-svh max-w-3xl flex-col gap-8 px-4 py-8">
<main className="flex flex-1 flex-col gap-8">
<h1 className="font-bold text-3xl">Examples</h1>
<div className="relative flex min-h-[450px] flex-col gap-4 rounded-lg border p-4">
<div className="flex items-center justify-between">
<h2 className="text-muted-foreground text-sm sm:pl-3">
Example of basic discord messages
</h2>
<OpenInV0Button
name="hello-world"
className="w-fit"
/>
</div>
<div className="relative flex min-h-[400px] items-center justify-center">
<DiscordChat>
<DiscordMessageGroup>
<DiscordMessageContent>
<DiscordMessageAuthor>
<DiscordMessageAuthorImage
src="/images/avatars/Woofer.webp"
alt="Avatar"
fallback="WF"
/>
<DiscordMessageAuthorName
timestamp={new Date(Date.now() - 48 * 60 * 60 * 1000)}
>
Woofer21
</DiscordMessageAuthorName>
</DiscordMessageAuthor>
<DiscordMessage>Hello World!</DiscordMessage>
</DiscordMessageContent>
<DiscordMessageContent>
<DiscordMessage>What is up chat?</DiscordMessage>
</DiscordMessageContent>
</DiscordMessageGroup>
<DiscordMessageGroup>
<DiscordMessageContent>
<DiscordMessageAuthor>
<DiscordMessageAuthorImage
src="/images/avatars/Dominik.webp"
alt="Avatar"
fallback="DOM"
/>
<DiscordMessageAuthorName timestamp={new Date()}>
Dominik
</DiscordMessageAuthorName>
</DiscordMessageAuthor>
<DiscordMessage>Hi Woofer</DiscordMessage>
</DiscordMessageContent>
</DiscordMessageGroup>
<DiscordMessageGroup>
<DiscordMessageContent>
<DiscordMessageAuthor>
<DiscordMessageAuthorImage
src="/images/avatars/Woofer.webp"
alt="Avatar"
fallback="WF"
/>
<DiscordMessageAuthorName
timestamp={new Date(Date.now() - 48 * 60 * 60 * 1000)}
>
Woofer21
</DiscordMessageAuthorName>
</DiscordMessageAuthor>
<DiscordMessage>
I am going to send a really long message to see how it
looks? Are you ready? I am sure it is going to break so be
ready for the really long message to breaking things here
don't we? Is it not just the grandest time?
</DiscordMessage>
</DiscordMessageContent>
</DiscordMessageGroup>
</DiscordChat>
</div>
</div>
<div className="relative flex min-h-[450px] flex-col gap-4 rounded-lg border p-4">
<div className="flex items-center justify-between">
<h2 className="text-muted-foreground text-sm sm:pl-3">
Simple Mentions
</h2>
<OpenInV0Button
name="hello-world"
className="w-fit"
/>
</div>
<div className="relative flex min-h-[400px] items-center justify-center">
<DiscordChat>
<DiscordMessageGroup>
<DiscordMessageContent>
<DiscordMessageAuthor>
<DiscordMessageAuthorImage
src="/images/avatars/Woofer.webp"
alt="Avatar"
fallback="WF"
/>
<DiscordMessageAuthorName
timestamp={new Date(Date.now() - 48 * 60 * 60 * 1000)}
>
Woofer21
</DiscordMessageAuthorName>
</DiscordMessageAuthor>
<DiscordMessage>
Yo <DiscordMention type="user">Woofer21</DiscordMention>{" "}
what is good brother?
<br />
<DiscordMention type="role">Admin</DiscordMention> help!!!!
<br />
<DiscordMention
type="role"
roleColor="#C759FF"
>
Owner
</DiscordMention>{" "}
whats up bro
<br />
Bro literally{" "}
<DiscordMention type="channel">general</DiscordMention> is
my fav channel!!
<br />
Have you seen the{" "}
<DiscordMention type="thread">cool-cars</DiscordMention>{" "}
thread yet?
<br />
Join up <DiscordMention type="voice">gaming</DiscordMention>{" "}
for some gaming!!
<br />
<DiscordMention type="stage">Events</DiscordMention> is the
best stage ever!
<br />
Please only post help questions in{" "}
<DiscordMention type="forum">help</DiscordMention>!!
<br />
So much cool media in{" "}
<DiscordMention type="media">media</DiscordMention>!
<br />
Slash commands are cool, try{" "}
<DiscordMention type="command">ping</DiscordMention>
<br />
Make sure to pick up your roles from{" "}
<DiscordMention type="linked-roles" />
<br />
Choose which channels you can see in the{" "}
<DiscordMention type="browse" /> tab
<br />
Learn more about our server in the{" "}
<DiscordMention type="guide" /> tab
<br />
Too bad that you disabled embed links, now this cool image
wont display :{"( "}
<DiscordMention type="image-link">image.jpg</DiscordMention>
<br />
Make sure to check out more information in this{" "}
<DiscordMention type="forum-post">
Channel Information
</DiscordMention>{" "}
forum post
</DiscordMessage>
</DiscordMessageContent>
</DiscordMessageGroup>
</DiscordChat>
</div>
</div>
<div className="relative flex min-h-[450px] flex-col gap-4 rounded-lg border p-4">
<div className="flex items-center justify-between">
<h2 className="text-muted-foreground text-sm sm:pl-3">
In-Server Message Link Mentions
</h2>
<OpenInV0Button
name="hello-world"
className="w-fit"
/>
</div>
<div className="relative flex min-h-[400px] items-center justify-center">
<DiscordChat>
<DiscordMessageGroup>
<DiscordMessageContent>
<DiscordMessageAuthor>
<DiscordMessageAuthorImage
src="/images/avatars/Woofer.webp"
alt="Avatar"
fallback="WF"
/>
<DiscordMessageAuthorName
timestamp={new Date(Date.now() - 48 * 60 * 60 * 1000)}
>
Woofer21
</DiscordMessageAuthorName>
</DiscordMessageAuthor>
<DiscordMessage>
Yo, check out this cool message{" "}
<DiscordMention
type="message-link"
modifier="channel"
modifierText="general"
/>
<br />
Go rate my new car here{" "}
<DiscordMention
type="message-link"
modifier="thread"
modifierText="cool-cars"
/>{" "}
please :{")"}
<br />
Can you please help me with this issue{" "}
<DiscordMention
type="message-link"
modifier="forum"
modifierText="help"
/>{" "}
?
<br />
Check out my new PC background{" "}
<DiscordMention
type="message-link"
modifier="media"
modifierText="cool-backgrounds"
/>
<br />
Did you see what bob wanted to tell you in the VC yesterday?{" "}
<DiscordMention
type="message-link"
modifier="voice"
modifierText="chit-chat"
/>
<br />
Look at this new decoration, should I buy it?{" "}
<DiscordMention
type="shop-link"
modifierText="Aurora"
/>
</DiscordMessage>
</DiscordMessageContent>
</DiscordMessageGroup>
</DiscordChat>
</div>
</div>
<div className="relative flex min-h-[450px] flex-col gap-4 rounded-lg border p-4">
<div className="flex items-center justify-between">
<h2 className="text-muted-foreground text-sm sm:pl-3">
External Server Message Link Mentions
</h2>
<OpenInV0Button
name="hello-world"
className="w-fit"
/>
</div>
<div className="relative flex min-h-[400px] items-center justify-center">
<DiscordChat>
<DiscordMessageGroup>
<DiscordMessageContent>
<DiscordMessageAuthor>
<DiscordMessageAuthorImage
src="/images/avatars/Woofer.webp"
alt="Avatar"
fallback="WF"
/>
<DiscordMessageAuthorName
timestamp={new Date(Date.now() - 48 * 60 * 60 * 1000)}
>
Woofer21
</DiscordMessageAuthorName>
</DiscordMessageAuthor>
<DiscordMessage>
Yo, check out this channel{" "}
<DiscordMention
type="external-server-link"
modifier="channel"
modifierText="Would You"
serverSrc="/images/servers/WouldYou.webp"
serverAlt={"Server Icon"}
serverFallback="WY"
>
general
</DiscordMention>
<br />
Check out this announcement message from Bob{" "}
<DiscordMention
type="external-server-link"
modifier="message"
modifierText="Would You"
serverSrc="/images/servers/WouldYou.webp"
serverAlt={"Server Icon"}
serverFallback="WY"
/>
<br />
Join up{" "}
<DiscordMention
type="external-server-link"
modifier="voice"
modifierText="Would You"
serverSrc="/images/servers/WouldYou.webp"
serverAlt={"Server Icon"}
serverFallback="WY"
>
gamin
</DiscordMention>{" "}
for some fun gaming!!
<br />
Did you see the posts people are making here{" "}
<DiscordMention
type="external-server-link"
modifier="forum"
modifierText="Would You"
serverSrc="/images/servers/WouldYou.webp"
serverAlt={"Server Icon"}
serverFallback="WY"
>
help
</DiscordMention>{" "}
?
<br />
Look at what bob answered to this question{" "}
<DiscordMention
type="external-server-link"
modifier="forum-message"
modifierText="Would You"
serverSrc="/images/servers/WouldYou.webp"
serverAlt={"Server Icon"}
serverFallback="WY"
>
cool-cars
</DiscordMention>
<br />
Check out this cool video{" "}
<DiscordMention
type="external-server-link"
modifier="media"
modifierText="Would You"
serverSrc="/images/servers/WouldYou.webp"
serverAlt={"Server Icon"}
serverFallback="WY"
>
cool-backgrounds
</DiscordMention>
<br />
Quick, join up, the stage is starting soon{" "}
<DiscordMention
type="external-server-link"
modifier="stage"
modifierText="Would You"
serverSrc="/images/servers/WouldYou.webp"
serverAlt={"Server Icon"}
serverFallback="WY"
>
Events
</DiscordMention>
<br />
They lock{" "}
<DiscordMention
type="external-server-link"
modifier="locked"
modifierText="Would You"
serverSrc="/images/servers/WouldYou.webp"
serverAlt={"Server Icon"}
serverFallback="WY"
>
events
</DiscordMention>{" "}
when no events are going on :{"{"}
</DiscordMessage>
</DiscordMessageContent>
</DiscordMessageGroup>
</DiscordChat>
</div>
</div>
</main>
<footer>
<div className="flex items-center justify-between border-t pt-6">
<p className="text-muted-foreground text-sm">
Made with <span>❤️</span> by{" "}
<a
className="text-foreground/80 hover:underline"
href="https://woofer21.com/"
target="_blank"
rel="noreferrer"
>
<span>Woofer21</span>
</a>{" "}
and{" "}
<a
className="text-foreground/80 hover:underline"
href="https://github.com/Would-You-Bot/discord-components/graphs/contributors"
target="_blank"
rel="noreferrer"
>
Contributors
</a>
!
</p>
<a
className="text-foreground/80 hover:underline"
target="_blank"
rel="noreferrer"
href="https://wouldyoubot.gg/legal"
>
Legal Notice
</a>
</div>
</footer>
</div>
);
}