aboutsummaryrefslogtreecommitdiffstats
path: root/src/Logo.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/Logo.jsx')
-rw-r--r--src/Logo.jsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Logo.jsx b/src/Logo.jsx
new file mode 100644
index 0000000..664c607
--- /dev/null
+++ b/src/Logo.jsx
@@ -0,0 +1,9 @@
+import LogoSVG from '@/assets/logo.svg'
+const Logo = () => {
+ return (
+ <div className='logo'>
+ <img src={LogoSVG} alt='logo' width='128px' height='128px' />
+ </div>
+ )
+}
+export default Logo