feat: migrate frontend to Next.js

This commit is contained in:
2025-06-04 09:08:32 +09:00
parent 25c771b90b
commit 1defdb8bef
5 changed files with 48 additions and 19 deletions

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

@ -0,0 +1,14 @@
import React from "react";
import FeedList from "../components/FeedList";
import EpisodeList from "../components/EpisodeList";
export default function Home() {
return (
<div style={{ padding: "20px", fontFamily: "sans-serif" }}>
<h1> </h1>
<FeedList />
<hr style={{ margin: "20px 0" }} />
<EpisodeList />
</div>
);
}