Skip to content

Commit

Permalink
feat(client): metatag 추가하여 seo 최적화
Browse files Browse the repository at this point in the history
  • Loading branch information
lsj0202 committed Sep 24, 2024
1 parent c426620 commit ee7d6bf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/client/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ import Providers from '@/providers/Providers';
import '@/styles/globals.css';
import { PropsWithChildren } from 'react';

export const metadata = { title: '쪼잉' };
export const metadata = {
title: '쪼잉',
description: '쪼잉을 이용하여 프로젝트를 진행해보세요!',
};

const RootLayout = ({ children }: PropsWithChildren) => {
return (
Expand Down

0 comments on commit ee7d6bf

Please sign in to comment.