diff --git a/front/src/components/ClickableLink.tsx b/front/src/components/ClickableLink.tsx index ee88b3b..9a9bbdb 100644 --- a/front/src/components/ClickableLink.tsx +++ b/front/src/components/ClickableLink.tsx @@ -1,25 +1,11 @@ +function Link ({text}){ + return( + + ) +} + export default function ClickableLink({url, text}) { return (
- +
) } \ No newline at end of file diff --git a/front/src/components/LogoButton.tsx b/front/src/components/LogoButton.tsx index 5fcf29c..b4da75b 100644 --- a/front/src/components/LogoButton.tsx +++ b/front/src/components/LogoButton.tsx @@ -1,5 +1,11 @@ +function Logo({logo}){ + return ( + + ) + } + export default function LogoButton ({url, logo}) { return ( - + ) } \ No newline at end of file diff --git a/front/src/components/NavBar.tsx b/front/src/components/NavBar.tsx index 7f8ab2f..84499b8 100644 --- a/front/src/components/NavBar.tsx +++ b/front/src/components/NavBar.tsx @@ -1,17 +1,10 @@ import LogoButton from '../components/LogoButton.tsx' import ClickableLink from './ClickableLink.tsx'; -import RoundButton from './RoundButton.tsx'; export default function NavBar(){ return ( - ); + <> + + + ); } \ No newline at end of file diff --git a/front/src/components/RoundButton.tsx b/front/src/components/RoundButton.tsx deleted file mode 100644 index 8c2e092..0000000 --- a/front/src/components/RoundButton.tsx +++ /dev/null @@ -1,26 +0,0 @@ -export default function RoundButton({url, bgcolor, text}) { - return (
- -
) -} \ No newline at end of file