Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
fix: remove font
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidRouyer committed Sep 5, 2023
1 parent 8aac588 commit a5a54f7
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions apps/customer-service/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import { headers } from 'next/headers';

import { TRPCReactProvider } from './providers';
Expand All @@ -9,12 +8,6 @@ import '~/styles/globals.css';
import getIntl from '~/app/i18n/server';
import ServerIntlProvider from '~/app/i18n/ServerIntlProvider';

const fontSans = Inter({
subsets: ['latin'],
weight: ['400', '700'],
variable: '--font-sans',
});

export const metadata: Metadata = {
title: 'Customer Service',
description: 'Prototyping a Customer Service Software',
Expand All @@ -35,7 +28,7 @@ export default async function RootLayout({

return (
<html lang={intl.locale} className="h-full">
<body className={['font-sans', 'h-full', fontSans.variable].join(' ')}>
<body className={['font-sans', 'h-full'].join(' ')}>
<ServerIntlProvider
intl={{ messages: intl.messages, locale: intl.locale }}
>
Expand Down

0 comments on commit a5a54f7

Please sign in to comment.