mirror of
https://github.com/gabehf/Koito.git
synced 2026-03-07 21:48:18 -08:00
* add subtle gradient to home page * tweak autumn theme primary color * reduce home page top margin on mobile * use focus-active instead of focus for outline * fix gradient on rewind page * align checkbox on login form * i forgot what the pseudo class was called
41 lines
1.6 KiB
TypeScript
41 lines
1.6 KiB
TypeScript
import type { Route } from "./+types/Home";
|
|
import TopTracks from "~/components/TopTracks";
|
|
import LastPlays from "~/components/LastPlays";
|
|
import ActivityGrid from "~/components/ActivityGrid";
|
|
import TopAlbums from "~/components/TopAlbums";
|
|
import TopArtists from "~/components/TopArtists";
|
|
import AllTimeStats from "~/components/AllTimeStats";
|
|
import { useState } from "react";
|
|
import PeriodSelector from "~/components/PeriodSelector";
|
|
import { useAppContext } from "~/providers/AppProvider";
|
|
|
|
export function meta({}: Route.MetaArgs) {
|
|
return [{ title: "Koito" }, { name: "description", content: "Koito" }];
|
|
}
|
|
|
|
export default function Home() {
|
|
const [period, setPeriod] = useState("week");
|
|
|
|
const { homeItems } = useAppContext();
|
|
|
|
return (
|
|
<main className="flex flex-grow justify-center pb-4 w-full bg-linear-to-b to-(--color-bg) from-(--color-bg-secondary) to-60%">
|
|
<div className="flex-1 flex flex-col items-center gap-16 min-h-0 sm:mt-20 mt-10">
|
|
<div className="flex flex-col md:flex-row gap-10 md:gap-20">
|
|
<AllTimeStats />
|
|
<ActivityGrid configurable />
|
|
</div>
|
|
<PeriodSelector setter={setPeriod} current={period} />
|
|
<div className="flex flex-wrap gap-10 2xl:gap-20 xl:gap-10 justify-between mx-5 md:gap-5">
|
|
<TopArtists period={period} limit={homeItems} />
|
|
<TopAlbums period={period} limit={homeItems} />
|
|
<TopTracks period={period} limit={homeItems} />
|
|
<LastPlays
|
|
showNowPlaying={true}
|
|
limit={Math.floor(homeItems * 2.7)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|