mirror of
https://github.com/BradNut/nextjs-dashboard
synced 2025-09-08 17:40:30 +00:00
8 lines
No EOL
191 B
TypeScript
8 lines
No EOL
191 B
TypeScript
import { Inter, Lusitana } from 'next/font/google';
|
|
|
|
export const inter = Inter({ subsets: ['latin'] });
|
|
|
|
export const lusitana = Lusitana({
|
|
weight: [ '400', '700' ],
|
|
subsets: ['latin'],
|
|
}) |