Skip to content

Commit

Permalink
Update app name
Browse files Browse the repository at this point in the history
  • Loading branch information
addyosmani committed Oct 27, 2024
1 parent 81c5600 commit f864718
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"manifest_version": 3,
"name": "Whisper Notes",
"name": "SpeakEZ",
"version": "1.0",
"description": "A note-taking app with speech-to-text capabilities",
"icons": {
Expand All @@ -9,7 +9,7 @@
"128": "icon128.png"
},
"action": {
"default_title": "Whisper Notes"
"default_title": "SpeakEZ"
},
"side_panel": {
"default_path": "index.html"
Expand Down
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,15 +149,15 @@ function App() {
<div className='flex flex-col min-h-screen'>
<header className='bg-slate-800 text-white p-4'>
<div className="flex justify-between items-center">
<h1 className='text-3xl font-bold'>Whisper Notes</h1>
<h1 className='text-3xl font-bold'>SpeakEZ</h1>
<div className="flex gap-2">
<button
onClick={() => {
const notesBlob = new Blob([JSON.stringify(notes, null, 2)], { type: 'application/json' });
const url = URL.createObjectURL(notesBlob);
const a = document.createElement('a');
a.href = url;
a.download = 'whisper-notes-export.json';
a.download = 'speakez-notes-export.json';
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
Expand Down

0 comments on commit f864718

Please sign in to comment.