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'], -});