Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨feat: update metadata #86

Merged
merged 1 commit into from
Jan 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,21 +1,24 @@
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({

Check warning on line 15 in app/layout.tsx

View workflow job for this annotation

GitHub Actions / quality

Avoid default exports.
children,
}: {
children: React.ReactNode

Check warning on line 18 in app/layout.tsx

View workflow job for this annotation

GitHub Actions / quality

The React variable is undeclared
}) {
return (
<html lang="en">
<html lang="ja">
<body className={inter.className}>{children}</body>
</html>
)
Expand Down
Loading