From 9ec97c3a4d27579f61a3444408938756e37e4beb Mon Sep 17 00:00:00 2001 From: Marukome0743 Date: Wed, 24 Jan 2024 10:52:55 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8feat:=20update=20metadata?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/layout.tsx | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index 40e027f..210592d 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,12 +1,15 @@ import type { Metadata } from 'next' -import { Inter } from 'next/font/google' +import { Sawarabi_Gothic } from 'next/font/google' import './globals.css' -const inter = Inter({ subsets: ['latin'] }) +const inter = Sawarabi_Gothic({ + subsets: ['latin'], + weight: '400', +}) export const metadata: Metadata = { - title: 'Create Next App', - description: 'Generated by create next app', + title: 'OpenUp ラボ滝沢', + description: '地域に寄り添った社会課題解決コミュニティ', } export default function RootLayout({ @@ -15,7 +18,7 @@ export default function RootLayout({ children: React.ReactNode }) { return ( - + {children} )