AIvoices/frontend-nextjs/app/logo/page.tsx
2025-04-25 14:31:35 +01:00

7 lines
No EOL
198 B
TypeScript

export default function Logo() {
return (
<div className="flex items-center justify-center h-screen">
<h1 className="text-7xl font-bold font-silkscreen">ELATO 👾</h1>
</div>
);
}