Files
next-learn/dashboard/15-final/app/ui/fonts.ts
Delba de Oliveira 1180db9b88 Add landing page (#187)
* Re-organize

* Add images

* Delete background-blur.tsx

* Create acme-logo.tsx

* Create fonts.ts

* Update page.tsx

* Update page.tsx

* Use 4x image

* Update page.tsx

---------

Co-authored-by: Stephanie Dietz <49788645+StephDietz@users.noreply.github.com>
2023-10-03 09:17:46 -05:00

9 lines
193 B
TypeScript

import { Inter, Lusitana } from 'next/font/google';
export const inter = Inter({ subsets: ['latin'] });
export const lusitana = Lusitana({
weight: ['400', '700'],
subsets: ['latin'],
});