-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfile_structure.txt
126 lines (126 loc) · 6.3 KB
/
file_structure.txt
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
astrogram
├── client
│ ├── .gitignore
│ ├── jsconfig.json
│ ├── package-lock.json
│ ├── package.json
│ ├── public
│ │ ├── assets
│ │ │ ├── linkedin.png
│ │ │ └── twitter.png
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── manifest.json
│ │ └── robots.txt
│ ├── README.md
│ └── src
│ ├── App.js
│ ├── assets
│ │ ├── about.jpg
│ │ ├── image1.jpg
│ │ ├── image2.jpg
│ │ └── image3.jpg
│ ├── components
│ │ ├── FlexBetween.jsx
│ │ ├── Follower.jsx
│ │ ├── Following.jsx
│ │ ├── SearchBar.jsx
│ │ ├── UserImage.jsx
│ │ └── WidgetWrapper.jsx
│ ├── index.css
│ ├── index.js
│ ├── scenes
│ │ ├── eventDetailsPage
│ │ │ └── index.jsx
│ │ ├── eventForm
│ │ │ └── index.jsx
│ │ ├── eventsPage
│ │ │ └── index.jsx
│ │ ├── homePage
│ │ │ └── index.jsx
│ │ ├── landingPage
│ │ │ ├── About.jsx
│ │ │ ├── Home.jsx
│ │ │ ├── index.jsx
│ │ │ └── Navbar.jsx
│ │ ├── loginPage
│ │ │ ├── Form.jsx
│ │ │ └── index.jsx
│ │ ├── navbar
│ │ │ └── index.jsx
│ │ └── profilePage
│ │ └── index.jsx
│ ├── state
│ │ └── index.js
│ ├── theme.js
│ └── widgets
│ ├── AdvertWidget.jsx
│ ├── EventWidget.jsx
│ ├── FollowersListWidget.jsx
│ ├── FollowingsListWidget.jsx
│ ├── MyPostWidget.jsx
│ ├── PostsWidget.jsx
│ ├── PostWidget.jsx
│ └── UserWidget.jsx
└── server
├── .env
├── .gitignore
├── controllers
│ ├── auth.js
│ ├── events.js
│ ├── posts.js
│ ├── search.js
│ └── users.js
├── data
│ └── index.js
├── index.js
├── middleware
│ └── auth.js
├── models
│ ├── Comment.js
│ ├── Event.js
│ ├── Post.js
│ └── User.js
├── package-lock.json
├── package.json
├── public
│ └── assets
│ ├── 20220505_152925.jpg
│ ├── 20220505_152932.jpg
│ ├── clouds.jpg
│ ├── event1.jpg
│ ├── event2.jpg
│ ├── event3.jpg
│ ├── event4.jpg
│ ├── event5.jpg
│ ├── info.jpg
│ ├── lisitha.jpg
│ ├── OIP.jpeg
│ ├── p1.jpeg
│ ├── p10.jpeg
│ ├── p11.jpeg
│ ├── p12.jpeg
│ ├── p13.jpeg
│ ├── p2.jpeg
│ ├── p3.jpeg
│ ├── p4.jpeg
│ ├── p5.jpeg
│ ├── p6.jpeg
│ ├── p7.jpeg
│ ├── p8.jpeg
│ ├── p9.jpeg
│ ├── picc.jpg
│ ├── post1.jpg
│ ├── post2.jpg
│ ├── post3.jpg
│ ├── post4.jpg
│ ├── post5.jpg
│ ├── post6.jpg
│ ├── prof-pic-2.png
│ └── prof-pic.jpg
└── routes
├── auth.js
├── events.js
├── posts.js
├── search.js
└── users.js