(feat:layout) Clean up/improve layout scaffold

This commit is contained in:
KingRainbow44
2023-11-29 22:17:11 -05:00
parent 6a7097eae1
commit 6fd11bb6f5
3 changed files with 9 additions and 8 deletions

View File

@@ -9,7 +9,7 @@ import "@css/App.scss";
function App() { function App() {
return ( return (
<div className={"App"}> <div class={"App"}>
<TopBar /> <TopBar />
<Routes> <Routes>

View File

@@ -1,6 +1,6 @@
function InfoBoard() { function InfoBoard() {
return ( return (
<div className={"InfoBoard"}> <div class={"InfoBoard"}>
</div> </div>
); );

View File

@@ -1,22 +1,23 @@
import NewsFeed from "@components/NewsFeed.tsx"; import NewsFeed from "@components/NewsFeed.tsx";
import InfoBoard from "@components/InfoBoard.tsx"; import InfoBoard from "@components/InfoBoard.tsx";
import { Button } from "@fluentui/react-components";
function Launcher() { function Launcher() {
return ( return (
<div className={"App_Body"}> <div class={"Launcher_Announcements"}>
<div> <div>
<NewsFeed /> <NewsFeed />
<InfoBoard /> <InfoBoard />
<Button>
</Button>
</div> </div>
<div> <div>
<div class={"Launcher_Links"}>
</div> </div>
<div class={"Launcher_QuickSettings"}>
</div>
</div>
</div> </div>
); );
} }