diff --git a/public/assets/github-logo.svg b/public/assets/github-logo.svg
new file mode 100644
index 0000000..a113340
--- /dev/null
+++ b/public/assets/github-logo.svg
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/src/assets/react.svg b/public/assets/react.svg
similarity index 100%
rename from src/assets/react.svg
rename to public/assets/react.svg
diff --git a/src/App.tsx b/src/App.tsx
index 87fa479..e5ec6a8 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -1,11 +1,13 @@
import { Outlet } from "react-router";
import Navbar from "./components/Navbar";
+import Footer from "./components/Footer";
export default function App() {
return (
<>
+
>
);
}
diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx
new file mode 100644
index 0000000..f44008f
--- /dev/null
+++ b/src/components/Footer.tsx
@@ -0,0 +1,12 @@
+export default function Footer() {
+ return (
+
+ );
+}