From 6cb4b9c4abc032e124ba0fafee6df5fbd3a3a197 Mon Sep 17 00:00:00 2001 From: StephDietz Date: Thu, 26 Oct 2023 09:14:37 -0700 Subject: [PATCH] chapter 3 --- dashboard/starter-example/app/page.tsx | 5 +---- dashboard/starter-example/app/ui/fonts.ts | 8 -------- 2 files changed, 1 insertion(+), 12 deletions(-) delete mode 100644 dashboard/starter-example/app/ui/fonts.ts diff --git a/dashboard/starter-example/app/page.tsx b/dashboard/starter-example/app/page.tsx index 0a66ab3..4aab0a2 100644 --- a/dashboard/starter-example/app/page.tsx +++ b/dashboard/starter-example/app/page.tsx @@ -1,5 +1,4 @@ import AcmeLogo from '@/app/ui/acme-logo'; -import { lusitana } from '@/app/ui/fonts'; import Link from 'next/link'; export default function Page() { return ( @@ -9,9 +8,7 @@ export default function Page() {
-

+

Welcome to Acme. This is the example for the{' '} Next.js Learn Course diff --git a/dashboard/starter-example/app/ui/fonts.ts b/dashboard/starter-example/app/ui/fonts.ts deleted file mode 100644 index fe29327..0000000 --- a/dashboard/starter-example/app/ui/fonts.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { Inter, Lusitana } from 'next/font/google'; - -export const inter = Inter({ subsets: ['latin'] }); - -export const lusitana = Lusitana({ - weight: ['400', '700'], - subsets: ['latin'], -});