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

refactor: add new files and update sidebar navigation #1

Merged
merged 18 commits into from Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
cbc4290
refactor: add new files and update sidebar navigation
qqharry21 Feb 23, 2024
6b9ec1d
refactor: add theme-switch & modify some components
qqharry21 Feb 23, 2024
9ed8c64
refactor: add notification dropdown item component and format utility…
qqharry21 Feb 25, 2024
cb314d3
refactor: add new components and update dependencies
qqharry21 Feb 25, 2024
22eddba
fix: fix media query hook to useBetterMediaQuery hook
qqharry21 Feb 25, 2024
5e9169f
refactor: update data-table components and table page layout
qqharry21 Feb 25, 2024
b5e0f75
feat: add form components
qqharry21 Feb 25, 2024
a8b1099
refactor: update components style & animation, add user/account-setti…
qqharry21 Feb 25, 2024
e30a294
refactor: update component imports to use the new UI folder structure
qqharry21 Feb 26, 2024
ee2b849
refactor: update sidebar, next.config, header, and button components
qqharry21 Feb 27, 2024
befc9e4
refactor: add .env files & update sidebar, user-dropdown components
qqharry21 Feb 28, 2024
123cfb1
refactor: add file-input-area component
qqharry21 Feb 29, 2024
a36c7fd
refactor: update personal info area & combobox, drag-drop-input-area …
qqharry21 Mar 1, 2024
b3ef84b
refactor: add from-radio-group, form-checkbox component
qqharry21 Mar 1, 2024
e89fcad
feat: add rich text editor
qqharry21 Mar 4, 2024
f7507af
refactor: update sidebar layout & style
qqharry21 Mar 5, 2024
b452cdb
feat: add supabase
qqharry21 Mar 5, 2024
bd96c60
refactor: add some helpers & update metadata
qqharry21 Mar 5, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 12 additions & 0 deletions .env
@@ -0,0 +1,12 @@
NEXT_PUBLIC_SITE_URL=

ACCESS_TOKEN_KEY='user_access_token'
REFRESH_TOKEN_KEY='user_refresh_token'

NEXT_PUBLIC_MEASUREMENT_ID=
NEXT_PUBLIC_GOOGLE_TAG_MANAGER_ID=
SENTRY_DSN=
SENTRY_AUTH_TOKEN=

NEXT_PUBLIC_SUPABASE_URL=https://odwqofjfevmgoakhmaav.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6Im9kd3FvZmpmZXZtZ29ha2htYWF2Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3MDk1NDY3NDYsImV4cCI6MjAyNTEyMjc0Nn0.m0sa2EhmHo0OKBwHJOhuO-YkHA-vtbyH-ah6eBppVpc
12 changes: 12 additions & 0 deletions .env.example
@@ -0,0 +1,12 @@
NEXT_PUBLIC_SITE_URL=

ACCESS_TOKEN_KEY=
REFRESH_TOKEN_KEY=

NEXT_PUBLIC_MEASUREMENT_ID=
NEXT_PUBLIC_GOOGLE_TAG_MANAGER_ID=
SENTRY_DSN=
SENTRY_AUTH_TOKEN=

NEXT_PUBLIC_SUPABASE_URL=
NEXT_PUBLIC_SUPABASE_ANON_KEY=
2 changes: 1 addition & 1 deletion .eslintrc.json
Expand Up @@ -25,7 +25,7 @@
"warn",
{
"groups": [
["^@?\\w", "^react"],
["^@?\\w", "^react\\w", "^next@?\\w"],
// Node.js builtins and third-party packages
["^\\u0000"],
// Your internal path aliases
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Expand Up @@ -11,5 +11,6 @@
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.fixAll": "explicit"
}
},
"cSpell.words": ["Tiptap"]
}
2 changes: 1 addition & 1 deletion components.json
Expand Up @@ -12,6 +12,6 @@
"aliases": {
"components": "@/components",
"utils": "@/utils",
"ui": "@/components"
"ui": "@/components/ui"
}
}
11 changes: 10 additions & 1 deletion next.config.mjs
@@ -1,4 +1,13 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'images.unsplash.com',
},
],
},
};

export default nextConfig;