├── .gitignore ├── README.md ├── capacitor.config.json ├── ionic.config.json ├── ios ├── .gitignore └── App │ ├── App.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── App.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon-20x20@1x.png │ │ │ ├── AppIcon-20x20@2x-1.png │ │ │ ├── AppIcon-20x20@2x.png │ │ │ ├── AppIcon-20x20@3x.png │ │ │ ├── AppIcon-29x29@1x.png │ │ │ ├── AppIcon-29x29@2x-1.png │ │ │ ├── AppIcon-29x29@2x.png │ │ │ ├── AppIcon-29x29@3x.png │ │ │ ├── AppIcon-40x40@1x.png │ │ │ ├── AppIcon-40x40@2x-1.png │ │ │ ├── AppIcon-40x40@2x.png │ │ │ ├── AppIcon-40x40@3x.png │ │ │ ├── AppIcon-512@2x.png │ │ │ ├── AppIcon-60x60@2x.png │ │ │ ├── AppIcon-60x60@3x.png │ │ │ ├── AppIcon-76x76@1x.png │ │ │ ├── AppIcon-76x76@2x.png │ │ │ ├── AppIcon-83.5x83.5@2x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── Splash.imageset │ │ │ ├── Contents.json │ │ │ ├── splash-2732x2732-1.png │ │ │ ├── splash-2732x2732-2.png │ │ │ └── splash-2732x2732.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── capacitor.config.json │ └── config.xml │ └── Podfile ├── package.json ├── public ├── assets │ ├── alan.jpg │ ├── icon │ │ ├── favicon.png │ │ └── icon.png │ ├── logo.png │ └── shapes.svg ├── index.html └── manifest.json └── src ├── App.js ├── components ├── ExploreContainer.css ├── ExploreContainer.js ├── Feed.js ├── Feed.module.scss ├── Stories.js └── Stories.module.scss ├── index.js ├── pages ├── Home.js ├── Home.module.scss ├── MyProfile.js ├── PostStore.js ├── Profile.js ├── Profile.module.scss ├── ProfileStore.js ├── ProfilesStore.js ├── Tab1.css ├── Tab2.css ├── Tab2.js ├── Tab3.css └── Tab3.js ├── react-app-env.d.ts └── theme └── variables.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/README.md -------------------------------------------------------------------------------- /capacitor.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/capacitor.config.json -------------------------------------------------------------------------------- /ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ionic.config.json -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/App/App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/App/App.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/App/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/AppDelegate.swift -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png -------------------------------------------------------------------------------- /ios/App/App/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/App/App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/App/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/Info.plist -------------------------------------------------------------------------------- /ios/App/App/capacitor.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/capacitor.config.json -------------------------------------------------------------------------------- /ios/App/App/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/App/config.xml -------------------------------------------------------------------------------- /ios/App/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/ios/App/Podfile -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/package.json -------------------------------------------------------------------------------- /public/assets/alan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/public/assets/alan.jpg -------------------------------------------------------------------------------- /public/assets/icon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/public/assets/icon/favicon.png -------------------------------------------------------------------------------- /public/assets/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/public/assets/icon/icon.png -------------------------------------------------------------------------------- /public/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/public/assets/logo.png -------------------------------------------------------------------------------- /public/assets/shapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/public/assets/shapes.svg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/ExploreContainer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/src/components/ExploreContainer.css -------------------------------------------------------------------------------- /src/components/ExploreContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/src/components/ExploreContainer.js -------------------------------------------------------------------------------- /src/components/Feed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/src/components/Feed.js -------------------------------------------------------------------------------- /src/components/Feed.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/src/components/Feed.module.scss -------------------------------------------------------------------------------- /src/components/Stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/src/components/Stories.js -------------------------------------------------------------------------------- /src/components/Stories.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/src/components/Stories.module.scss -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/src/pages/Home.js -------------------------------------------------------------------------------- /src/pages/Home.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/src/pages/Home.module.scss -------------------------------------------------------------------------------- /src/pages/MyProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/src/pages/MyProfile.js -------------------------------------------------------------------------------- /src/pages/PostStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/src/pages/PostStore.js -------------------------------------------------------------------------------- /src/pages/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/src/pages/Profile.js -------------------------------------------------------------------------------- /src/pages/Profile.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/src/pages/Profile.module.scss -------------------------------------------------------------------------------- /src/pages/ProfileStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/src/pages/ProfileStore.js -------------------------------------------------------------------------------- /src/pages/ProfilesStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/src/pages/ProfilesStore.js -------------------------------------------------------------------------------- /src/pages/Tab1.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/Tab2.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/Tab2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/src/pages/Tab2.js -------------------------------------------------------------------------------- /src/pages/Tab3.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/Tab3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/src/pages/Tab3.js -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/theme/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanmontgomery/ionic-instagram-clone/HEAD/src/theme/variables.css --------------------------------------------------------------------------------