diff --git a/front/src/components/ClickableLink.tsx b/front/src/components/ClickableLink.tsx index 9334e71..9a9bbdb 100644 --- a/front/src/components/ClickableLink.tsx +++ b/front/src/components/ClickableLink.tsx @@ -1,5 +1,11 @@ -export default function ClickableLink(){ -
- prout -
+function Link ({text}){ + return( + + ) +} + +export default function ClickableLink({url, text}) { + return (
+ +
) } \ No newline at end of file diff --git a/front/src/components/NavBar.tsx b/front/src/components/NavBar.tsx index 2980646..84499b8 100644 --- a/front/src/components/NavBar.tsx +++ b/front/src/components/NavBar.tsx @@ -1,7 +1,10 @@ import LogoButton from '../components/LogoButton.tsx' +import ClickableLink from './ClickableLink.tsx'; export default function NavBar(){ - return (
- -
); + return ( + <> + + + ); } \ No newline at end of file