Skip to content

Commit

Permalink
change Title and add custom icon
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienDupont76 committed May 19, 2024
1 parent b9f70ae commit ec0a55a
Show file tree
Hide file tree
Showing 3 changed files with 92 additions and 12 deletions.
22 changes: 11 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/croissant.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CroissantLLM - Traduction</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
80 changes: 80 additions & 0 deletions public/croissant.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function App() {
}, []);

const initProgressCallback = (report: InitProgressReport) => {
console.log(report);
//console.log(report);
if (report.text.startsWith('Loading model from cache')) {
setOutput('Loading from cache...');
} else {
Expand Down

0 comments on commit ec0a55a

Please sign in to comment.