├── .env ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── config ├── env.js ├── jest │ ├── cssTransform.js │ └── fileTransform.js ├── paths.js ├── polyfills.js ├── webpack.config.dev.js ├── webpack.config.prod.js └── webpackDevServer.config.js ├── cors.json ├── explore ├── firebase.json ├── firestore.indexes.json ├── firestore.rules ├── functions ├── .babelrc ├── .eslintrc.json ├── .gitignore ├── index.html ├── index.js ├── package.json └── utils │ ├── constants.js │ ├── rss.js │ └── utils.js ├── package.json ├── public ├── 404.html ├── amp │ ├── car_ad_a.html │ ├── car_ad_b.html │ └── images │ │ ├── .DS_Store │ │ ├── car_a.jpeg │ │ ├── car_b.jpeg │ │ ├── carol_marshall.jpg │ │ ├── justin_shaifer.jpeg │ │ ├── ss1.png │ │ ├── ss2.png │ │ ├── ss3.png │ │ └── vintage.jpg ├── images │ ├── compass.svg │ ├── default-avatar.png │ ├── desktop_item_view.gif │ ├── desktop_search.gif │ ├── icons │ │ ├── android-icon-144x144.png │ │ ├── android-icon-192x192.png │ │ ├── android-icon-36x36.png │ │ ├── android-icon-48x48.png │ │ ├── android-icon-512x512.png │ │ ├── android-icon-72x72.png │ │ ├── android-icon-96x96.png │ │ ├── apple-icon-114x114.png │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-144x144.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-180x180.png │ │ ├── apple-icon-57x57.png │ │ ├── apple-icon-60x60.png │ │ ├── apple-icon-72x72.png │ │ ├── apple-icon-76x76.png │ │ ├── apple-icon-precomposed.png │ │ ├── apple-icon.png │ │ ├── browserconfig.xml │ │ ├── facebook.svg │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── favicon.ico │ │ ├── manifest.json │ │ ├── ms-icon-144x144.png │ │ ├── ms-icon-150x150.png │ │ ├── ms-icon-310x310.png │ │ ├── ms-icon-70x70.png │ │ └── search.svg │ ├── location.svg │ ├── mobile_create_post.png │ ├── mobile_explore.png │ ├── mobile_item.png │ ├── mobile_item_view.gif │ ├── mobile_landing.png │ ├── mobile_profile.png │ ├── nearo_item.jpg │ ├── open-box.png │ ├── splash │ │ ├── launch-1125x2436.png │ │ ├── launch-1242x2148.png │ │ ├── launch-1536x2048.png │ │ ├── launch-1668x2224.png │ │ ├── launch-2048x2732.png │ │ ├── launch-640x1136.png │ │ └── launch-750x1294.png │ ├── sprites.svg │ └── user.svg ├── index.html ├── manifest.json ├── powered_by_google_default.png ├── robots.txt └── sitemap.xml ├── scripts ├── build.js ├── start.js └── test.js ├── sitemap.xml ├── src ├── App.css ├── App.js ├── App.test.js ├── components │ ├── commons │ │ ├── categories.js │ │ ├── dbfunctions.js │ │ ├── firebase │ │ │ ├── algolia.js │ │ │ ├── firebase.js │ │ │ └── newaccount.js │ │ ├── geocoder │ │ │ └── geocoder.js │ │ ├── utils.js │ │ └── utils.test.js │ ├── desktop │ │ ├── explorer │ │ │ └── Explorer.js │ │ ├── home │ │ │ ├── Card.js │ │ │ ├── Categories.js │ │ │ ├── Gallery.css │ │ │ ├── Gallery.js │ │ │ ├── Home.js │ │ │ └── MainCategories.js │ │ ├── map │ │ │ ├── GoogleMap.js │ │ │ └── Marker.js │ │ ├── postcard │ │ │ ├── PlaceHolder.js │ │ │ ├── PostCard.js │ │ │ └── PostImage.js │ │ ├── postview │ │ │ ├── PlaceHolder.js │ │ │ ├── PostContent.js │ │ │ ├── PostView.js │ │ │ ├── PostViewStyles.js │ │ │ └── overwrite.css │ │ ├── subbar │ │ │ ├── SubBar.js │ │ │ └── SubBarStyles.js │ │ └── topnav │ │ │ ├── ProfileMenu.js │ │ │ ├── TopNav.js │ │ │ └── TopnavStyles.js │ ├── mobile │ │ ├── categories │ │ │ └── Categories.js │ │ ├── drawer │ │ │ └── Drawer.js │ │ ├── favlist │ │ │ └── FavList.js │ │ ├── location │ │ │ └── Location.js │ │ ├── postcard │ │ │ ├── Caption.js │ │ │ ├── PlaceHolder.js │ │ │ ├── PostCard.js │ │ │ └── PostImage.js │ │ ├── postlist │ │ │ └── PostList.js │ │ ├── postview │ │ │ ├── Author.js │ │ │ ├── Media.js │ │ │ ├── PlaceHolder.js │ │ │ ├── PostDetails.js │ │ │ ├── PostView.js │ │ │ ├── PostViewStyles.js │ │ │ └── overwrite.css │ │ ├── profilemenu │ │ │ ├── ProfileMenu.js │ │ │ └── styles.js │ │ ├── searchbar │ │ │ ├── SearchBar.js │ │ │ └── styles.js │ │ ├── staffpick │ │ │ └── StaffPick.js │ │ ├── subnav │ │ │ └── SubNav.js │ │ ├── topnav │ │ │ └── TopNav.js │ │ └── welcomebanner │ │ │ └── WelcomeBanner.js │ └── shared │ │ ├── 404.js │ │ ├── About.js │ │ ├── gobackpage │ │ └── GoBackPage.js │ │ ├── locator │ │ ├── Locator.js │ │ ├── LocatorMini.js │ │ ├── LocatorStyles.js │ │ └── SearchInput.js │ │ ├── login │ │ └── Login.js │ │ ├── map │ │ └── MapCard.js │ │ ├── notifications │ │ ├── LoginNotification.js │ │ ├── Notifier.js │ │ └── SimpleNotification.js │ │ ├── postactions │ │ ├── MoreButton.js │ │ ├── PostActions.js │ │ ├── PostCardStyles.js │ │ └── ShareButton.js │ │ ├── postpanel │ │ ├── PostPanel.js │ │ ├── PostPanelStyles.js │ │ └── UploaderButton.js │ │ ├── profile │ │ ├── AvatarUpdater.js │ │ ├── PhoneInput.js │ │ └── Profile.js │ │ ├── profilecard │ │ └── ProfileCard.js │ │ └── viewer360 │ │ └── Viewer360.js ├── index.css ├── index.js ├── privacy_policy.js ├── registerServiceWorker.js ├── screens │ ├── ScreenSwitch.js │ ├── desktop │ │ ├── about.page.js │ │ ├── desktop.js │ │ ├── login.page.js │ │ ├── post.page.js │ │ └── profile.page.js │ └── mobile │ │ ├── about.page.js │ │ ├── explore.page.js │ │ ├── favorites.page.js │ │ ├── home.page.js │ │ ├── location.page.js │ │ ├── login.page.js │ │ ├── mobile.js │ │ ├── nothing.page.js │ │ ├── post.page.js │ │ └── profile.page.js ├── shared │ └── styles │ │ └── styles.js ├── stores │ ├── app.js │ ├── bookmarks.js │ ├── navigation.js │ ├── notifications.js │ ├── posts.js │ └── users.js └── terms_and_conditions.js └── storage.rules /.env: -------------------------------------------------------------------------------- 1 | NODE_PATH=src 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | github: [psanders] 3 | 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/README.md -------------------------------------------------------------------------------- /config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/config/env.js -------------------------------------------------------------------------------- /config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/config/jest/cssTransform.js -------------------------------------------------------------------------------- /config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/config/jest/fileTransform.js -------------------------------------------------------------------------------- /config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/config/paths.js -------------------------------------------------------------------------------- /config/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/config/polyfills.js -------------------------------------------------------------------------------- /config/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/config/webpack.config.dev.js -------------------------------------------------------------------------------- /config/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/config/webpack.config.prod.js -------------------------------------------------------------------------------- /config/webpackDevServer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/config/webpackDevServer.config.js -------------------------------------------------------------------------------- /cors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/cors.json -------------------------------------------------------------------------------- /explore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/explore -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/firebase.json -------------------------------------------------------------------------------- /firestore.indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/firestore.indexes.json -------------------------------------------------------------------------------- /firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/firestore.rules -------------------------------------------------------------------------------- /functions/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/functions/.babelrc -------------------------------------------------------------------------------- /functions/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/functions/.eslintrc.json -------------------------------------------------------------------------------- /functions/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/functions/index.html -------------------------------------------------------------------------------- /functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/functions/index.js -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/functions/package.json -------------------------------------------------------------------------------- /functions/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/functions/utils/constants.js -------------------------------------------------------------------------------- /functions/utils/rss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/functions/utils/rss.js -------------------------------------------------------------------------------- /functions/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/functions/utils/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/404.html -------------------------------------------------------------------------------- /public/amp/car_ad_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/amp/car_ad_a.html -------------------------------------------------------------------------------- /public/amp/car_ad_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/amp/car_ad_b.html -------------------------------------------------------------------------------- /public/amp/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/amp/images/.DS_Store -------------------------------------------------------------------------------- /public/amp/images/car_a.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/amp/images/car_a.jpeg -------------------------------------------------------------------------------- /public/amp/images/car_b.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/amp/images/car_b.jpeg -------------------------------------------------------------------------------- /public/amp/images/carol_marshall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/amp/images/carol_marshall.jpg -------------------------------------------------------------------------------- /public/amp/images/justin_shaifer.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/amp/images/justin_shaifer.jpeg -------------------------------------------------------------------------------- /public/amp/images/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/amp/images/ss1.png -------------------------------------------------------------------------------- /public/amp/images/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/amp/images/ss2.png -------------------------------------------------------------------------------- /public/amp/images/ss3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/amp/images/ss3.png -------------------------------------------------------------------------------- /public/amp/images/vintage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/amp/images/vintage.jpg -------------------------------------------------------------------------------- /public/images/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/compass.svg -------------------------------------------------------------------------------- /public/images/default-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/default-avatar.png -------------------------------------------------------------------------------- /public/images/desktop_item_view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/desktop_item_view.gif -------------------------------------------------------------------------------- /public/images/desktop_search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/desktop_search.gif -------------------------------------------------------------------------------- /public/images/icons/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/android-icon-144x144.png -------------------------------------------------------------------------------- /public/images/icons/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/android-icon-192x192.png -------------------------------------------------------------------------------- /public/images/icons/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/android-icon-36x36.png -------------------------------------------------------------------------------- /public/images/icons/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/android-icon-48x48.png -------------------------------------------------------------------------------- /public/images/icons/android-icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/android-icon-512x512.png -------------------------------------------------------------------------------- /public/images/icons/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/android-icon-72x72.png -------------------------------------------------------------------------------- /public/images/icons/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/android-icon-96x96.png -------------------------------------------------------------------------------- /public/images/icons/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/apple-icon-114x114.png -------------------------------------------------------------------------------- /public/images/icons/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/apple-icon-120x120.png -------------------------------------------------------------------------------- /public/images/icons/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/apple-icon-144x144.png -------------------------------------------------------------------------------- /public/images/icons/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/apple-icon-152x152.png -------------------------------------------------------------------------------- /public/images/icons/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/apple-icon-180x180.png -------------------------------------------------------------------------------- /public/images/icons/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/apple-icon-57x57.png -------------------------------------------------------------------------------- /public/images/icons/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/apple-icon-60x60.png -------------------------------------------------------------------------------- /public/images/icons/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/apple-icon-72x72.png -------------------------------------------------------------------------------- /public/images/icons/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/apple-icon-76x76.png -------------------------------------------------------------------------------- /public/images/icons/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/apple-icon-precomposed.png -------------------------------------------------------------------------------- /public/images/icons/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/apple-icon.png -------------------------------------------------------------------------------- /public/images/icons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/browserconfig.xml -------------------------------------------------------------------------------- /public/images/icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/facebook.svg -------------------------------------------------------------------------------- /public/images/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/favicon-16x16.png -------------------------------------------------------------------------------- /public/images/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/favicon-32x32.png -------------------------------------------------------------------------------- /public/images/icons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/favicon-96x96.png -------------------------------------------------------------------------------- /public/images/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/favicon.ico -------------------------------------------------------------------------------- /public/images/icons/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/manifest.json -------------------------------------------------------------------------------- /public/images/icons/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/ms-icon-144x144.png -------------------------------------------------------------------------------- /public/images/icons/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/ms-icon-150x150.png -------------------------------------------------------------------------------- /public/images/icons/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/ms-icon-310x310.png -------------------------------------------------------------------------------- /public/images/icons/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/ms-icon-70x70.png -------------------------------------------------------------------------------- /public/images/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/icons/search.svg -------------------------------------------------------------------------------- /public/images/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/location.svg -------------------------------------------------------------------------------- /public/images/mobile_create_post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/mobile_create_post.png -------------------------------------------------------------------------------- /public/images/mobile_explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/mobile_explore.png -------------------------------------------------------------------------------- /public/images/mobile_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/mobile_item.png -------------------------------------------------------------------------------- /public/images/mobile_item_view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/mobile_item_view.gif -------------------------------------------------------------------------------- /public/images/mobile_landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/mobile_landing.png -------------------------------------------------------------------------------- /public/images/mobile_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/mobile_profile.png -------------------------------------------------------------------------------- /public/images/nearo_item.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/nearo_item.jpg -------------------------------------------------------------------------------- /public/images/open-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/open-box.png -------------------------------------------------------------------------------- /public/images/splash/launch-1125x2436.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/splash/launch-1125x2436.png -------------------------------------------------------------------------------- /public/images/splash/launch-1242x2148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/splash/launch-1242x2148.png -------------------------------------------------------------------------------- /public/images/splash/launch-1536x2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/splash/launch-1536x2048.png -------------------------------------------------------------------------------- /public/images/splash/launch-1668x2224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/splash/launch-1668x2224.png -------------------------------------------------------------------------------- /public/images/splash/launch-2048x2732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/splash/launch-2048x2732.png -------------------------------------------------------------------------------- /public/images/splash/launch-640x1136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/splash/launch-640x1136.png -------------------------------------------------------------------------------- /public/images/splash/launch-750x1294.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/splash/launch-750x1294.png -------------------------------------------------------------------------------- /public/images/sprites.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/sprites.svg -------------------------------------------------------------------------------- /public/images/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/images/user.svg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/powered_by_google_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/powered_by_google_default.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/scripts/start.js -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/scripts/test.js -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/sitemap.xml -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/commons/categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/commons/categories.js -------------------------------------------------------------------------------- /src/components/commons/dbfunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/commons/dbfunctions.js -------------------------------------------------------------------------------- /src/components/commons/firebase/algolia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/commons/firebase/algolia.js -------------------------------------------------------------------------------- /src/components/commons/firebase/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/commons/firebase/firebase.js -------------------------------------------------------------------------------- /src/components/commons/firebase/newaccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/commons/firebase/newaccount.js -------------------------------------------------------------------------------- /src/components/commons/geocoder/geocoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/commons/geocoder/geocoder.js -------------------------------------------------------------------------------- /src/components/commons/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/commons/utils.js -------------------------------------------------------------------------------- /src/components/commons/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/commons/utils.test.js -------------------------------------------------------------------------------- /src/components/desktop/explorer/Explorer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/desktop/explorer/Explorer.js -------------------------------------------------------------------------------- /src/components/desktop/home/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/desktop/home/Card.js -------------------------------------------------------------------------------- /src/components/desktop/home/Categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/desktop/home/Categories.js -------------------------------------------------------------------------------- /src/components/desktop/home/Gallery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/desktop/home/Gallery.css -------------------------------------------------------------------------------- /src/components/desktop/home/Gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/desktop/home/Gallery.js -------------------------------------------------------------------------------- /src/components/desktop/home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/desktop/home/Home.js -------------------------------------------------------------------------------- /src/components/desktop/home/MainCategories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/desktop/home/MainCategories.js -------------------------------------------------------------------------------- /src/components/desktop/map/GoogleMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/desktop/map/GoogleMap.js -------------------------------------------------------------------------------- /src/components/desktop/map/Marker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/desktop/map/Marker.js -------------------------------------------------------------------------------- /src/components/desktop/postcard/PlaceHolder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/desktop/postcard/PlaceHolder.js -------------------------------------------------------------------------------- /src/components/desktop/postcard/PostCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/desktop/postcard/PostCard.js -------------------------------------------------------------------------------- /src/components/desktop/postcard/PostImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/desktop/postcard/PostImage.js -------------------------------------------------------------------------------- /src/components/desktop/postview/PlaceHolder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/desktop/postview/PlaceHolder.js -------------------------------------------------------------------------------- /src/components/desktop/postview/PostContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/desktop/postview/PostContent.js -------------------------------------------------------------------------------- /src/components/desktop/postview/PostView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/desktop/postview/PostView.js -------------------------------------------------------------------------------- /src/components/desktop/postview/PostViewStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/desktop/postview/PostViewStyles.js -------------------------------------------------------------------------------- /src/components/desktop/postview/overwrite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/desktop/postview/overwrite.css -------------------------------------------------------------------------------- /src/components/desktop/subbar/SubBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/desktop/subbar/SubBar.js -------------------------------------------------------------------------------- /src/components/desktop/subbar/SubBarStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/desktop/subbar/SubBarStyles.js -------------------------------------------------------------------------------- /src/components/desktop/topnav/ProfileMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/desktop/topnav/ProfileMenu.js -------------------------------------------------------------------------------- /src/components/desktop/topnav/TopNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/desktop/topnav/TopNav.js -------------------------------------------------------------------------------- /src/components/desktop/topnav/TopnavStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/desktop/topnav/TopnavStyles.js -------------------------------------------------------------------------------- /src/components/mobile/categories/Categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/mobile/categories/Categories.js -------------------------------------------------------------------------------- /src/components/mobile/drawer/Drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/mobile/drawer/Drawer.js -------------------------------------------------------------------------------- /src/components/mobile/favlist/FavList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/mobile/favlist/FavList.js -------------------------------------------------------------------------------- /src/components/mobile/location/Location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/mobile/location/Location.js -------------------------------------------------------------------------------- /src/components/mobile/postcard/Caption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/mobile/postcard/Caption.js -------------------------------------------------------------------------------- /src/components/mobile/postcard/PlaceHolder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/mobile/postcard/PlaceHolder.js -------------------------------------------------------------------------------- /src/components/mobile/postcard/PostCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/mobile/postcard/PostCard.js -------------------------------------------------------------------------------- /src/components/mobile/postcard/PostImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/mobile/postcard/PostImage.js -------------------------------------------------------------------------------- /src/components/mobile/postlist/PostList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/mobile/postlist/PostList.js -------------------------------------------------------------------------------- /src/components/mobile/postview/Author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/mobile/postview/Author.js -------------------------------------------------------------------------------- /src/components/mobile/postview/Media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/mobile/postview/Media.js -------------------------------------------------------------------------------- /src/components/mobile/postview/PlaceHolder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/mobile/postview/PlaceHolder.js -------------------------------------------------------------------------------- /src/components/mobile/postview/PostDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/mobile/postview/PostDetails.js -------------------------------------------------------------------------------- /src/components/mobile/postview/PostView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/mobile/postview/PostView.js -------------------------------------------------------------------------------- /src/components/mobile/postview/PostViewStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/mobile/postview/PostViewStyles.js -------------------------------------------------------------------------------- /src/components/mobile/postview/overwrite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/mobile/postview/overwrite.css -------------------------------------------------------------------------------- /src/components/mobile/profilemenu/ProfileMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/mobile/profilemenu/ProfileMenu.js -------------------------------------------------------------------------------- /src/components/mobile/profilemenu/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/mobile/profilemenu/styles.js -------------------------------------------------------------------------------- /src/components/mobile/searchbar/SearchBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/mobile/searchbar/SearchBar.js -------------------------------------------------------------------------------- /src/components/mobile/searchbar/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/mobile/searchbar/styles.js -------------------------------------------------------------------------------- /src/components/mobile/staffpick/StaffPick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/mobile/staffpick/StaffPick.js -------------------------------------------------------------------------------- /src/components/mobile/subnav/SubNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/mobile/subnav/SubNav.js -------------------------------------------------------------------------------- /src/components/mobile/topnav/TopNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/mobile/topnav/TopNav.js -------------------------------------------------------------------------------- /src/components/mobile/welcomebanner/WelcomeBanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/mobile/welcomebanner/WelcomeBanner.js -------------------------------------------------------------------------------- /src/components/shared/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/shared/404.js -------------------------------------------------------------------------------- /src/components/shared/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/shared/About.js -------------------------------------------------------------------------------- /src/components/shared/gobackpage/GoBackPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/shared/gobackpage/GoBackPage.js -------------------------------------------------------------------------------- /src/components/shared/locator/Locator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/shared/locator/Locator.js -------------------------------------------------------------------------------- /src/components/shared/locator/LocatorMini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/shared/locator/LocatorMini.js -------------------------------------------------------------------------------- /src/components/shared/locator/LocatorStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/shared/locator/LocatorStyles.js -------------------------------------------------------------------------------- /src/components/shared/locator/SearchInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/shared/locator/SearchInput.js -------------------------------------------------------------------------------- /src/components/shared/login/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/shared/login/Login.js -------------------------------------------------------------------------------- /src/components/shared/map/MapCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/shared/map/MapCard.js -------------------------------------------------------------------------------- /src/components/shared/notifications/LoginNotification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/shared/notifications/LoginNotification.js -------------------------------------------------------------------------------- /src/components/shared/notifications/Notifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/shared/notifications/Notifier.js -------------------------------------------------------------------------------- /src/components/shared/notifications/SimpleNotification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/shared/notifications/SimpleNotification.js -------------------------------------------------------------------------------- /src/components/shared/postactions/MoreButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/shared/postactions/MoreButton.js -------------------------------------------------------------------------------- /src/components/shared/postactions/PostActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/shared/postactions/PostActions.js -------------------------------------------------------------------------------- /src/components/shared/postactions/PostCardStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/shared/postactions/PostCardStyles.js -------------------------------------------------------------------------------- /src/components/shared/postactions/ShareButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/shared/postactions/ShareButton.js -------------------------------------------------------------------------------- /src/components/shared/postpanel/PostPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/shared/postpanel/PostPanel.js -------------------------------------------------------------------------------- /src/components/shared/postpanel/PostPanelStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/shared/postpanel/PostPanelStyles.js -------------------------------------------------------------------------------- /src/components/shared/postpanel/UploaderButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/shared/postpanel/UploaderButton.js -------------------------------------------------------------------------------- /src/components/shared/profile/AvatarUpdater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/shared/profile/AvatarUpdater.js -------------------------------------------------------------------------------- /src/components/shared/profile/PhoneInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/shared/profile/PhoneInput.js -------------------------------------------------------------------------------- /src/components/shared/profile/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/shared/profile/Profile.js -------------------------------------------------------------------------------- /src/components/shared/profilecard/ProfileCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/shared/profilecard/ProfileCard.js -------------------------------------------------------------------------------- /src/components/shared/viewer360/Viewer360.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/components/shared/viewer360/Viewer360.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/index.js -------------------------------------------------------------------------------- /src/privacy_policy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/privacy_policy.js -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src/screens/ScreenSwitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/screens/ScreenSwitch.js -------------------------------------------------------------------------------- /src/screens/desktop/about.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/screens/desktop/about.page.js -------------------------------------------------------------------------------- /src/screens/desktop/desktop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/screens/desktop/desktop.js -------------------------------------------------------------------------------- /src/screens/desktop/login.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/screens/desktop/login.page.js -------------------------------------------------------------------------------- /src/screens/desktop/post.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/screens/desktop/post.page.js -------------------------------------------------------------------------------- /src/screens/desktop/profile.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/screens/desktop/profile.page.js -------------------------------------------------------------------------------- /src/screens/mobile/about.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/screens/mobile/about.page.js -------------------------------------------------------------------------------- /src/screens/mobile/explore.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/screens/mobile/explore.page.js -------------------------------------------------------------------------------- /src/screens/mobile/favorites.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/screens/mobile/favorites.page.js -------------------------------------------------------------------------------- /src/screens/mobile/home.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/screens/mobile/home.page.js -------------------------------------------------------------------------------- /src/screens/mobile/location.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/screens/mobile/location.page.js -------------------------------------------------------------------------------- /src/screens/mobile/login.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/screens/mobile/login.page.js -------------------------------------------------------------------------------- /src/screens/mobile/mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/screens/mobile/mobile.js -------------------------------------------------------------------------------- /src/screens/mobile/nothing.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/screens/mobile/nothing.page.js -------------------------------------------------------------------------------- /src/screens/mobile/post.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/screens/mobile/post.page.js -------------------------------------------------------------------------------- /src/screens/mobile/profile.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/screens/mobile/profile.page.js -------------------------------------------------------------------------------- /src/shared/styles/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/shared/styles/styles.js -------------------------------------------------------------------------------- /src/stores/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/stores/app.js -------------------------------------------------------------------------------- /src/stores/bookmarks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/stores/bookmarks.js -------------------------------------------------------------------------------- /src/stores/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/stores/navigation.js -------------------------------------------------------------------------------- /src/stores/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/stores/notifications.js -------------------------------------------------------------------------------- /src/stores/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/stores/posts.js -------------------------------------------------------------------------------- /src/stores/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/stores/users.js -------------------------------------------------------------------------------- /src/terms_and_conditions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/src/terms_and_conditions.js -------------------------------------------------------------------------------- /storage.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psanders/nearo/HEAD/storage.rules --------------------------------------------------------------------------------