Skip to content

Commit

Permalink
japaneseをlatinに
Browse files Browse the repository at this point in the history
  • Loading branch information
shigekk committed Apr 5, 2024
1 parent 0b2df5d commit 36669b9
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
import type { Metadata } from 'next';
import { Inter, GoogleFont } from 'next/font/google';
import { Inter, Noto_Sans_JP } from 'next/font/google';
import './global.css';
import { Header } from '../components/Header/Header';

const inter = Inter({ subsets: ['latin'] });

const notoSansJP = GoogleFont({
name: 'Noto Sans JP',
subsets: ['japanese'],
});
const notoSansJP = Noto_Sans_JP({ subsets: ['latin'] });

export const metadata: Metadata = {
title: {
Expand Down

0 comments on commit 36669b9

Please sign in to comment.