From 2bbe65ce3ea8ce0339606c44c66ad0a37cb58678 Mon Sep 17 00:00:00 2001 From: strNophix Date: Thu, 29 Sep 2022 15:21:02 +0200 Subject: [PATCH] Default state of client view is logged out --- client/src/components/BrowseLayout.tsx | 2 +- client/src/components/NavBar.tsx | 25 +++++++++++++++++++------ 2 files changed, 20 insertions(+), 7 deletions(-) diff --git a/client/src/components/BrowseLayout.tsx b/client/src/components/BrowseLayout.tsx index 4867c8e..d35c4ac 100644 --- a/client/src/components/BrowseLayout.tsx +++ b/client/src/components/BrowseLayout.tsx @@ -13,7 +13,7 @@ function BrowseLayout() {
-

Followed channels

+

Trending channels

diff --git a/client/src/components/NavBar.tsx b/client/src/components/NavBar.tsx index 4404d82..0cff89b 100644 --- a/client/src/components/NavBar.tsx +++ b/client/src/components/NavBar.tsx @@ -1,5 +1,6 @@ -import { TvIcon } from "@heroicons/react/24/outline"; +import { TvIcon, UserIcon } from "@heroicons/react/24/outline"; import { FC } from "react"; +import Button from "./Button"; import Input from "./Input"; const NavBar: FC = () => { @@ -7,12 +8,13 @@ const NavBar: FC = () => {