frontend client for gemstone. decentralised workplace app
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: import all variants of our base font

serenity 7d6d5c9b 6c32c78b

+20 -1
+20 -1
src/app/_layout.tsx
··· 1 1 import { Stack } from "@/components/primitives/Stack"; 2 2 import { isDevMode } from "@/lib/utils/env"; 3 3 import { RootProviders } from "@/providers"; 4 - import { Lexend_300Light, useFonts } from "@expo-google-fonts/lexend"; 4 + import { 5 + Lexend_100Thin, 6 + Lexend_200ExtraLight, 7 + Lexend_300Light, 8 + Lexend_400Regular, 9 + Lexend_500Medium, 10 + Lexend_600SemiBold, 11 + Lexend_700Bold, 12 + Lexend_800ExtraBold, 13 + Lexend_900Black, 14 + useFonts, 15 + } from "@expo-google-fonts/lexend"; 5 16 import { SplashScreen } from "expo-router"; 6 17 import { useEffect } from "react"; 7 18 import { Platform } from "react-native"; 8 19 9 20 export default function RootLayout() { 10 21 const [loaded, error] = useFonts({ 22 + Lexend_100Thin, 23 + Lexend_200ExtraLight, 11 24 Lexend_300Light, 25 + Lexend_400Regular, 26 + Lexend_500Medium, 27 + Lexend_600SemiBold, 28 + Lexend_700Bold, 29 + Lexend_800ExtraBold, 30 + Lexend_900Black, 12 31 }); 13 32 14 33 useEffect(() => {