feat: create PilotsPage with initial layout and content

This commit is contained in:
2025-09-06 13:21:36 +09:00
parent 6f28b60ffd
commit 9bc98bd582
+13 -1
View File
@@ -1,8 +1,20 @@
import React from 'react'
import Link from 'next/link'
function PilotsPage() {
return (
<div>PilotsPage</div>
<div className="container mx-auto px-4 py-8">
<h1 className="text-3xl font-bold mb-6">Пилоты Битвы за Москву</h1>
<p className="text-lg mb-8">Список участников вот-вот станет доступен</p>
<Link
href="/"
className="text-blue-600 hover:text-blue-800 underline"
>
Вернуться на главную
</Link>
</div>
)
}