2023-11-03 19:08:20 +01:00
|
|
|
import BingoController from './components/bingocontroller'
|
|
|
|
import ThemeSwitcher from './components/themeswitcher'
|
2023-11-02 23:08:51 +01:00
|
|
|
|
|
|
|
export default function Home(){
|
|
|
|
return(
|
2023-11-03 03:41:08 +01:00
|
|
|
<>
|
|
|
|
<div className="navbar bg-neutral text-neutral-content">
|
|
|
|
<div className="flex-1">
|
2023-11-04 20:28:37 +01:00
|
|
|
<span><b className="normal-case text-xl">Buzzword Bingo</b><span className="text-xs ml-1">v{process.env.npm_package_version}</span></span>
|
2023-11-03 03:41:08 +01:00
|
|
|
</div>
|
|
|
|
<div className="flex-none">
|
|
|
|
<ul className="menu menu-horizontal px-1">
|
|
|
|
<li>
|
|
|
|
<a href="https://git.datalore.sh/datalore/buzzword-bingo.git" target="_blank">Source Code</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<details>
|
|
|
|
<summary>Theme</summary>
|
2023-11-03 12:56:03 +01:00
|
|
|
<ThemeSwitcher/>
|
2023-11-03 03:41:08 +01:00
|
|
|
</details>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<main className="flex flex-col flex-1">
|
|
|
|
<BingoController/>
|
2023-11-02 23:08:51 +01:00
|
|
|
</main>
|
2023-11-03 03:41:08 +01:00
|
|
|
</>
|
2023-11-02 23:08:51 +01:00
|
|
|
);
|
2023-11-02 13:51:09 +01:00
|
|
|
}
|