feat: setup Next.js frontend structure

This commit is contained in:
2025-06-04 10:09:24 +09:00
parent 958ec1d6a1
commit 514eaca8e9
5 changed files with 205 additions and 0 deletions

18
frontend/src/app/page.tsx Normal file
View File

@ -0,0 +1,18 @@
import React from "react";
import FeedList from "../components/FeedList";
import EpisodePlayer from "../components/EpisodePlayer";
export default function Home() {
return (
<div className="space-y-8">
<section>
<h2 className="text-xl font-semibold mb-4"></h2>
<FeedList />
</section>
<section>
<h2 className="text-xl font-semibold mb-4"></h2>
<EpisodePlayer />
</section>
</div>
);
}