diff --git a/apps/portal/public/logo.svg b/apps/portal/public/logo.svg new file mode 100644 index 00000000..ed21574f --- /dev/null +++ b/apps/portal/public/logo.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/portal/src/components/questions/NavBar.tsx b/apps/portal/src/components/questions/NavBar.tsx new file mode 100644 index 00000000..4e53cfc2 --- /dev/null +++ b/apps/portal/src/components/questions/NavBar.tsx @@ -0,0 +1,56 @@ +import Link from 'next/link'; + +const navigation = [ + { href: '/questions/landing', name: 'Landing' }, + { href: '#', name: 'Home' }, + { href: '#', name: 'My Lists' }, + { href: '#', name: 'My Questions' }, + { href: '#', name: 'History' }, +]; + +export default function NavBar() { + return ( + + + + + + TIH Question Bank + + + TIH Question Bank + + + + {navigation.map((link) => ( + + {link.name} + + ))} + + + + + Sign in + + + + + {navigation.map((link) => ( + + {link.name} + + ))} + + + + ); +} diff --git a/apps/portal/src/pages/questions/index.tsx b/apps/portal/src/pages/questions/index.tsx index 5f11a28f..eaf1b769 100644 --- a/apps/portal/src/pages/questions/index.tsx +++ b/apps/portal/src/pages/questions/index.tsx @@ -1,10 +1,14 @@ import ContributeQuestionCard from '~/components/questions/ContributeQuestionCard'; +import NavBar from '~/components/questions/NavBar'; import QuestionOverviewCard from '~/components/questions/QuestionOverviewCard'; import QuestionSearchBar from '~/components/questions/QuestionSearchBar'; export default function QuestionsHomePage() { return ( - + + + +