-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Modify metadata title and description
- Loading branch information
Showing
1 changed file
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
); | ||
) | ||
} |