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

[FEATURE] Initial Setup #1

Merged
merged 15 commits into from
Jul 15, 2023
Prev Previous commit
Next Next commit
config font
  • Loading branch information
augustosardinha committed Jul 15, 2023
commit 25ac4eb3a1ffc8f668833b01075b611f9f7fc005
28 changes: 14 additions & 14 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
import './globals.css'
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import { Gothic_A1 } from 'next/font/google'

const inter = Inter({ subsets: ['latin'] })
const gothic = Gothic_A1({
weight: ['300', '400', '600'],
subsets: ['latin']
})

export const metadata: Metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
title: 'Athen',
description:
'Athen Labs, a Brazilian software house specialized in developing modern technological solutions'
}

export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
)
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body className={gothic.className}>{children}</body>
</html>
)
}