├── .env-sample ├── .eslintrc.json ├── .gitignore ├── README.md ├── components.json ├── env-sample ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── images │ ├── banner_icon_1.png │ ├── banner_icon_2.png │ ├── banner_icon_3.png │ ├── banner_icon_4.png │ ├── btr_1.png │ ├── btr_2.png │ ├── btr_3.png │ ├── cart_alt_icon.png │ ├── cart_icon.png │ ├── compare_icon.png │ ├── delete_icon.png │ ├── facebook.png │ ├── filter_icon.png │ ├── footer_logo.png │ ├── grid_icon.png │ ├── heart_icon.png │ ├── hero.jpg │ ├── like_icon.png │ ├── linkedin.png │ ├── list_icon.png │ ├── logo.png │ ├── p_1.png │ ├── p_2.png │ ├── p_3.png │ ├── p_4.png │ ├── p_5.png │ ├── p_6.png │ ├── p_7.png │ ├── p_8.png │ ├── r_1.png │ ├── r_2.png │ ├── r_3.png │ ├── search_icon.png │ ├── share_icon.png │ ├── share_your_setup.png │ ├── shop_hero.png │ ├── shop_hero_full.png │ ├── sofa.png │ ├── sofa_mini.png │ ├── twitter.png │ └── user_icon.png ├── next.svg └── vercel.svg ├── src ├── app │ ├── about │ │ └── page.tsx │ ├── api │ │ ├── billing │ │ │ └── route.ts │ │ └── payment │ │ │ ├── route.ts │ │ │ └── webhook │ │ │ └── route.ts │ ├── checkout │ │ └── page.tsx │ ├── contact │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── page.tsx │ ├── shop │ │ ├── page.tsx │ │ └── product │ │ │ └── [product_id] │ │ │ └── page.tsx │ └── stripe │ │ ├── cancel │ │ └── page.tsx │ │ └── success │ │ └── page.tsx ├── components │ ├── cards │ │ └── ProductCard.tsx │ ├── common │ │ ├── Hero.tsx │ │ ├── LoadingIndicator.tsx │ │ ├── MainButton.tsx │ │ └── NavBar.tsx │ ├── forms │ │ └── CheckoutBillingForm.tsx │ ├── sections │ │ ├── BrowseTheRangeSection.tsx │ │ ├── FooterSection.tsx │ │ ├── HeroSection.tsx │ │ ├── OurProductSection.tsx │ │ ├── RoomSection.tsx │ │ ├── ShareSetupSection.tsx │ │ ├── checkout │ │ │ └── CheckoutDetailSection.tsx │ │ └── shop │ │ │ ├── CartSection.tsx │ │ │ ├── ShopBannerSection.tsx │ │ │ ├── ShopFilterSection.tsx │ │ │ ├── ShopHeroSection.tsx │ │ │ ├── ShopPaginationSection.tsx │ │ │ ├── ShopProductSection.tsx │ │ │ └── product-detail │ │ │ ├── ProductDetailExtraInfoSection.tsx │ │ │ ├── ProductDetailRelatedSection.tsx │ │ │ ├── ProductDetailShowcaseSection.tsx │ │ │ └── ProductDetailTopSection.tsx │ └── ui │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── form.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── pagination.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ └── use-toast.ts ├── lib │ ├── actions │ │ ├── billing.ts │ │ └── payment.ts │ ├── constants.ts │ ├── database │ │ ├── connection │ │ │ └── mongoose.ts │ │ └── models │ │ │ ├── billing.model.ts │ │ │ └── payment.model.ts │ ├── json │ │ └── country.json │ ├── service │ │ └── apiService.ts │ ├── utils.ts │ └── validations.ts ├── storage │ └── jotai │ │ └── index.ts └── types │ └── index.d.ts ├── tailwind.config.ts └── tsconfig.json /.env-sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/.env-sample -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/components.json -------------------------------------------------------------------------------- /env-sample: -------------------------------------------------------------------------------- 1 | MONGODB_URL= -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/images/banner_icon_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/banner_icon_1.png -------------------------------------------------------------------------------- /public/images/banner_icon_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/banner_icon_2.png -------------------------------------------------------------------------------- /public/images/banner_icon_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/banner_icon_3.png -------------------------------------------------------------------------------- /public/images/banner_icon_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/banner_icon_4.png -------------------------------------------------------------------------------- /public/images/btr_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/btr_1.png -------------------------------------------------------------------------------- /public/images/btr_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/btr_2.png -------------------------------------------------------------------------------- /public/images/btr_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/btr_3.png -------------------------------------------------------------------------------- /public/images/cart_alt_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/cart_alt_icon.png -------------------------------------------------------------------------------- /public/images/cart_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/cart_icon.png -------------------------------------------------------------------------------- /public/images/compare_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/compare_icon.png -------------------------------------------------------------------------------- /public/images/delete_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/delete_icon.png -------------------------------------------------------------------------------- /public/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/facebook.png -------------------------------------------------------------------------------- /public/images/filter_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/filter_icon.png -------------------------------------------------------------------------------- /public/images/footer_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/footer_logo.png -------------------------------------------------------------------------------- /public/images/grid_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/grid_icon.png -------------------------------------------------------------------------------- /public/images/heart_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/heart_icon.png -------------------------------------------------------------------------------- /public/images/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/hero.jpg -------------------------------------------------------------------------------- /public/images/like_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/like_icon.png -------------------------------------------------------------------------------- /public/images/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/linkedin.png -------------------------------------------------------------------------------- /public/images/list_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/list_icon.png -------------------------------------------------------------------------------- /public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/logo.png -------------------------------------------------------------------------------- /public/images/p_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/p_1.png -------------------------------------------------------------------------------- /public/images/p_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/p_2.png -------------------------------------------------------------------------------- /public/images/p_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/p_3.png -------------------------------------------------------------------------------- /public/images/p_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/p_4.png -------------------------------------------------------------------------------- /public/images/p_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/p_5.png -------------------------------------------------------------------------------- /public/images/p_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/p_6.png -------------------------------------------------------------------------------- /public/images/p_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/p_7.png -------------------------------------------------------------------------------- /public/images/p_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/p_8.png -------------------------------------------------------------------------------- /public/images/r_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/r_1.png -------------------------------------------------------------------------------- /public/images/r_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/r_2.png -------------------------------------------------------------------------------- /public/images/r_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/r_3.png -------------------------------------------------------------------------------- /public/images/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/search_icon.png -------------------------------------------------------------------------------- /public/images/share_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/share_icon.png -------------------------------------------------------------------------------- /public/images/share_your_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/share_your_setup.png -------------------------------------------------------------------------------- /public/images/shop_hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/shop_hero.png -------------------------------------------------------------------------------- /public/images/shop_hero_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/shop_hero_full.png -------------------------------------------------------------------------------- /public/images/sofa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/sofa.png -------------------------------------------------------------------------------- /public/images/sofa_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/sofa_mini.png -------------------------------------------------------------------------------- /public/images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/twitter.png -------------------------------------------------------------------------------- /public/images/user_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/images/user_icon.png -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/app/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/app/about/page.tsx -------------------------------------------------------------------------------- /src/app/api/billing/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/app/api/billing/route.ts -------------------------------------------------------------------------------- /src/app/api/payment/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/app/api/payment/route.ts -------------------------------------------------------------------------------- /src/app/api/payment/webhook/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/app/api/payment/webhook/route.ts -------------------------------------------------------------------------------- /src/app/checkout/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/app/checkout/page.tsx -------------------------------------------------------------------------------- /src/app/contact/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/app/contact/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/shop/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/app/shop/page.tsx -------------------------------------------------------------------------------- /src/app/shop/product/[product_id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/app/shop/product/[product_id]/page.tsx -------------------------------------------------------------------------------- /src/app/stripe/cancel/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/app/stripe/cancel/page.tsx -------------------------------------------------------------------------------- /src/app/stripe/success/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/app/stripe/success/page.tsx -------------------------------------------------------------------------------- /src/components/cards/ProductCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/cards/ProductCard.tsx -------------------------------------------------------------------------------- /src/components/common/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/common/Hero.tsx -------------------------------------------------------------------------------- /src/components/common/LoadingIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/common/LoadingIndicator.tsx -------------------------------------------------------------------------------- /src/components/common/MainButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/common/MainButton.tsx -------------------------------------------------------------------------------- /src/components/common/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/common/NavBar.tsx -------------------------------------------------------------------------------- /src/components/forms/CheckoutBillingForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/forms/CheckoutBillingForm.tsx -------------------------------------------------------------------------------- /src/components/sections/BrowseTheRangeSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/sections/BrowseTheRangeSection.tsx -------------------------------------------------------------------------------- /src/components/sections/FooterSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/sections/FooterSection.tsx -------------------------------------------------------------------------------- /src/components/sections/HeroSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/sections/HeroSection.tsx -------------------------------------------------------------------------------- /src/components/sections/OurProductSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/sections/OurProductSection.tsx -------------------------------------------------------------------------------- /src/components/sections/RoomSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/sections/RoomSection.tsx -------------------------------------------------------------------------------- /src/components/sections/ShareSetupSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/sections/ShareSetupSection.tsx -------------------------------------------------------------------------------- /src/components/sections/checkout/CheckoutDetailSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/sections/checkout/CheckoutDetailSection.tsx -------------------------------------------------------------------------------- /src/components/sections/shop/CartSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/sections/shop/CartSection.tsx -------------------------------------------------------------------------------- /src/components/sections/shop/ShopBannerSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/sections/shop/ShopBannerSection.tsx -------------------------------------------------------------------------------- /src/components/sections/shop/ShopFilterSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/sections/shop/ShopFilterSection.tsx -------------------------------------------------------------------------------- /src/components/sections/shop/ShopHeroSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/sections/shop/ShopHeroSection.tsx -------------------------------------------------------------------------------- /src/components/sections/shop/ShopPaginationSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/sections/shop/ShopPaginationSection.tsx -------------------------------------------------------------------------------- /src/components/sections/shop/ShopProductSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/sections/shop/ShopProductSection.tsx -------------------------------------------------------------------------------- /src/components/sections/shop/product-detail/ProductDetailExtraInfoSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/sections/shop/product-detail/ProductDetailExtraInfoSection.tsx -------------------------------------------------------------------------------- /src/components/sections/shop/product-detail/ProductDetailRelatedSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/sections/shop/product-detail/ProductDetailRelatedSection.tsx -------------------------------------------------------------------------------- /src/components/sections/shop/product-detail/ProductDetailShowcaseSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/sections/shop/product-detail/ProductDetailShowcaseSection.tsx -------------------------------------------------------------------------------- /src/components/sections/shop/product-detail/ProductDetailTopSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/sections/shop/product-detail/ProductDetailTopSection.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/components/ui/use-toast.ts -------------------------------------------------------------------------------- /src/lib/actions/billing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/lib/actions/billing.ts -------------------------------------------------------------------------------- /src/lib/actions/payment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/lib/actions/payment.ts -------------------------------------------------------------------------------- /src/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/lib/constants.ts -------------------------------------------------------------------------------- /src/lib/database/connection/mongoose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/lib/database/connection/mongoose.ts -------------------------------------------------------------------------------- /src/lib/database/models/billing.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/lib/database/models/billing.model.ts -------------------------------------------------------------------------------- /src/lib/database/models/payment.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/lib/database/models/payment.model.ts -------------------------------------------------------------------------------- /src/lib/json/country.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/lib/json/country.json -------------------------------------------------------------------------------- /src/lib/service/apiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/lib/service/apiService.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/lib/validations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/lib/validations.ts -------------------------------------------------------------------------------- /src/storage/jotai/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/storage/jotai/index.ts -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/src/types/index.d.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/furniro-ecommerce/HEAD/tsconfig.json --------------------------------------------------------------------------------