Skip to content

Commit

Permalink
Built for Prompt Chef Chat
Browse files Browse the repository at this point in the history
  • Loading branch information
hunterunger committed Jun 25, 2023
1 parent f7c2116 commit 157193d
Show file tree
Hide file tree
Showing 12 changed files with 523 additions and 167 deletions.
7 changes: 0 additions & 7 deletions app/chat/page.tsx

This file was deleted.

4 changes: 2 additions & 2 deletions app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
@media (prefers-color-scheme: dark) {
:root {
--foreground-rgb: 255, 255, 255;
--background-start-rgb: 0, 0, 0;
--background-end-rgb: 0, 0, 0;
--background-start-rgb: 42, 42, 42;
--background-end-rgb: 42, 42, 42;
}
}

Expand Down
314 changes: 189 additions & 125 deletions app/page.tsx

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
}
output: "export",
experimental: { appDir: true },
};

module.exports = nextConfig
module.exports = nextConfig;
256 changes: 256 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@
"@types/node": "20.2.5",
"@types/react": "18.2.8",
"@types/react-dom": "18.2.4",
"ai": "^2.1.7",
"autoprefixer": "10.4.14",
"moment": "^2.29.4",
"next": "13.4.4",
"openai-edge": "^1.1.0",
"postcss": "8.4.24",
"react": "18.2.0",
"react-datepicker": "^4.14.0",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ tauri-build = { version = "1.3.0", features = [] }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.3.0", features = [ "os-all", "shell-all", "dialog-all", "fs-read-dir", "fs-read-file", "fs-write-file", "window-create"] }
tauri = { version = "1.3.0", features = [ "clipboard-write-text", "fs-all", "path-all", "os-all", "shell-all", "dialog-all", "window-create"] }
# sqlite = "0.30.4"
imessage-database = "1.4.0"
chrono = "0.4.26"
Expand Down
Loading

0 comments on commit 157193d

Please sign in to comment.