2024-06-26 08:22:05 +00:00
|
|
|
import { RouteSectionProps } from '@solidjs/router'
|
2024-06-25 17:36:45 +00:00
|
|
|
import { ConnectView } from '~/components/Views/ConnectView'
|
|
|
|
import { useLocalize } from '~/context/localize'
|
|
|
|
import { PageLayout } from '../components/_shared/PageLayout'
|
|
|
|
|
2024-06-26 08:22:05 +00:00
|
|
|
export const ConnectPage = (_props: RouteSectionProps<Record<string, string>>) => {
|
2024-06-25 17:36:45 +00:00
|
|
|
const { t } = useLocalize()
|
|
|
|
return (
|
|
|
|
<PageLayout title={t('Suggest an idea')}>
|
|
|
|
<ConnectView />
|
|
|
|
</PageLayout>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const Page = ConnectPage
|