reckue-dev/apps/web/src/app/page.tsx
claude 703c254074 Initial monorepo structure: NestJS API + Next.js Web + Rust Agent
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 16:36:22 +05:00

9 lines
193 B
TypeScript

export default function Home() {
return (
<main style={{ padding: '2rem', fontFamily: 'system-ui' }}>
<h1>Reckue Dev</h1>
<p>Platform is starting up...</p>
</main>
);
}