diff --git a/src/app/page.tsx b/src/app/page.tsx index 02232e0..fed9551 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,7 +1,9 @@ -export default function Home() { - return ( -
+import Navbar from '../components/Navbar'; -
+export default function Home() { + return ( +
+ +
); -} +} \ No newline at end of file diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx new file mode 100644 index 0000000..0adc068 --- /dev/null +++ b/src/components/Navbar.tsx @@ -0,0 +1,36 @@ +import React from "react"; +import Image from "next/image"; +import LOGO from "../assets/logo/icons8-toolbox-64.svg"; + +interface NavProps { + renderHomeLink: boolean, +} + +const navbar = (props:NavProps) => { + return ( +
+ +
+ ); +}; + +export default navbar; \ No newline at end of file