Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Implement UI #2

Merged
merged 39 commits into from
Nov 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
f97fc4e
feat: add notification component
brunosllz Aug 30, 2023
ce55f35
feat: create relevant pages
brunosllz Aug 30, 2023
56d2f9d
feat: add my projects page
brunosllz Aug 30, 2023
59e7a98
feat: add new project page
brunosllz Aug 31, 2023
ecbe56a
feat: add my projects page
brunosllz Sep 1, 2023
30d350c
feat: add new project form
brunosllz Sep 10, 2023
7a43bb6
feat: integrate new project from with the thrall
brunosllz Sep 11, 2023
0b3a6ad
feat: disabled all field when make submit form
brunosllz Sep 12, 2023
f32cc6d
feat: finish my projects
brunosllz Sep 15, 2023
83d0507
feat: add link to project details
brunosllz Sep 23, 2023
df3b546
feat: finesh notification painel and notifications page
brunosllz Sep 27, 2023
db81052
refactor: adjust save button on new project form
brunosllz Sep 27, 2023
47573f5
feat: add tooltip on bubble button in text area editor
brunosllz Oct 13, 2023
98f23d7
refactor: change header of app
brunosllz Oct 15, 2023
9d73c21
feat: add footer component
brunosllz Oct 15, 2023
96a11cf
feat: add profile page
brunosllz Oct 16, 2023
5aacc60
refactor: change prisma adapter for create a new user
brunosllz Oct 16, 2023
963f0bf
refactor: change user nav to profile
brunosllz Oct 16, 2023
f5663df
feat: add empty notification
brunosllz Oct 17, 2023
70a0afa
feat: add avatar group component
brunosllz Oct 17, 2023
c77a075
refactor: change background color from cover to image
brunosllz Oct 18, 2023
31de745
feat: add search bar component
brunosllz Oct 18, 2023
9dab2a4
feat: add onboarding page
brunosllz Oct 19, 2023
618b7d0
refactor: change next auth implementation and remove notification cou…
brunosllz Oct 19, 2023
a836583
style: alter style from search bar trigger
brunosllz Oct 19, 2023
ac757a4
feat: add feat flag for home and discussions page
brunosllz Oct 19, 2023
12316c6
refactor: change sidebar from projects to layout
brunosllz Oct 27, 2023
2fc7a23
feat: implement onboarding flow at application
brunosllz Oct 27, 2023
d38d6ae
feat: add edit and upload a new avatar image on onboarding
brunosllz Nov 1, 2023
cace67d
feat: implement cms to list options of roles and seniority select
brunosllz Nov 1, 2023
20d63f0
refactor: adjust validations on onboarding flow
brunosllz Nov 1, 2023
437e085
refactor: adjust user nav, load infos of user from server side
brunosllz Nov 1, 2023
c1185c7
refactor: list user infos at profile
brunosllz Nov 1, 2023
f848484
refactor: remove useFormContext inside combobox and pass control comp…
brunosllz Nov 2, 2023
b409ebf
feat: add integration of projects page with thrall api and finished ui
brunosllz Nov 12, 2023
c08fea8
feat: add fetch api wrapper
brunosllz Nov 14, 2023
a7770ff
refactor: change axios call to fetch api
brunosllz Nov 14, 2023
d9b1bae
feat: add user profile
brunosllz Nov 17, 2023
5070431
chore: add prisma generate on build script
brunosllz Nov 17, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*.d.ts
*.d.ts
tsconfig.json
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"next/core-web-vitals"
],
"rules": {
"@typescript-eslint/no-non-null-assertion": "off"
"@typescript-eslint/no-non-null-assertion": "off",
"@next/next/no-img-element": "off"
}
}
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"cSpell.words": [
"headerslist"
]
}
14 changes: 13 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}
const nextConfig = {
reactStrictMode: false,
experimental: {
serverActions: true,
},
images: {
domains: [
'github.com',
'pub-bc782eff834b482cb97f4e08b853eb2a.r2.dev',
'avatars.githubusercontent.com',
],
},
}

module.exports = nextConfig
Loading