Files
links/.history/frontend/linktree-frontend/pages/index_20250506110805.tsx
2025-05-06 20:44:33 +09:00

15 lines
333 B
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.

// pages/index.tsx
import type { NextPage } from 'next';
const Home: NextPage = () => {
return (
<div className="min-h-screen flex items-center justify-center bg-gray-50">
<h1 className="text-3xl font-bold">
Добро пожаловать в LinkTree Clone!
</h1>
</div>
);
};
export default Home;