From 9dedebc900f2daa0e2b9e22622ed3f996f715ce2 Mon Sep 17 00:00:00 2001 From: jcf-junior Date: Sat, 28 Feb 2026 15:00:31 +0000 Subject: [PATCH] feat: Created Footer --- public/assets/github-logo.svg | 2 ++ {src => public}/assets/react.svg | 0 src/App.tsx | 2 ++ src/components/Footer.tsx | 12 ++++++++++++ 4 files changed, 16 insertions(+) create mode 100644 public/assets/github-logo.svg rename {src => public}/assets/react.svg (100%) create mode 100644 src/components/Footer.tsx 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 ( <> +