Skip to content

Commit

Permalink
fix: remove unnecessary export
Browse files Browse the repository at this point in the history
  • Loading branch information
fivestar committed Jun 29, 2024
1 parent 09a98fc commit 08833df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,19 @@ export const metadata: Metadata = {
}),
};

export const ubuntu = Ubuntu({
const ubuntu = Ubuntu({
weight: ['400', '500', '700'],
subsets: ['latin'],
variable: '--font-ubuntu',
});

export const notoSansDisplay = Noto_Sans_Display({
const notoSansDisplay = Noto_Sans_Display({
weight: ['400', '600', '700'],
subsets: ['latin'],
variable: '--font-noto-sans-display',
});

export const GTM_ID = process.env.NEXT_PUBLIC_GTM_ID;
const GTM_ID = process.env.NEXT_PUBLIC_GTM_ID;

export default function RootLayout({
children,
Expand Down

0 comments on commit 08833df

Please sign in to comment.