/** * File: page.tsx * Created by: AI Assistant * Date: 2025-11-29 * Purpose: Landing page for kreatiVortex platform * Part of: kreatiVortex - Platform Pembelajaran Tari Online */ import { Button } from "@/components/ui/button"; import { Link } from "@/i18n/routing"; import { getTranslations } from 'next-intl/server'; export default async function Home() { const t = await getTranslations('HomePage'); return (
EN | ID
{/* Main content */}
{/* Logo/Title */}

{t('title')}

{t('subtitle')}

{/* Action Buttons */}
); }