+
+ Your Note
+
+ : }
+ tooltip="Copy Note"
+ onClick={() => copy(note)}
+ />
+ }
+ tooltip="Download Note"
+ onClick={() => download('Moodit Note.txt', note)}
+ />
+ : }
+ recommended={!!history}
+ tooltip={history ? 'Restore Note' : 'Clear Note'}
+ onClick={() => (history ? restore() : clear())}
+ />
+
+
+
+
+ );
+}
diff --git a/src/pages/tools/notepad.astro b/src/pages/tools/notepad.astro
new file mode 100644
index 0000000..46b181f
--- /dev/null
+++ b/src/pages/tools/notepad.astro
@@ -0,0 +1,19 @@
+---
+import Layout from '@/layouts/layout.astro';
+
+import Donate from '@/components/donate.astro';
+import Hero from '@/components/tools/hero.astro';
+import Footer from '@/components/footer.astro';
+import About from '@/components/tools/about.astro';
+import { Notepad as NotepadComponent } from '@/components/tools/notepad';
+---
+
+