add avenirr
This commit is contained in:
		@@ -1,5 +1,5 @@
 | 
			
		||||
import { type Metadata } from 'next'
 | 
			
		||||
import { Inter, Lexend } from 'next/font/google'
 | 
			
		||||
import { Inter } from 'next/font/google'
 | 
			
		||||
import clsx from 'clsx'
 | 
			
		||||
 | 
			
		||||
import '@/styles/tailwind.css'
 | 
			
		||||
@@ -10,7 +10,7 @@ export const metadata: Metadata = {
 | 
			
		||||
    default: 'OurWorld - Accounting made simple for small businesses',
 | 
			
		||||
  },
 | 
			
		||||
  description:
 | 
			
		||||
    'Most bookkeeping software is accurate, but hard to use. We make the opposite trade-off, and hope you don’t get audited.',
 | 
			
		||||
    'Most bookkeeping software is accurate, but hard to use. We make the opposite trade-off, and hope you don\'t get audited.',
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
const inter = Inter({
 | 
			
		||||
@@ -19,12 +19,6 @@ const inter = Inter({
 | 
			
		||||
  variable: '--font-inter',
 | 
			
		||||
})
 | 
			
		||||
 | 
			
		||||
const lexend = Lexend({
 | 
			
		||||
  subsets: ['latin'],
 | 
			
		||||
  display: 'swap',
 | 
			
		||||
  variable: '--font-lexend',
 | 
			
		||||
})
 | 
			
		||||
 | 
			
		||||
export default function RootLayout({
 | 
			
		||||
  children,
 | 
			
		||||
}: {
 | 
			
		||||
@@ -36,7 +30,6 @@ export default function RootLayout({
 | 
			
		||||
      className={clsx(
 | 
			
		||||
        'h-full scroll-smooth bg-white antialiased',
 | 
			
		||||
        inter.variable,
 | 
			
		||||
        lexend.variable,
 | 
			
		||||
      )}
 | 
			
		||||
    >
 | 
			
		||||
      <body className="flex h-full flex-col">{children}</body>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user