-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_app.tsx
31 lines (29 loc) · 1.11 KB
/
_app.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import Head from 'next/head'
import type { AppProps } from 'next/app'
import { Layout } from '@/components/App/Layout'
import '@/styles/Config.css'
const MyApp = ({ Component, pageProps }: AppProps) => {
return(
<>
<Head>
<link rel='icon' href="@/icons/favicon.ico" />
<title>2023 한국항공대학교 프로그래밍 경진대회</title>
<meta name="title" property="og:title" content="제3회 한국항공대학교 프로그래밍 경진대회" />
<meta
name="description"
property="og:description"
content="프로그래밍에 관심이 있다면, 지금 바로 도전해보세요."
/>
<meta
name="image"
property="og:image"
content="https://user-images.githubusercontent.com/106497893/253192848-96715c63-fba4-472c-bb93-5d8d9c939c85.png"
/>
</Head>
<Layout>
<Component {...pageProps} />
</Layout>
</>
)
}
export default MyApp