16 lines
433 B
TypeScript
16 lines
433 B
TypeScript
import { Comfortaa, Inter } from 'next/font/google';
|
|
|
|
export const comfortaa = Comfortaa({
|
|
weight: ['300', '400', '500', '600', '700'],
|
|
subsets: ['latin', 'cyrillic'],
|
|
variable: '--font-comfortaa',
|
|
display: 'swap',
|
|
});
|
|
|
|
export const inter = Inter({
|
|
weight: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
subsets: ['latin', 'cyrillic'],
|
|
variable: '--font-inter',
|
|
display: 'swap',
|
|
});
|