summaryrefslogtreecommitdiff
path: root/frontend/src/components/Logo.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/Logo.tsx')
-rw-r--r--frontend/src/components/Logo.tsx12
1 files changed, 12 insertions, 0 deletions
diff --git a/frontend/src/components/Logo.tsx b/frontend/src/components/Logo.tsx
new file mode 100644
index 0000000..4488a7e
--- /dev/null
+++ b/frontend/src/components/Logo.tsx
@@ -0,0 +1,12 @@
+import logo from "../assets/robot-outline.svg";
+
+function Logo() {
+ return (
+ <div className="logo">
+ <img src={logo} alt="Robot Tracker Logo" />
+ <h1>Robot Tracker</h1>
+ </div>
+ );
+}
+
+export default Logo;