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