kreativortex/app/[locale]/page.tsx
Jessica Rekcah 3a14660c6d update
2025-12-06 10:05:58 +07:00

70 lines
2.2 KiB
TypeScript

/**
* 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 (
<div className="min-h-screen text-white">
<div className="floating-background"></div>
<div className="container mx-auto fixed z-10 top-0 left-0 right-0 flex justify-between items-center py-6">
<div className="flex items-center">
<Link href="/" locale="en" className="hover:text-gray-300 transition-colors">
EN
</Link>
<span className="mx-2">|</span>
<Link href="/" locale="id" className="hover:text-gray-300 transition-colors">
ID
</Link>
</div>
<div className="flex items-center gap-4">
<Link href="/auth/signin">
<Button variant="ghost" size="lg" className="uppercase">
{t('login')}
</Button>
</Link>
<Link href="/auth/signup">
<Button variant="outline" size="lg" className="uppercase">
{t('registration')}
</Button>
</Link>
</div>
</div>
{/* Main content */}
<div className="relative flex min-h-screen flex-col items-start justify-center px-4">
<div className="w-3/4 text-center">
{/* Logo/Title */}
<div className="mb-12">
<h1 className="text-5xl md:text-8xl text-gray-300 mb-4">
{t('title')}
</h1>
<p className="uppercase text-xl md:text-2xl text-gray-300">
{t('subtitle')}
</p>
</div>
{/* Action Buttons */}
<div className="flex flex-col sm:flex-row gap-4 justify-center items-center">
<Link
href="/auth/signup">
<Button variant="glass" size="xl" className="uppercase">
{t('startNow')}
</Button>
</Link>
</div>
</div>
</div>
</div>
);
}