Skip to content

Commit b21f07b

Browse files
author
Gianmarco
committed
project completed
1 parent 0145220 commit b21f07b

File tree

328 files changed

+34938
-580
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

328 files changed

+34938
-580
lines changed

.DS_Store

8 KB
Binary file not shown.

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
node_modules
2+
.env

.next/app-build-manifest.json

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"pages": {
3+
"/layout": [
4+
"static/chunks/webpack.js",
5+
"static/chunks/main-app.js",
6+
"static/css/app/layout.css",
7+
"static/chunks/app/layout.js"
8+
],
9+
"/(protected)/layout": [
10+
"static/chunks/webpack.js",
11+
"static/chunks/main-app.js",
12+
"static/chunks/app/(protected)/layout.js"
13+
],
14+
"/(protected)/settings/page": [
15+
"static/chunks/webpack.js",
16+
"static/chunks/main-app.js",
17+
"static/chunks/app/(protected)/settings/page.js"
18+
],
19+
"/(protected)/server/page": [
20+
"static/chunks/webpack.js",
21+
"static/chunks/main-app.js",
22+
"static/chunks/app/(protected)/server/page.js"
23+
],
24+
"/auth/layout": [
25+
"static/chunks/webpack.js",
26+
"static/chunks/main-app.js",
27+
"static/chunks/app/auth/layout.js"
28+
],
29+
"/auth/login/page": [
30+
"static/chunks/webpack.js",
31+
"static/chunks/main-app.js",
32+
"static/css/app/auth/login/page.css",
33+
"static/chunks/app/auth/login/page.js"
34+
],
35+
"/(protected)/admin/page": [
36+
"static/chunks/webpack.js",
37+
"static/chunks/main-app.js",
38+
"static/chunks/app/(protected)/admin/page.js"
39+
]
40+
}
41+
}

.next/build-manifest.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"polyfillFiles": [
3+
"static/chunks/polyfills.js"
4+
],
5+
"devFiles": [],
6+
"ampDevFiles": [],
7+
"lowPriorityFiles": [
8+
"static/development/_buildManifest.js",
9+
"static/development/_ssgManifest.js"
10+
],
11+
"rootMainFiles": [
12+
"static/chunks/webpack.js",
13+
"static/chunks/main-app.js"
14+
],
15+
"pages": {
16+
"/_app": []
17+
},
18+
"ampFirstPages": []
19+
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
3.08 KB
Binary file not shown.
5.38 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
5.25 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
70.3 KB
Binary file not shown.
Binary file not shown.
9.62 KB
Binary file not shown.
4.25 MB
Binary file not shown.
7.31 KB
Binary file not shown.
2.01 KB
Binary file not shown.
28.1 MB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
10.4 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
5.62 KB
Binary file not shown.
2.18 MB
Binary file not shown.
Binary file not shown.
12.4 MB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

.next/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"type": "commonjs"}

.next/react-loadable-manifest.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

.next/server/app-paths-manifest.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"/favicon.ico/route": "app/favicon.ico/route.js",
3+
"/api/auth/[...nextauth]/route": "app/api/auth/[...nextauth]/route.js",
4+
"/api/admin/route": "app/api/admin/route.js",
5+
"/(protected)/settings/page": "app/(protected)/settings/page.js",
6+
"/(protected)/server/page": "app/(protected)/server/page.js",
7+
"/auth/login/page": "app/auth/login/page.js",
8+
"/(protected)/admin/page": "app/(protected)/admin/page.js"
9+
}

.next/server/app/(protected)/admin/page.js

+898
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.next/server/app/(protected)/admin/page_client-reference-manifest.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.next/server/app/(protected)/server/page.js

+731
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.next/server/app/(protected)/server/page_client-reference-manifest.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)