Removal of WIP Selections for final prod deploy
This commit is contained in:
parent
a78057de8c
commit
4ee7cb014f
5 changed files with 20 additions and 43 deletions
|
@ -1,25 +0,0 @@
|
|||
'use client';
|
||||
import '@/app/globals.css';
|
||||
import { useState } from 'react';
|
||||
import { RadarChart } from '../../components/charts/radar'
|
||||
import { EmpireStats } from '../../components/tables/empires'
|
||||
import { Checkbox } from '@nextui-org/react';
|
||||
import { PopChart } from '@/components/charts/pops';
|
||||
import { EthicsBar } from '../../components/charts/ethicsBar';
|
||||
|
||||
export default function Graphs() {
|
||||
const [weighted, setWeighted] = useState(true);
|
||||
return (
|
||||
<main className='charts'>
|
||||
<div className='column'>
|
||||
<RadarChart weighted={weighted} />
|
||||
<Checkbox labelColor="primary" defaultSelected={weighted} onChange={() => setWeighted(!weighted)}>Weighted Ethics</Checkbox>
|
||||
</div>
|
||||
<EmpireStats />
|
||||
<div className='column'>
|
||||
<PopChart></PopChart>
|
||||
<EthicsBar></EthicsBar>
|
||||
</div>
|
||||
</main>
|
||||
)
|
||||
}
|
|
@ -17,7 +17,6 @@ export default async function RootLayout({
|
|||
return (
|
||||
<html lang="en">
|
||||
<body>
|
||||
<PageNavbar links={navLinks}/>
|
||||
{children}
|
||||
</body>
|
||||
</html>
|
||||
|
|
27
app/page.tsx
27
app/page.tsx
|
@ -1,14 +1,25 @@
|
|||
'use client';
|
||||
import '@/app/globals.css';
|
||||
import { Game, GameGroup } from '@/types/stellaris';
|
||||
import { GameView } from '@/components/gui/client/game-view';
|
||||
import { generateUrl } from '@/components/server/fetchers';
|
||||
|
||||
export default async function Home() {
|
||||
const games = await fetch(generateUrl('/games')).then((res) => res.json())
|
||||
import { useState } from 'react';
|
||||
import { RadarChart } from '../components/charts/radar'
|
||||
import { EmpireStats } from '../components/tables/empires'
|
||||
import { Checkbox } from '@nextui-org/react';
|
||||
import { PopChart } from '@/components/charts/pops';
|
||||
import { EthicsBar } from '../components/charts/ethicsBar';
|
||||
|
||||
export default function Graphs() {
|
||||
const [weighted, setWeighted] = useState(true);
|
||||
return (
|
||||
<main>
|
||||
<GameView games={games}/>
|
||||
<main className='charts'>
|
||||
<div className='column'>
|
||||
<RadarChart weighted={weighted} />
|
||||
<Checkbox labelColor="primary" defaultSelected={weighted} onChange={() => setWeighted(!weighted)}>Weighted Ethics</Checkbox>
|
||||
</div>
|
||||
<EmpireStats />
|
||||
<div className='column'>
|
||||
<PopChart></PopChart>
|
||||
<EthicsBar></EthicsBar>
|
||||
</div>
|
||||
</main>
|
||||
)
|
||||
}
|
||||
|
|
|
@ -4,10 +4,6 @@
|
|||
"name": "Home",
|
||||
"href": "/"
|
||||
},
|
||||
{
|
||||
"name": "Game 15 Info",
|
||||
"href": "/graphs"
|
||||
},
|
||||
{
|
||||
"name": "Admin Menu",
|
||||
"href": "/admin"
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
{
|
||||
"links": [
|
||||
{
|
||||
"name": "Home New",
|
||||
"name": "Home",
|
||||
"href": "/"
|
||||
},
|
||||
{
|
||||
"name": "Game 15 Info",
|
||||
"href": "/graphs"
|
||||
},
|
||||
{
|
||||
"name": "Admin Menu",
|
||||
"href": "/admin"
|
||||
|
|
Reference in a new issue