Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | 11x | import appLogo from '@assets/bootsplash/logo.png';
import coffeeMascot from '@assets/images/coffee-mascot.png';
import heartMascot from '@assets/images/heart-mascot.png';
import homeMascotCoffee from '@assets/images/home-mascot-coffee.png';
import homeMascotPatin from '@assets/images/home-mascot-patin.png';
import homeMascotRelax from '@assets/images/home-mascot-relax.png';
import lazyMascot from '@assets/images/lazy-mascot.png';
import profileMascotCoffee from '@assets/images/profile-mascot-coffee.png';
import sleepingMascot from '@assets/images/sleeping-mascot.png';
import resolveAnimation from '@assets/resolve.json';
import signinAnimation from '@assets/sign-in.json';
import splashAnimation from '@assets/splash.json';
export const ASSETS = {
IMAGES: {
HOME: {
PATIN: homeMascotPatin,
COFFEE: homeMascotCoffee,
RELAX: homeMascotRelax,
},
PROFILE: {
COFFEE: profileMascotCoffee,
RELAX: lazyMascot,
},
COFFEE_MASCOT: coffeeMascot,
SLEEPING_MASCOT: sleepingMascot,
HEART_MASCOT: heartMascot,
APP_LOGO: appLogo,
},
ANIMATIONS: {
SIGNIN: signinAnimation,
SPLASH: splashAnimation,
RESOLVE: resolveAnimation,
},
} as const;
|