diff --git a/src/components/LayoutHeader.tsx b/src/components/LayoutHeader.tsx index 9e9ffc5..6e7dc1b 100644 --- a/src/components/LayoutHeader.tsx +++ b/src/components/LayoutHeader.tsx @@ -1,50 +1,59 @@ import React from "react" import Image from "next/image" +import Link from "next/link" type Props = {} export const Header = ({}: Props) => { - return ( -
-
- -
-
+ return ( +
+
+ +
- + a Lume project
-
- ) - } - - const Web3NewsLogo = ({ className }: { className?: string }) => { - return ( - - - - - ) - } +
+
+ + About + + + Contribute + +
+
+ ) +} -export default Header \ No newline at end of file +const Web3NewsLogo = ({ className }: { className?: string }) => { + return ( + + + + + ) +} + +export default Header