Files
deer-flow/frontend/src/app/page.tsx

8 lines
182 B
TypeScript
Raw Normal View History

export default async function LandingPage() {
return (
<main className="flex min-h-screen flex-col items-center justify-center">
Welcome to DeerFlow 2
</main>
);
}