-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.tsx
More file actions
53 lines (48 loc) · 1.35 KB
/
layout.tsx
File metadata and controls
53 lines (48 loc) · 1.35 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import type { Metadata } from "next";
import { Manrope, Inter } from "next/font/google";
import { Geist_Mono } from "next/font/google";
import "./globals.css";
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
weight: ["200", "400", "700", "800"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
weight: ["400", "700"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Molgorithm — 연세대학교 알고리즘 학회",
description:
"연세대학교 알고리즘 학회 모르고리즘입니다. 문제 해결, 팀 연습, 대회 참가를 통해 함께 성장합니다.",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="ko">
<head>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,[email protected],0..1&display=swap"
/>
</head>
<body
className={`${manrope.variable} ${inter.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
</html>
);
}