Files
jaejadle/nextjs/app/(subpages)/(news)/announcements/layout.tsx
Mayne0213 f78454c2a1
Some checks failed
Build Docker Image / build-and-push (push) Has been cancelled
CI / lint-and-build (push) Has been cancelled
CHORE(merge): merge from develop
- Initial setup and all features from develop branch
- Includes: auth, deploy, docker, style fixes
- K3S deployment configuration
2026-01-06 17:29:16 +09:00

20 lines
521 B
TypeScript

import { Metadata } from 'next';
export const metadata: Metadata = {
title: '주보',
description: '제자들교회의 주보와 공지사항을 확인하실 수 있습니다. 교회의 소식과 일정을 안내해드립니다.',
openGraph: {
title: '주보 | 제자들교회',
description: '제자들교회의 주보와 공지사항을 확인하실 수 있습니다.',
},
};
export default function AnnouncementsLayout({
children,
}: {
children: React.ReactNode;
}) {
return <>{children}</>;
}