Spaces:
Running
Running
File size: 2,508 Bytes
9cd6ddb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
import {
Montserrat,
Cousine,
Roboto,
Lato,
Oswald,
Kanit,
Fugaz_One,
Roboto_Slab,
Libre_Baskerville,
Bree_Serif,
Pacifico,
Permanent_Marker,
Yellowtail,
Scheherazade_New,
} from "next/font/google";
const montserrat = Montserrat({
subsets: ["latin"],
weight: ["400", "700"],
});
const cousine = Cousine({
subsets: ["latin"],
weight: ["400", "700"],
});
const roboto = Roboto({
subsets: ["latin"],
weight: ["400", "700", "100", "300", "500", "900"],
});
const lato = Lato({
subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
const oswald = Oswald({
subsets: ["latin"],
weight: ["200", "300", "400", "500", "600", "700"],
});
const kanit = Kanit({
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const fugaz_one = Fugaz_One({
subsets: ["latin"],
weight: ["400"],
});
const roboto_slab = Roboto_Slab({
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const libre_baskerville = Libre_Baskerville({
subsets: ["latin"],
weight: ["400", "700"],
});
const bree_serif = Bree_Serif({
subsets: ["latin"],
weight: ["400"],
});
const pacifico = Pacifico({
subsets: ["latin"],
weight: ["400"],
});
const permanent_marker = Permanent_Marker({
subsets: ["latin"],
weight: ["400"],
});
const yellowtail = Yellowtail({
subsets: ["latin"],
weight: ["400"],
});
const scheherazade_new = Scheherazade_New({
subsets: ["latin"],
weight: ["400", "700"],
});
export const FONT_FAMILY = [
{
label: "Montserrat",
value: montserrat.className,
},
{
label: "Cousine",
value: cousine.className,
},
{
label: "Roboto",
value: roboto.className,
},
{
label: "Lato",
value: lato.className,
},
{
label: "Oswald",
value: oswald.className,
},
{
label: "Kanit",
value: kanit.className,
},
{
label: "Fugaz One",
value: fugaz_one.className,
},
{
label: "Roboto Slab",
value: roboto_slab.className,
},
{
label: "Libre Baskerville",
value: libre_baskerville.className,
},
{
label: "Bree Serif",
value: bree_serif.className,
},
{
label: "Pacifico",
value: pacifico.className,
},
{
label: "Permanent Marker",
value: permanent_marker.className,
},
{
label: "Yellowtail",
value: yellowtail.className,
},
{
label: "Scheherazade New",
value: scheherazade_new.className,
},
];
|