feat: move metadata to page.tsx
This commit is contained in:
@ -3,11 +3,6 @@
|
||||
import React from "react";
|
||||
import "./globals.css";
|
||||
|
||||
export const metadata = {
|
||||
title: "ポッドキャスト管理画面",
|
||||
description: "RSSフィードから自動生成されたポッドキャストを管理",
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: {
|
||||
|
@ -2,6 +2,11 @@ import React from "react";
|
||||
import FeedList from "../components/FeedList";
|
||||
import EpisodePlayer from "../components/EpisodePlayer";
|
||||
|
||||
export const metadata = {
|
||||
title: "ポッドキャスト管理画面",
|
||||
description: "RSSフィードから自動生成されたポッドキャストを管理",
|
||||
};
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<div className="space-y-8">
|
||||
|
Reference in New Issue
Block a user