change aboutUs to about

This commit is contained in:
Niklas 2025-06-27 15:28:43 +02:00 committed by Luisa Bellitto
parent 19deb7afcb
commit 74cfc6fc64
4 changed files with 16 additions and 14 deletions

View file

@ -16,8 +16,7 @@ import {
Navigate,
} from "react-router-dom";
import { Auth } from "./api/Auth";
import { NotFound } from "./pages/404Page/NotFoundPage";
import AboutUs from "./pages/AboutUs";
import AboutUs from "./pages/About";
function App() {
return (

View file

@ -0,0 +1,15 @@
import "./about.css";
function About() {
return (
<div className="mainbox">
<img
style={{ height: "200px", position: "relative" }}
src="/assets/icons/feather_black.svg"
alt="featherIcon"
/>
</div>
);
}
export default About;

View file

@ -1,12 +0,0 @@
import "./aboutUs.css";
function AboutUs() {
return (
<div className="mainbox">
<img style={{height: "200px", position: "relative"}} src='/assets/icons/feather_black.svg' alt="featherIcon" />
</div>
);
}
export default AboutUs;