import { ARTISTS_OR_CREATORS, BANNER_WELCOME, HOME_BACKGROUND_IMAGE, HOME_LOGO_PATH, HOME_MASCOT_PATH, HOME_WELCOME_CREDITS, SITE_NAME, } from "#env/env-vars"; import { AVAILABLE_PAYSITE_LIST } from "#env/derived-vars"; import { PageSkeleton } from "#components/pages"; import { KemonoLink } from "#components/links"; export function HomePage() { const title = "Welcome"; return ( {!BANNER_WELCOME ? undefined : (
)}
{!HOME_MASCOT_PATH ? undefined : (
)}
{BUNDLER_ENV_HOME_ANNOUNCEMENTS?.map((announcement) => (

{announcement.title}

{announcement.date}

))} ); } function Description() { return (
{!HOME_LOGO_PATH ? undefined : (
)}

{SITE_NAME} is a public archiver for:

    {AVAILABLE_PAYSITE_LIST.map((paysite, index) => (
  • {paysite.title}
  • ))}

Contributors here upload content and share it here for easy searching and organization. To get started viewing content, either search for creators on the{" "} {ARTISTS_OR_CREATORS.toLowerCase()} page , or search for content on the{" "} posts page. If you want to contribute content, head over to the{" "} import page.

{!HOME_WELCOME_CREDITS ? undefined : (
)}
); }