diff --git a/prisma/schema.prisma b/prisma/schema.prisma index 6d78c6a..6b1b92d 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -1,16 +1,9 @@ -// This is your Prisma schema file, -// learn more about it in the docs: https://pris.ly/d/prisma-schema - generator client { provider = "prisma-client-js" } datasource db { - provider = "sqlite" - // NOTE: When using postgresql, mysql or sqlserver, uncomment the @db.Text annotations in model Account below - // Further reading: - // https://next-auth.js.org/adapters/prisma#create-the-prisma-schema - // https://www.prisma.io/docs/reference/api-reference/prisma-schema-reference#string + provider = "postgresql" url = env("DATABASE_URL") } @@ -27,12 +20,12 @@ model Account { type String provider String providerAccountId String - refresh_token String? // @db.Text - access_token String? // @db.Text + refresh_token String? @db.Text + access_token String? @db.Text expires_at Int? token_type String? scope String? - id_token String? // @db.Text + id_token String? @db.Text session_state String? user User @relation(fields: [userId], references: [id], onDelete: Cascade) diff --git a/public/android-chrome-192x192.png b/public/android-chrome-192x192.png new file mode 100644 index 0000000..0fe1c2d Binary files /dev/null and b/public/android-chrome-192x192.png differ diff --git a/public/android-chrome-512x512.png b/public/android-chrome-512x512.png new file mode 100644 index 0000000..c3db602 Binary files /dev/null and b/public/android-chrome-512x512.png differ diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png new file mode 100644 index 0000000..999c3ec Binary files /dev/null and b/public/apple-touch-icon.png differ diff --git a/public/favicon-16x16.png b/public/favicon-16x16.png new file mode 100644 index 0000000..501e9a1 Binary files /dev/null and b/public/favicon-16x16.png differ diff --git a/public/favicon-32x32.png b/public/favicon-32x32.png new file mode 100644 index 0000000..4027afe Binary files /dev/null and b/public/favicon-32x32.png differ diff --git a/public/favicon.ico b/public/favicon.ico index efd76f1..5c9c2a0 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/public/site.webmanifest b/public/site.webmanifest new file mode 100644 index 0000000..fdc3aba --- /dev/null +++ b/public/site.webmanifest @@ -0,0 +1,19 @@ +{ + "name": "Agent-GPT", + "short_name": "Agent-GPT", + "icons": [ + { + "src": "/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} diff --git a/public/social.png b/public/social.png new file mode 100644 index 0000000..bb7c231 Binary files /dev/null and b/public/social.png differ diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 5e561dc..0a8d704 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -8,8 +8,8 @@ const Home: NextPage = () => { return ( <>
-