mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1export const FEEDBACK_FORM_URL =
2 'https://docs.google.com/forms/d/e/1FAIpQLSdavFRXTdB6tRobaFrRR2A1gv3b-IBHwQkBmNZTRpoqmcrPrQ/viewform?usp=sf_link'
3
4export const MAX_DISPLAY_NAME = 64
5export const MAX_DESCRIPTION = 256
6
7export const PROD_SUGGESTED_FOLLOWS = [
8 'john',
9 'visakanv',
10 'saz',
11 'steph',
12 'ratzlaff',
13 'beth',
14 'weisser',
15 'katherine',
16 'annagat',
17 'josh',
18 'lurkshark',
19 'amir',
20 'amyxzh',
21 'danielle',
22 'jack-frazee',
23 'vibes',
24 'cat',
25 'yuriy',
26 'alvinreyes',
27 'skoot',
28 'patricia',
29 'ara4n',
30 'case',
31 'armand',
32 'ivan',
33 'nicholas',
34 'kelsey',
35 'ericlee',
36 'emily',
37 'jake',
38 'jennijuju',
39 'ian5v',
40 'bnewbold',
41 'chris',
42 'mtclai',
43 'willscott',
44 'michael',
45 'kwkroeger',
46 'broox',
47 'iamrosewang',
48 'jack-morrison',
49 'pwang',
50 'martin',
51 'jack',
52 'dan',
53 'why',
54 'divy',
55 'jay',
56 'paul',
57].map(handle => `${handle}.bsky.social`)
58
59export const STAGING_SUGGESTED_FOLLOWS = ['arcalinea', 'paul', 'paul2'].map(
60 handle => `${handle}.staging.bsky.dev`,
61)
62
63export const DEV_SUGGESTED_FOLLOWS = ['alice', 'bob', 'carla'].map(
64 handle => `${handle}.test`,
65)
66
67export const POST_IMG_MAX_WIDTH = 2000
68export const POST_IMG_MAX_HEIGHT = 2000
69export const POST_IMG_MAX_SIZE = 1000000
70
71export const DESKTOP_HEADER_HEIGHT = 57