Skip to content

Commit

Permalink
fix: Modify metadata title and description
Browse files Browse the repository at this point in the history
  • Loading branch information
paulcjy committed Aug 30, 2024
1 parent ba3e07c commit c0014c5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
import type { Metadata } from "next";
import "./globals.css";
import type { Metadata } from 'next'
import './globals.css'

export const metadata: Metadata = {
title: "2024 여름수련회 성경읽기",
description: "주내힘교회 청소년부 2024 여름수련회 성경읽기표",
metadataBase: new URL('https://paulcjy.github.io/')
};
title: '주내힘교회 청소년부',
description: '주내힘교회 청소년부 2024 성경읽기표',
metadataBase: new URL('https://paulcjy.github.io/'),
}

export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
children: React.ReactNode
}>) {
return (
<html>
<body>{children}</body>
</html>
);
)
}

0 comments on commit c0014c5

Please sign in to comment.