chore: add mobile app

This commit is contained in:
2026-02-07 22:33:02 +01:00
parent db34640acc
commit e89384ad4e
29327 changed files with 3886944 additions and 12 deletions
+24
View File
@@ -0,0 +1,24 @@
import { Platform } from 'react-native';
export const fontFamily = Platform.select({
ios: 'System',
android: 'Roboto',
default: 'System',
});
export const fontSize = {
xs: 11,
sm: 13,
md: 15,
lg: 17,
xl: 20,
xxl: 28,
title: 34,
} as const;
export const fontWeight = {
regular: '400' as const,
medium: '500' as const,
semibold: '600' as const,
bold: '700' as const,
};