// Public landing — URL `/`. Pure static content; pre-renders to flat HTML. import type { ReactNode } from 'react' import type { PageMeta } from '@voltro/web' import { T } from '@voltro/i18n' import { getCatalog } from '../../locales' export const renderMode = 'static' as const export const meta = ({ locale }: { readonly locale: string }): PageMeta => ({ title: getCatalog(locale)['meta.landing.title'], description: getCatalog(locale)['meta.landing.description'], }) export default function Landing(): ReactNode { return (

{c}, code: (c: ReactNode) => {c}, }} />

) }