diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 65e3675..6561257 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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, )} >
{children} diff --git a/src/components/Logo.tsx b/src/components/Logo.tsx index 10f91bd..a437e80 100644 --- a/src/components/Logo.tsx +++ b/src/components/Logo.tsx @@ -1,32 +1,45 @@ export function Logo(props: React.ComponentPropsWithoutRef<'svg'>) { return ( - + ) } diff --git a/src/styles/tailwind.css b/src/styles/tailwind.css index b1087d4..2942ef1 100644 --- a/src/styles/tailwind.css +++ b/src/styles/tailwind.css @@ -34,7 +34,7 @@ --radius-4xl: 2rem; --font-sans: var(--font-inter); - --font-display: var(--font-lexend); + --font-display: "Helvetica Neue", Helvetica, Arial, sans-serif; --container-2xl: 40rem; }