Update .gitignore and remove cached build artifacts
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
import { type Metadata } from 'next'
|
||||
import { Inter } from 'next/font/google'
|
||||
import { Mulish } from 'next/font/google'
|
||||
import clsx from 'clsx'
|
||||
|
||||
import '@/styles/tailwind.css'
|
||||
|
||||
const inter = Inter({
|
||||
const mulish = Mulish({
|
||||
subsets: ['latin'],
|
||||
display: 'swap',
|
||||
variable: '--font-inter',
|
||||
variable: '--font-mulish',
|
||||
})
|
||||
|
||||
export const metadata: Metadata = {
|
||||
@@ -25,7 +25,7 @@ export default function RootLayout({
|
||||
children: React.ReactNode
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" className={clsx('bg-gray-50 antialiased', inter.variable)}>
|
||||
<html lang="en" className={clsx('bg-white antialiased', mulish.variable)}>
|
||||
<body>{children}</body>
|
||||
</html>
|
||||
)
|
||||
|
Reference in New Issue
Block a user