diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx deleted file mode 100644 index 34ef649..0000000 --- a/src/components/Navbar.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import React from 'react'; - -interface Props { - links: Array<{ href: string; text: string }>; -} - -export default function Navbar(props: Props): JSX.Element { - return ( - - ); -}