// Public landing — URL `/` (the `(marketing)` group is silent). Static content, // so it pre-renders to flat HTML and ships zero JS by default. 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} }} />

) }