Skip to content

Commit

Permalink
build: added fav icon.
Browse files Browse the repository at this point in the history
  • Loading branch information
mmiscool committed Jan 4, 2025
1 parent 586b21e commit de1151d
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 10 deletions.
2 changes: 2 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
content="Enhance your coding experience with aiCoder, leveraging Abstract Syntax Trees (ASTs) for seamless code automation and integration.">
<meta name="twitter:image" content="https://aicoderproject.com/path-to-image.jpg">


<link rel="icon" href="./logo.png" type="image/x-icon">

<title>aiCoder - AI-Powered Coding Assistant</title>
<style>
Expand Down
Binary file added docs/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 0 additions & 10 deletions public/ChatManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,16 +237,6 @@ export class ChatManager {
}
async loadConversationsList() {
const conversations = await doAjax('./getConversationsList', {});
//console.log('conversations', conversations);
// format the conversations list
// [
// {
// "id": "20241206_051509050Z",
// "title": "",
// "lastModified": "2024-12-06T05:15:09.050Z"
// },
// ]
// sort the conversations by lastModified
conversations.sort((a, b) => {
return new Date(b.lastModified) - new Date(a.lastModified);
});
Expand Down
Binary file added public/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AI Coder</title>
<link rel="stylesheet" type="text/css" href="./style.css">
<link rel="icon" href="./logo.png" type="image/x-icon">
</head>

<body>
Expand Down
Binary file added public/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit de1151d

Please sign in to comment.