import React from 'react';

export default function Home() {
  return (
    <div className="min-h-screen bg-gray-50 flex flex-col items-center justify-center">
      <main className="text-center max-w-2xl px-4">
        <h1 className="text-6xl font-extrabold text-gray-900 mb-4">
          ResumeRaccoon
        </h1>
        <p className="text-xl text-gray-600 mb-8">
          Twój sprytny szop pracz pomoże Ci stworzyć idealne CV w kilka minut!
        </p>
        <button className="bg-indigo-600 text-white font-medium py-3 px-8 rounded-lg shadow hover:bg-indigo-700 transition">
          Zacznij teraz
        </button>
      </main>
    </div>
  );
}
