import Link from 'next/link';

export default function Home() {
  return (
    <div className="flex flex-col items-center justify-center flex-1 px-4 text-center">
      <h1 className="text-5xl font-bold text-wtihub-green mb-6">
        WTI Link Stream
      </h1>
      <p className="text-xl text-wtihub-text/80 max-w-2xl mb-8">
      The professional link management platform for IT engineers and creators .  
      </p>

      <div className="flex gap-4">
        <Link href="/dashboard" className="btn-wtihub">
          Go to Dashboard 
        </Link>
      </div>
    </div>
  )
}