xpeditis2.0/apps/frontend/app/page.tsx
David-Henri ARNAUD e863399bb2
Some checks failed
CI / Lint & Format Check (push) Failing after 1m11s
CI / Test Backend (push) Failing after 1m32s
CI / Build Backend (push) Has been skipped
Security Audit / npm audit (push) Failing after 5s
Security Audit / Dependency Review (push) Has been skipped
CI / Test Frontend (push) Failing after 29s
CI / Build Frontend (push) Has been skipped
first commit
2025-10-07 18:39:32 +02:00

18 lines
531 B
TypeScript

export default function Home() {
return (
<main className="flex min-h-screen flex-col items-center justify-center p-24">
<div className="text-center">
<h1 className="text-4xl font-bold mb-4">
🚢 Xpeditis
</h1>
<p className="text-xl text-muted-foreground mb-8">
Maritime Freight Booking Platform
</p>
<p className="text-sm text-muted-foreground">
Search, compare, and book maritime freight in real-time
</p>
</div>
</main>
);
}