From 1fafddfd1084753aeb7b6429065e761d708809bb Mon Sep 17 00:00:00 2001 From: lonkaars Date: Fri, 26 Mar 2021 18:49:53 +0100 Subject: BIG progress --- components/articleSeperator.tsx | 8 ++++++++ components/navbarItem.tsx | 14 ++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 components/articleSeperator.tsx create mode 100644 components/navbarItem.tsx (limited to 'components') diff --git a/components/articleSeperator.tsx b/components/articleSeperator.tsx new file mode 100644 index 0000000..917d0be --- /dev/null +++ b/components/articleSeperator.tsx @@ -0,0 +1,8 @@ +export default function ArticleSeperator() { + return
+ + + +
+} + diff --git a/components/navbarItem.tsx b/components/navbarItem.tsx new file mode 100644 index 0000000..b724444 --- /dev/null +++ b/components/navbarItem.tsx @@ -0,0 +1,14 @@ +import { ReactNode } from 'react'; + +export default function NavbarItem(props: { + icon?: ReactNode; + title: string; + href: string; +}) { + return +
+ {props.icon} + {props.title} +
+
+} -- cgit v1.2.3