الملفات
nextjs-project/app/page.js
2025-10-01 01:10:54 +03:00

12 أسطر
345 B
JavaScript

export default function Home() {
return (
<div className="flex flex-col items-center justify-center min-h-screen bg-gray-50 text-gray-900">
<h1 className="text-4xl font-bold mb-4">🚀 Welcome to My Next.js App</h1>
<p className="text-lg text-gray-700">
This is a clean starter template.
</p>
</div>
);
}