├── .expo-shared └── assets.json ├── .github ├── dashboard.png └── home.png ├── .gitignore ├── App.tsx ├── LICENSE ├── README.md ├── app.json ├── assets ├── favicon.png ├── icon.png └── splash.png ├── babel.config.js ├── package.json ├── src ├── @types │ └── index.d.ts ├── components │ ├── Header │ │ ├── index.tsx │ │ └── styles.ts │ └── PageHeader │ │ ├── index.tsx │ │ └── styles.ts ├── images │ ├── beer.json │ ├── beer.png │ ├── beer@2x.png │ ├── beer@3x.png │ ├── filter.png │ ├── landing.png │ ├── landing@2x.png │ ├── landing@3x.png │ ├── loading.json │ └── map-location.json ├── pages │ ├── BeerDetails │ │ ├── index.tsx │ │ └── styles.ts │ ├── BeerList │ │ ├── index.tsx │ │ └── styles.ts │ ├── BeerMap │ │ ├── index.tsx │ │ └── styles.ts │ └── Landing │ │ ├── index.tsx │ │ └── styles.ts ├── routes │ └── index.tsx ├── services │ └── api.ts └── utils │ └── map-dark-mode.ts ├── tsconfig.json └── yarn.lock /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.github/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/.github/dashboard.png -------------------------------------------------------------------------------- /.github/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/.github/home.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/.gitignore -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/App.tsx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/app.json -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/package.json -------------------------------------------------------------------------------- /src/@types/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module "*.png" -------------------------------------------------------------------------------- /src/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/components/Header/index.tsx -------------------------------------------------------------------------------- /src/components/Header/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/components/Header/styles.ts -------------------------------------------------------------------------------- /src/components/PageHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/components/PageHeader/index.tsx -------------------------------------------------------------------------------- /src/components/PageHeader/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/components/PageHeader/styles.ts -------------------------------------------------------------------------------- /src/images/beer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/images/beer.json -------------------------------------------------------------------------------- /src/images/beer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/images/beer.png -------------------------------------------------------------------------------- /src/images/beer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/images/beer@2x.png -------------------------------------------------------------------------------- /src/images/beer@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/images/beer@3x.png -------------------------------------------------------------------------------- /src/images/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/images/filter.png -------------------------------------------------------------------------------- /src/images/landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/images/landing.png -------------------------------------------------------------------------------- /src/images/landing@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/images/landing@2x.png -------------------------------------------------------------------------------- /src/images/landing@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/images/landing@3x.png -------------------------------------------------------------------------------- /src/images/loading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/images/loading.json -------------------------------------------------------------------------------- /src/images/map-location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/images/map-location.json -------------------------------------------------------------------------------- /src/pages/BeerDetails/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/pages/BeerDetails/index.tsx -------------------------------------------------------------------------------- /src/pages/BeerDetails/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/pages/BeerDetails/styles.ts -------------------------------------------------------------------------------- /src/pages/BeerList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/pages/BeerList/index.tsx -------------------------------------------------------------------------------- /src/pages/BeerList/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/pages/BeerList/styles.ts -------------------------------------------------------------------------------- /src/pages/BeerMap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/pages/BeerMap/index.tsx -------------------------------------------------------------------------------- /src/pages/BeerMap/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/pages/BeerMap/styles.ts -------------------------------------------------------------------------------- /src/pages/Landing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/pages/Landing/index.tsx -------------------------------------------------------------------------------- /src/pages/Landing/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/pages/Landing/styles.ts -------------------------------------------------------------------------------- /src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/routes/index.tsx -------------------------------------------------------------------------------- /src/services/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/services/api.ts -------------------------------------------------------------------------------- /src/utils/map-dark-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/src/utils/map-dark-mode.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luccaroli/happy-hours/HEAD/yarn.lock --------------------------------------------------------------------------------