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