NextNodeTemplate/frontend/app/page.tsx

31 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import ExampleComponent from '@/components/ExampleComponent';
export default function Home() {
return (
<div className="min-h-screen py-8">
<div className="max-w-4xl mx-auto p-6 space-y-6 bg-gray-800 text-gray-200 rounded-lg shadow-lg">
<h1 className="text-4xl font-bold text-center">
Next.js + Node.js Template
</h1>
<p className="text-center text-gray-400">
Готовый шаблон для быстрого старта проектов
</p>
<div className="mt-8 p-4 bg-gray-700 rounded">
<h2 className="text-2xl font-semibold mb-4">Начало работы</h2>
<ul className="list-disc list-inside space-y-2 text-gray-300">
<li>Настройте структуру проекта под ваши нужды</li>
<li>Добавьте необходимые зависимости</li>
<li>Обновите документацию в папке docs/</li>
<li>Начните разработку!</li>
</ul>
</div>
<div className="mt-8">
<ExampleComponent />
</div>
</div>
</div>
);
}