Build and Deploy your Website

function App() {
  return (
    <div className="p-8 text-center font-sans">
      <h1 className="text-3xl font-bold mb-4 text-gray-800">
        Hello, World!
      </h1>
      <p className="text-gray-600">
        This is a live React preview with Tailwind CSS.
      </p>
      <button className="mt-4 px-4 py-2 bg-blue-500 text-white rounded-lg hover:bg-blue-600 transition-colors">
        Click me
      </button>
    </div>
  );
}

render(<App />);