Skip to content

Commit

Permalink
feat: professor layout
Browse files Browse the repository at this point in the history
  • Loading branch information
SunwooJaeho committed Dec 22, 2024
1 parent b3d939e commit e2d6f62
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
13 changes: 13 additions & 0 deletions apps/community/src/app/member/professor/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import type { Metadata } from 'next';

export const metadata: Metadata = {
title: '교수진 소개 - 경기대학교 AI컴퓨터공학부',
description: '경기대학교 소프트웨어경영대학 AI컴퓨터공학부 공식 홈페이지',
};
export default function ProfessorLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return children;
}
5 changes: 0 additions & 5 deletions apps/community/src/app/member/professor/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import { getQueryClient } from '~/utils/get-query-client';
import { ProfessorList } from '~/components/member/professor/professor-list';
import { PageHeader } from '~/components/page-header';

export const metadata: Metadata = {
title: '교수진 소개 - 경기대학교 AI컴퓨터공학부',
description: '경기대학교 소프트웨어경영대학 AI컴퓨터공학부 공식 홈페이지',
};

export default async function ProfessorPage() {
const queryClient = getQueryClient();

Expand Down

0 comments on commit e2d6f62

Please sign in to comment.