mirror of
https://github.com/vercel/next-learn.git
synced 2026-07-08 06:28:41 +00:00
* 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>
9 lines
193 B
TypeScript
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'],
|
|
});
|