import { useState } from "react"; import FeedManager from "../components/FeedManager"; import EpisodePlayer from "../components/EpisodePlayer"; import Dashboard from "../components/Dashboard"; import React from "react"; export const metadata = { title: "Voice RSS Summary", description: "RSSフィードから自動生成された音声ポッドキャストをご紹介します。", }; export default function Home() { const [activeTab, setActiveTab] = useState< "dashboard" | "episodes" | "feeds" >("dashboard"); return (
{/* Header */}

Voice RSS Summary

AI音声ポッドキャスト自動生成システム

システム稼働中
{/* Navigation */} {/* Main Content */}
{activeTab === "dashboard" && (
)} {activeTab === "episodes" && (

エピソード管理

ポッドキャストエピソードの再生と管理

)} {activeTab === "feeds" && (

フィード管理

RSSフィードの追加と管理

)}
{/* Footer */}
); }