mirror of
https://github.com/misode/misode.github.io.git
synced 2026-04-26 00:16:51 +00:00
* Improve how generators are listed on home * Add some icons for generators * Remove debug * Refactor cachedFetch and use generated changelogs * Add limit to how many changes are shown by default * Add more generator icons * Refactor cards * Fix generator icons for light theme * Add more worldgen icons * Add remaining generator icons * Refactor navigation and badges style * Group on homepage for guides and tools * Fix header button style * Add versions and technical changelog to homepage * Make it clear that not all changes could be documented
18 lines
396 B
TypeScript
18 lines
396 B
TypeScript
import { Footer, GeneratorList } from '../components/index.js'
|
|
import { useLocale, useTitle } from '../contexts/index.js'
|
|
|
|
interface Props {
|
|
path?: string
|
|
}
|
|
export function Generators({}: Props) {
|
|
const { locale } = useLocale()
|
|
useTitle(locale('title.generators'))
|
|
|
|
return <main>
|
|
<div class="container">
|
|
<GeneratorList predicate={gen => !gen.partner} />
|
|
</div>
|
|
<Footer />
|
|
</main>
|
|
}
|