mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-26 22:26:10 +00:00
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'],
|
|
});
|