Skip to content

Commit

Permalink
UI Redo
Browse files Browse the repository at this point in the history
  • Loading branch information
d4vss committed Jun 12, 2024
1 parent 43b340d commit 04c6813
Show file tree
Hide file tree
Showing 66 changed files with 7,829 additions and 4,200 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
Binary file modified .github/assets/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

# production
/build
/.nuxt

# misc
.DS_Store
Expand All @@ -28,11 +27,12 @@ yarn-error.log*

# local env files
.env*.local
.env

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
package-lock.json
.env
2 changes: 2 additions & 0 deletions .xata/migrations/.ledger
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
mig_cpjn3gk4pfsffuh0ciag_cdaf57a4
mig_cpkcoh0g2jlha5j493d0_07997336
279 changes: 279 additions & 0 deletions .xata/migrations/mig_cpjn3gk4pfsffuh0ciag_cdaf57a4.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,279 @@
{
"id": "mig_cpjn3gk4pfsffuh0ciag",
"checksum": "1:cdaf57a4330f98a0c5edb3fd17d8d5470028a71d0c332e4bce43fa58164cf02f",
"operations": [
{
"addTable": {
"table": "nextauth_users"
}
},
{
"addTable": {
"table": "nextauth_accounts"
}
},
{
"addTable": {
"table": "nextauth_verificationTokens"
}
},
{
"addTable": {
"table": "nextauth_users_accounts"
}
},
{
"addTable": {
"table": "nextauth_users_sessions"
}
},
{
"addTable": {
"table": "nextauth_sessions"
}
},
{
"addColumn": {
"column": {
"name": "email",
"type": "email"
},
"table": "nextauth_users"
}
},
{
"addColumn": {
"column": {
"name": "emailVerified",
"type": "datetime"
},
"table": "nextauth_users"
}
},
{
"addColumn": {
"column": {
"name": "name",
"type": "string"
},
"table": "nextauth_users"
}
},
{
"addColumn": {
"column": {
"name": "image",
"type": "string"
},
"table": "nextauth_users"
}
},
{
"addColumn": {
"column": {
"name": "user",
"type": "link",
"link": {
"table": "nextauth_users"
}
},
"table": "nextauth_accounts"
}
},
{
"addColumn": {
"column": {
"name": "type",
"type": "string"
},
"table": "nextauth_accounts"
}
},
{
"addColumn": {
"column": {
"name": "provider",
"type": "string"
},
"table": "nextauth_accounts"
}
},
{
"addColumn": {
"column": {
"name": "providerAccountId",
"type": "string"
},
"table": "nextauth_accounts"
}
},
{
"addColumn": {
"column": {
"name": "refresh_token",
"type": "string"
},
"table": "nextauth_accounts"
}
},
{
"addColumn": {
"column": {
"name": "access_token",
"type": "string"
},
"table": "nextauth_accounts"
}
},
{
"addColumn": {
"column": {
"name": "expires_at",
"type": "int"
},
"table": "nextauth_accounts"
}
},
{
"addColumn": {
"column": {
"name": "token_type",
"type": "string"
},
"table": "nextauth_accounts"
}
},
{
"addColumn": {
"column": {
"name": "scope",
"type": "string"
},
"table": "nextauth_accounts"
}
},
{
"addColumn": {
"column": {
"name": "id_token",
"type": "text"
},
"table": "nextauth_accounts"
}
},
{
"addColumn": {
"column": {
"name": "session_state",
"type": "string"
},
"table": "nextauth_accounts"
}
},
{
"addColumn": {
"column": {
"name": "identifier",
"type": "string"
},
"table": "nextauth_verificationTokens"
}
},
{
"addColumn": {
"column": {
"name": "token",
"type": "string"
},
"table": "nextauth_verificationTokens"
}
},
{
"addColumn": {
"column": {
"name": "expires",
"type": "datetime"
},
"table": "nextauth_verificationTokens"
}
},
{
"addColumn": {
"column": {
"name": "user",
"type": "link",
"link": {
"table": "nextauth_users"
}
},
"table": "nextauth_users_accounts"
}
},
{
"addColumn": {
"column": {
"name": "account",
"type": "link",
"link": {
"table": "nextauth_accounts"
}
},
"table": "nextauth_users_accounts"
}
},
{
"addColumn": {
"column": {
"name": "user",
"type": "link",
"link": {
"table": "nextauth_users"
}
},
"table": "nextauth_users_sessions"
}
},
{
"addColumn": {
"column": {
"name": "session",
"type": "link",
"link": {
"table": "nextauth_sessions"
}
},
"table": "nextauth_users_sessions"
}
},
{
"addColumn": {
"column": {
"name": "sessionToken",
"type": "string"
},
"table": "nextauth_sessions"
}
},
{
"addColumn": {
"column": {
"name": "expires",
"type": "datetime"
},
"table": "nextauth_sessions"
}
},
{
"addColumn": {
"column": {
"name": "user",
"type": "link",
"link": {
"table": "nextauth_users"
}
},
"table": "nextauth_sessions"
}
}
]
}
Loading

0 comments on commit 04c6813

Please sign in to comment.