├── .DS_Store ├── README.md ├── admin ├── .gitignore ├── README.md ├── components.json ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── public │ ├── icon.png │ └── vite.svg ├── src │ ├── App.tsx │ ├── api │ │ └── index.ts │ ├── assets │ │ ├── image.png │ │ ├── iphone.png │ │ ├── placeholder.png │ │ └── react.svg │ ├── components │ │ ├── CreateProduct.tsx │ │ ├── HomeScreen.tsx │ │ ├── common │ │ │ ├── AlertAction.tsx │ │ │ ├── FileUploader.tsx │ │ │ ├── PreviewProduct.tsx │ │ │ ├── ProductCard.tsx │ │ │ └── SelectMenu.tsx │ │ ├── index.ts │ │ ├── product-form.tsx │ │ └── ui │ │ │ ├── alert-dialog.tsx │ │ │ ├── button.tsx │ │ │ ├── file-upload.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── loader.tsx │ │ │ ├── select.tsx │ │ │ └── table.tsx │ ├── context │ │ ├── APIActionContext.tsx │ │ └── UpdateContext.tsx │ ├── index.css │ ├── lib │ │ ├── uploadToCloudinary.ts │ │ └── utils.ts │ ├── main.tsx │ └── vite-env.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── backend ├── .env ├── .gitignore ├── controllers │ └── productController.js ├── index.js ├── models │ └── productsModel.js ├── package-lock.json ├── package.json └── routes │ └── products.js └── frontend ├── .gitignore ├── README.md ├── app.json ├── babel.config.js ├── ios ├── .gitignore ├── .xcode.env ├── Fratelli.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── Fratelli.xcscheme ├── Fratelli.xcworkspace │ └── contents.xcworkspacedata ├── Fratelli │ ├── AppDelegate.swift │ ├── Fratelli-Bridging-Header.h │ ├── Fratelli.entitlements │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── App-Icon-1024x1024@1x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── SplashScreenBackground.colorset │ │ │ └── Contents.json │ │ └── SplashScreenLogo.imageset │ │ │ ├── Contents.json │ │ │ ├── image.png │ │ │ ├── image@2x.png │ │ │ └── image@3x.png │ ├── Info.plist │ ├── PrivacyInfo.xcprivacy │ ├── SplashScreen.storyboard │ └── Supporting │ │ └── Expo.plist ├── Podfile ├── Podfile.lock └── Podfile.properties.json ├── metro.config.js ├── package-lock.json ├── package.json ├── src ├── app │ ├── (tabs) │ │ ├── _layout.tsx │ │ ├── cart.tsx │ │ ├── index.tsx │ │ └── profile.tsx │ ├── [product].tsx │ ├── _layout.tsx │ └── index.tsx ├── assets │ ├── fonts │ │ ├── Poppins-Black.ttf │ │ ├── Poppins-Bold.ttf │ │ ├── Poppins-ExtraBold.ttf │ │ ├── Poppins-ExtraLight.ttf │ │ ├── Poppins-Light.ttf │ │ ├── Poppins-Medium.ttf │ │ ├── Poppins-Regular.ttf │ │ ├── Poppins-SemiBold.ttf │ │ └── Poppins-Thin.ttf │ └── images │ │ ├── adaptive-icon.png │ │ ├── icon.png │ │ ├── inspire-colors.png │ │ ├── profile-tab-sample.png │ │ ├── splash.png │ │ └── wireframe-basic.png ├── components │ ├── BGIcon.tsx │ ├── CartItem.tsx │ ├── CustomIcon.ts │ ├── CustomTabBar.tsx │ ├── EmptyListAnimation.tsx │ ├── GradientBGIcon.tsx │ ├── OrderItemCard.tsx │ ├── PaymentFooter.tsx │ ├── ProductCard.tsx │ └── common │ │ └── ImageSlider.tsx ├── constants │ └── Colors.ts ├── data │ └── index.ts ├── global.css ├── store │ ├── features │ │ └── cartSlice.ts │ ├── services │ │ └── api.ts │ └── store.ts ├── theme │ └── theme.ts └── types │ ├── index.ts │ └── react-native-image-slider-box.d.ts └── tsconfig.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/README.md -------------------------------------------------------------------------------- /admin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/.gitignore -------------------------------------------------------------------------------- /admin/README.md: -------------------------------------------------------------------------------- 1 | # admin Page -------------------------------------------------------------------------------- /admin/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/components.json -------------------------------------------------------------------------------- /admin/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/eslint.config.js -------------------------------------------------------------------------------- /admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/index.html -------------------------------------------------------------------------------- /admin/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/package-lock.json -------------------------------------------------------------------------------- /admin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/package.json -------------------------------------------------------------------------------- /admin/public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/public/icon.png -------------------------------------------------------------------------------- /admin/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/public/vite.svg -------------------------------------------------------------------------------- /admin/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/App.tsx -------------------------------------------------------------------------------- /admin/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/api/index.ts -------------------------------------------------------------------------------- /admin/src/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/assets/image.png -------------------------------------------------------------------------------- /admin/src/assets/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/assets/iphone.png -------------------------------------------------------------------------------- /admin/src/assets/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/assets/placeholder.png -------------------------------------------------------------------------------- /admin/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/assets/react.svg -------------------------------------------------------------------------------- /admin/src/components/CreateProduct.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/components/CreateProduct.tsx -------------------------------------------------------------------------------- /admin/src/components/HomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/components/HomeScreen.tsx -------------------------------------------------------------------------------- /admin/src/components/common/AlertAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/components/common/AlertAction.tsx -------------------------------------------------------------------------------- /admin/src/components/common/FileUploader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/components/common/FileUploader.tsx -------------------------------------------------------------------------------- /admin/src/components/common/PreviewProduct.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/components/common/PreviewProduct.tsx -------------------------------------------------------------------------------- /admin/src/components/common/ProductCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/components/common/ProductCard.tsx -------------------------------------------------------------------------------- /admin/src/components/common/SelectMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/components/common/SelectMenu.tsx -------------------------------------------------------------------------------- /admin/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/components/index.ts -------------------------------------------------------------------------------- /admin/src/components/product-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/components/product-form.tsx -------------------------------------------------------------------------------- /admin/src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /admin/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/components/ui/button.tsx -------------------------------------------------------------------------------- /admin/src/components/ui/file-upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/components/ui/file-upload.tsx -------------------------------------------------------------------------------- /admin/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/components/ui/input.tsx -------------------------------------------------------------------------------- /admin/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/components/ui/label.tsx -------------------------------------------------------------------------------- /admin/src/components/ui/loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/components/ui/loader.tsx -------------------------------------------------------------------------------- /admin/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/components/ui/select.tsx -------------------------------------------------------------------------------- /admin/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/components/ui/table.tsx -------------------------------------------------------------------------------- /admin/src/context/APIActionContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/context/APIActionContext.tsx -------------------------------------------------------------------------------- /admin/src/context/UpdateContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/context/UpdateContext.tsx -------------------------------------------------------------------------------- /admin/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/index.css -------------------------------------------------------------------------------- /admin/src/lib/uploadToCloudinary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/lib/uploadToCloudinary.ts -------------------------------------------------------------------------------- /admin/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/lib/utils.ts -------------------------------------------------------------------------------- /admin/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/src/main.tsx -------------------------------------------------------------------------------- /admin/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /admin/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/tsconfig.app.json -------------------------------------------------------------------------------- /admin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/tsconfig.json -------------------------------------------------------------------------------- /admin/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/tsconfig.node.json -------------------------------------------------------------------------------- /admin/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/admin/vite.config.ts -------------------------------------------------------------------------------- /backend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/backend/.env -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/controllers/productController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/backend/controllers/productController.js -------------------------------------------------------------------------------- /backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/backend/index.js -------------------------------------------------------------------------------- /backend/models/productsModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/backend/models/productsModel.js -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/routes/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/backend/routes/products.js -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/app.json -------------------------------------------------------------------------------- /frontend/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/babel.config.js -------------------------------------------------------------------------------- /frontend/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/ios/.gitignore -------------------------------------------------------------------------------- /frontend/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/ios/.xcode.env -------------------------------------------------------------------------------- /frontend/ios/Fratelli.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/ios/Fratelli.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /frontend/ios/Fratelli.xcodeproj/xcshareddata/xcschemes/Fratelli.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/ios/Fratelli.xcodeproj/xcshareddata/xcschemes/Fratelli.xcscheme -------------------------------------------------------------------------------- /frontend/ios/Fratelli.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/ios/Fratelli.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /frontend/ios/Fratelli/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/ios/Fratelli/AppDelegate.swift -------------------------------------------------------------------------------- /frontend/ios/Fratelli/Fratelli-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/ios/Fratelli/Fratelli-Bridging-Header.h -------------------------------------------------------------------------------- /frontend/ios/Fratelli/Fratelli.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/ios/Fratelli/Fratelli.entitlements -------------------------------------------------------------------------------- /frontend/ios/Fratelli/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/ios/Fratelli/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png -------------------------------------------------------------------------------- /frontend/ios/Fratelli/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/ios/Fratelli/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /frontend/ios/Fratelli/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/ios/Fratelli/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /frontend/ios/Fratelli/Images.xcassets/SplashScreenBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/ios/Fratelli/Images.xcassets/SplashScreenBackground.colorset/Contents.json -------------------------------------------------------------------------------- /frontend/ios/Fratelli/Images.xcassets/SplashScreenLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/ios/Fratelli/Images.xcassets/SplashScreenLogo.imageset/Contents.json -------------------------------------------------------------------------------- /frontend/ios/Fratelli/Images.xcassets/SplashScreenLogo.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/ios/Fratelli/Images.xcassets/SplashScreenLogo.imageset/image.png -------------------------------------------------------------------------------- /frontend/ios/Fratelli/Images.xcassets/SplashScreenLogo.imageset/image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/ios/Fratelli/Images.xcassets/SplashScreenLogo.imageset/image@2x.png -------------------------------------------------------------------------------- /frontend/ios/Fratelli/Images.xcassets/SplashScreenLogo.imageset/image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/ios/Fratelli/Images.xcassets/SplashScreenLogo.imageset/image@3x.png -------------------------------------------------------------------------------- /frontend/ios/Fratelli/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/ios/Fratelli/Info.plist -------------------------------------------------------------------------------- /frontend/ios/Fratelli/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/ios/Fratelli/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /frontend/ios/Fratelli/SplashScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/ios/Fratelli/SplashScreen.storyboard -------------------------------------------------------------------------------- /frontend/ios/Fratelli/Supporting/Expo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/ios/Fratelli/Supporting/Expo.plist -------------------------------------------------------------------------------- /frontend/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/ios/Podfile -------------------------------------------------------------------------------- /frontend/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/ios/Podfile.lock -------------------------------------------------------------------------------- /frontend/ios/Podfile.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/ios/Podfile.properties.json -------------------------------------------------------------------------------- /frontend/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/metro.config.js -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/src/app/(tabs)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/app/(tabs)/_layout.tsx -------------------------------------------------------------------------------- /frontend/src/app/(tabs)/cart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/app/(tabs)/cart.tsx -------------------------------------------------------------------------------- /frontend/src/app/(tabs)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/app/(tabs)/index.tsx -------------------------------------------------------------------------------- /frontend/src/app/(tabs)/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/app/(tabs)/profile.tsx -------------------------------------------------------------------------------- /frontend/src/app/[product].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/app/[product].tsx -------------------------------------------------------------------------------- /frontend/src/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/app/_layout.tsx -------------------------------------------------------------------------------- /frontend/src/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/app/index.tsx -------------------------------------------------------------------------------- /frontend/src/assets/fonts/Poppins-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/assets/fonts/Poppins-Black.ttf -------------------------------------------------------------------------------- /frontend/src/assets/fonts/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/assets/fonts/Poppins-Bold.ttf -------------------------------------------------------------------------------- /frontend/src/assets/fonts/Poppins-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/assets/fonts/Poppins-ExtraBold.ttf -------------------------------------------------------------------------------- /frontend/src/assets/fonts/Poppins-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/assets/fonts/Poppins-ExtraLight.ttf -------------------------------------------------------------------------------- /frontend/src/assets/fonts/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/assets/fonts/Poppins-Light.ttf -------------------------------------------------------------------------------- /frontend/src/assets/fonts/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/assets/fonts/Poppins-Medium.ttf -------------------------------------------------------------------------------- /frontend/src/assets/fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/assets/fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /frontend/src/assets/fonts/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/assets/fonts/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /frontend/src/assets/fonts/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/assets/fonts/Poppins-Thin.ttf -------------------------------------------------------------------------------- /frontend/src/assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /frontend/src/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/assets/images/icon.png -------------------------------------------------------------------------------- /frontend/src/assets/images/inspire-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/assets/images/inspire-colors.png -------------------------------------------------------------------------------- /frontend/src/assets/images/profile-tab-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/assets/images/profile-tab-sample.png -------------------------------------------------------------------------------- /frontend/src/assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/assets/images/splash.png -------------------------------------------------------------------------------- /frontend/src/assets/images/wireframe-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/assets/images/wireframe-basic.png -------------------------------------------------------------------------------- /frontend/src/components/BGIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/components/BGIcon.tsx -------------------------------------------------------------------------------- /frontend/src/components/CartItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/components/CartItem.tsx -------------------------------------------------------------------------------- /frontend/src/components/CustomIcon.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/components/CustomTabBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/components/CustomTabBar.tsx -------------------------------------------------------------------------------- /frontend/src/components/EmptyListAnimation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/components/EmptyListAnimation.tsx -------------------------------------------------------------------------------- /frontend/src/components/GradientBGIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/components/GradientBGIcon.tsx -------------------------------------------------------------------------------- /frontend/src/components/OrderItemCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/components/OrderItemCard.tsx -------------------------------------------------------------------------------- /frontend/src/components/PaymentFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/components/PaymentFooter.tsx -------------------------------------------------------------------------------- /frontend/src/components/ProductCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/components/ProductCard.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/ImageSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/components/common/ImageSlider.tsx -------------------------------------------------------------------------------- /frontend/src/constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/constants/Colors.ts -------------------------------------------------------------------------------- /frontend/src/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/data/index.ts -------------------------------------------------------------------------------- /frontend/src/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/global.css -------------------------------------------------------------------------------- /frontend/src/store/features/cartSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/store/features/cartSlice.ts -------------------------------------------------------------------------------- /frontend/src/store/services/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/store/services/api.ts -------------------------------------------------------------------------------- /frontend/src/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/store/store.ts -------------------------------------------------------------------------------- /frontend/src/theme/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/theme/theme.ts -------------------------------------------------------------------------------- /frontend/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/types/index.ts -------------------------------------------------------------------------------- /frontend/src/types/react-native-image-slider-box.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/src/types/react-native-image-slider-box.d.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdullah0Dev/Sellify/HEAD/frontend/tsconfig.json --------------------------------------------------------------------------------