Skip to content

Commit

Permalink
Merge pull request #60 from kei-s16/feature/change-font
Browse files Browse the repository at this point in the history
慣れてるフォントに変える
  • Loading branch information
kei-s16 authored Nov 13, 2024
2 parents 7a23d5e + 30e7b40 commit 31ede60
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { Zen_Kurenaido } from "next/font/google";
import { M_PLUS_Rounded_1c } from "next/font/google";
import Link from "next/link";
import { Suspense } from "react";
import "styles/globals.css";
import "styles/style.css";

const zenKurenaido = Zen_Kurenaido({
const font = M_PLUS_Rounded_1c({
subsets: ["latin"],
weight: "400",
style: "normal",
Expand All @@ -20,7 +20,7 @@ export default async function RootLayout({
children: React.ReactNode;
}) {
return (
<html lang="ja" className={zenKurenaido.className}>
<html lang="ja" className={font.className}>
<head>
<meta name="viewport" content="initial-scale=1, width=device-width" />
<script
Expand Down

0 comments on commit 31ede60

Please sign in to comment.