import Link from 'next/link' import { defaultLocale } from '@/lib/i18n/locales' export default function IndexPage({ params }: { params: { locale: string } }) { const loc = params.locale || defaultLocale return (

Landing Builder

Start building your landing page.

Go to Builder
) }