Build and Deploy a Full Stack E-Commerce App with an Admin Dashboard & CMS in 2024 | Next 14, Stripe

Поделиться
HTML-код
  • Опубликовано: 10 янв 2025

Комментарии •

  • @sukunademonking07
    @sukunademonking07 Год назад +44

    Hey! Can you please upload a MERN video showcasing google oauth and also 2FA? Please don't use Next.js and Typescript. Your way of teaching is really great. It would mean a lot❤I know you guys must be getting a lot of request. Please show how oauth2 is now being implemented in production. Thank you!

  • @Robbie-l8v
    @Robbie-l8v 3 дня назад +1

    Spot on! Refunds and disputes were killing my business until I streamlined fulfillment with Service Points. It literally saved my store. Anyone else working on this?

  • @rademilijasevic4313
    @rademilijasevic4313 Год назад +42

    Adrian you are an amazing coder as well as presenter/teacher. Without previous typescript or React or NextJS knowledge, I was actually able to follow you in real time. This is one of the rare videos that actually work top to bottom and is excellent place to start coding. Following this video I will take Next.JS tutorial to have all this sink in and continue learning. All the tech stack used in this video is awesome, I am sold for it. I spent days searching for a good tutorial on building an ecommerce site and I hit a jackpot finding this video. I designed and built an e-store using Elementor and WP but I wanted to learn the code and start customizing. Many many thanks. Keep up your great work.

    • @kazerdira4704
      @kazerdira4704 2 месяца назад

      i really get interested in your comment , brilliant you are a genius i am not joking ! i did code for more than 3 years , (not js or css) and i can even get to the min 30 mins , good luck anyway

  • @volumetwoooo
    @volumetwoooo Год назад +21

    The amount of ultra quality this channel has been putting out is pure blessing from Adrian to all of us who keep studying this. Thank you so much, as always.

  • @seriousburrito1529
    @seriousburrito1529 22 дня назад +89

    Anyone else wake up to this?

  • @mahtabvariyani
    @mahtabvariyani Год назад +31

    This guy is a savior for all those who are learning JavaScript. He is the best on RUclips, and, most importantly, he never says 'follow me,' 'subscribe,' or 'like.' Because everyone, after seeing his talent, perfect work, and effort, which he puts into his content, will like, comment, and subscribe automatically. This guy is the best JavaScript teacher on RUclips

    • @javascriptmastery
      @javascriptmastery  Год назад +4

      Thank you! It means a lot!

    • @KolaToyin-wf6vb
      @KolaToyin-wf6vb Год назад +2

      For real. Anytime I see a notification that he has drop a new video I'm always ready to check it out

    • @moalaoudi9411
      @moalaoudi9411 Год назад

      ​@@javascriptmastery Yes Good content. However, I want to see more of these full stack and MERN projects and more deployments on AWS. More projects of Full stack Applications with AWS.

    • @preciousbanigo
      @preciousbanigo 10 месяцев назад

      ​​@@KolaToyin-wf6vb same here Bro. Amazing content everytime.

    • @rheinatamara7401
      @rheinatamara7401 25 дней назад

      sooo true!!!

  • @Mohammadr_m
    @Mohammadr_m Год назад +61

    Thank you so much, Mr. Adrian! I'm a developer who'sbeen stuck with wordpress for ages. Ive been looking to transition to Next.js but time was always an issue. This video is exactly what I needed to make this shift happen. Really thankful for this! 🙏🏻

  • @dreamerz95
    @dreamerz95 Год назад +87

    Dude you're killing it when it comes to react and next. How are you rolling out things so fast with such an amazing quality.

    • @nomen385
      @nomen385 Год назад +12

      He's an alien

    • @guitarhero69
      @guitarhero69 Год назад +15

      bro has a separate team working on new projects. and then he presents them in a video

    • @dreamerz95
      @dreamerz95 Год назад +1

      @@guitarhero69 makes sense

    • @javascriptmastery
      @javascriptmastery  Год назад +13

      Thank you so much! ♥️

    • @DS-AIArvinkritik
      @DS-AIArvinkritik Год назад

      ​@@javascriptmasterybro make us a devoloper with angular and vue also !!!

  • @RoadTrip-and-Music
    @RoadTrip-and-Music Год назад +26

    In case someone face errors when deploying this nice project I can share my trick which helped me deploy it finally )) maybe it's not good way, but my goal was to deploy it in anyway! )) some rows should be added in .eslintrc js file... plugins: ['prettier'], rules: {'prettier/prettier': 0} to avoid a lot of prettier errors during building logs and also need install 'simple-import-sort' plugin and add few rows to the same .eslintrc js file... plugins: ['simple-import-sort'], rules: { 'simple-import-sort/imports: error} to avoid a lot of errors with saying to run autofix to sort imports... Somehow it helps! Ha ha! ;)

    • @RoadTrip-and-Music
      @RoadTrip-and-Music Год назад +1

      That was funny )) --- ESLint: Cannot read config file: /workspace/.eslintrc.js Error: error is not defined --- the trick was not in that rows should be added, but in that way that it couldn't be read and just passed through, so no errors anymore and build was done! :D

  • @bigjoe100
    @bigjoe100 Год назад +31

    This guy is just killing it ever since I found your channel I have fallen in love with Front-end development. Just started the social media App with Tailwind and Appwrite project and I must say it is fantastic.Thanks, Adrian for bringing real web development to us.

  • @vaporizor92
    @vaporizor92 Год назад +41

    I am up to 50:08 and having a difficult time finding the correct .scss referenced at 50:08 for the grid. Therefore, I manually wrote it up and here it is for anyone who needs it:
    .inclusions{
    display: grid;
    justify-content: center;
    gap: 30px;
    padding: 0;
    grid-template-columns: repeat(4, 1fr);
    margin: 100px 0;
    @include large-break {
    grid-template-columns: repeat(2, 1fr);
    }
    @include mid-break {
    margin: 60px 0;
    }
    @include extra-small-break {
    grid-template-columns: 1fr;
    }
    }

    • @user-yc3pb1ij7g
      @user-yc3pb1ij7g Год назад +3

      That section of code was missing and was giving me errors. Thank you so much!!

    • @someoneyouknow2440
      @someoneyouknow2440 9 месяцев назад

      You're a life saver, thanks!

    • @GoodbyeMrX
      @GoodbyeMrX 9 месяцев назад +1

      Thanks. At the end there is still missing:
      .icon {
      margin-bottom: 16px;
      }

    • @akashgudigar807
      @akashgudigar807 7 месяцев назад +1

      this code is there in the actual git hub repo, check there for the actual code. In the assets folder its missing, but in the FooterComponent index.module.scss its there

  • @kazi7935
    @kazi7935 8 месяцев назад +6

    This is the best video on e-commerce project I’ve ever seen on RUclips. I was able to start and finish it without any complications. Thank you so much Adrian.

    • @Eli12898
      @Eli12898 6 месяцев назад +1

      Hi, do you mind telling me how did you handle payload setup? I can't continue because it's not free for a while now

    • @Sbuja-o3c
      @Sbuja-o3c 16 дней назад

      @@Eli12898 Yeah I am also interested to know. The newer version doesn't have the e-commerce template, or did you manage to figure it?

    • @elizeneli9858
      @elizeneli9858 4 дня назад

      @@Sbuja-o3c No I didn't unfortunately

  • @thedonner7746
    @thedonner7746 Год назад +5

    OOh im so excited for this one! i recently found your old e-commerce tutorial and the old versions of everything made it deprecated, i was so sad, time to work again!

  • @GoodbyeMrX
    @GoodbyeMrX 9 месяцев назад +2

    By far the best channel for coding.
    Very good explanation, I learned alot. Coding is on point. Great mic, voice of an angel.
    Ty for this great tutorial!

  • @josecentenodev
    @josecentenodev Год назад +10

    Wow, I'm really impressed by how you handle debugging on the fly as you code! It's amazing to see your problem-solving skills in action. Your ability to troubleshoot and fix issues on the spot is truly inspiring. Keep up the great work!

  • @anidkhan6796
    @anidkhan6796 Год назад +5

    Damn this must be the most functional and best e-commerce next js project available on RUclips.

    • @bestthegamer07
      @bestthegamer07 10 месяцев назад

      yeah bro

    • @MohamedAdel.9
      @MohamedAdel.9 3 месяца назад

      Can I deploy this project and make it a live demo in my portfolio

  • @HannanShah-el5cr
    @HannanShah-el5cr 11 месяцев назад +1

    I never comment on videos, but I must say you are a talented teacher. I wish you all the best with your channel!

  • @ayushgupta-ui3og
    @ayushgupta-ui3og 8 месяцев назад +42

    TUTORIAL ON HOW TO SELF HOST PAYLOAD CMS CODE

    • @eternl_sunshine22
      @eternl_sunshine22 7 месяцев назад +2

      I assume you can do this on Fly IO

    • @zakariadamu9345
      @zakariadamu9345 6 месяцев назад

      @@eternl_sunshine22 please is using a CMS the better way of going about a project's backend, rather than using node or python??

    • @Pizzaboi87
      @Pizzaboi87 2 месяца назад

      Did you find any working solution?

    • @Sbuja-o3c
      @Sbuja-o3c 16 дней назад

      @@Pizzaboi87 Did you find a solution?

  • @BhuvaneshM
    @BhuvaneshM Год назад +21

    We all accept that the quality is extremely good but in most of the videos you are building FRONT-END based projects. In this video you are using a CMS to handle back-end.
    All we want is a REAL FULL STACK project with Backend code. Like a MERN STACK PROJECT 🔥🔥🔥🔥🔥

    • @cold_mi-gente
      @cold_mi-gente 6 месяцев назад +1

      Getting engaged towards his NextJS course

  • @viallymboma9874
    @viallymboma9874 Год назад +3

    Damn...the speed at which you do this is just mind-blowing... you're a power dynamic to this js generation 🎉

  • @yousufhossain9768
    @yousufhossain9768 Год назад +3

    When i get a job im gonna surely buy all of courses you provided .. thank you Adrian for teaching us the best quality content about Web development. You teaching us prod quality project that can actually increase the value of resume.

  • @codemantis5986
    @codemantis5986 Год назад +3

    Was on the lookout to start my own e-commerce store, this came just in time!

    • @ahmadsohail_yt
      @ahmadsohail_yt 5 месяцев назад

      same

    • @MohamedAdel.9
      @MohamedAdel.9 3 месяца назад

      Can I deploy this project and make it a live demo in my portfolio

  • @Andrew-Tsegaye
    @Andrew-Tsegaye 3 месяца назад +2

    I can't love this project! Bro, you're ..... I'm speechless thank you so much!

  • @Tapadar.Monsur
    @Tapadar.Monsur Год назад +6

    Absolutely phenomenal, Adrian! Thank you for another project video.

  • @miloshayk1724
    @miloshayk1724 10 месяцев назад +1

    Man your the best. This guy is super crazy . No one is near him on youtube superb content

  • @adrianmaull1242
    @adrianmaull1242 Год назад +5

    Excellent course. It would be nice to see how to include shipping details in the Cart/Checkout process.

  • @WiLDeveD
    @WiLDeveD Год назад +4

    You are the Best bro by far in Full Stack App Tutorials in RUclips. Thanks and God speed ❤

    • @javascriptmastery
      @javascriptmastery  Год назад +1

      You're welcome! ❤

    • @MohamedAdel.9
      @MohamedAdel.9 3 месяца назад

      Can I deploy this project and make it a live demo in my portfolio

  • @torahfelix7820
    @torahfelix7820 Год назад +9

    Your content is just so awesome. I just started learning js and I have already built 2 react projects and learning really good practices.
    I can't thank you enough Adrian. 😭

  • @hungryhungarian1684
    @hungryhungarian1684 20 дней назад +2

    I fell asleep while watching some gaming videos...
    I work up and saw I slept through all of this, hopefully I learnt something in my sleep lol

  • @programmerslife01
    @programmerslife01 Год назад +3

    Awesome of the awesomeness!!! As always, thank youu so much, Adrian! 😁😍😍

  • @R0VERKAI
    @R0VERKAI Год назад +2

    OMG, I just asked for this in another Video. Is this magic?!🤩 Thank you so much😭

  • @ahmeddalhalabi
    @ahmeddalhalabi Год назад +6

    This is what we've been waiting for
    After the excellent course on next.js14
    I think you are in this lesson
    You will expand further on next.js
    It touches on new points that have not been touched upon before
    This will make people follow your lessons
    It reaches a very advanced stage in next.js
    Thank you from my heart
    I promise you a nice surprise after a week
    My son who followed your course on next.js 14
    Near the end of the project
    But after he added a lot of wonderful things to it
    You will be surprised by it
    He is still 14 years old and we are waiting for you to translate the video into Arabic

  • @barbararajic3610
    @barbararajic3610 Год назад +5

    Adrian, you are a lifesaver. I have been looking for a quality course like this for weeks. Hvala ti puno ❤

  • @nullpointer7809
    @nullpointer7809 11 месяцев назад +1

    Somebody give this man an Oscar. Or whatever is equivalent for a web developer!

  • @Faizee_Motors
    @Faizee_Motors Год назад +3

    Nice , i tried this.
    But can you share how to add slider filter for price range, more products photos and if want how to add another payment provider.

  • @ojongrandy2580
    @ojongrandy2580 5 месяцев назад +1

    Long Live Andrain.
    Long Live JSM.
    JSM has everything a developer need ❤

  • @ProjectsMastery82
    @ProjectsMastery82 Год назад +2

    This is a great video Adrian 🎉 I love the CMS part 😊

  • @vaibhavchauhan3741
    @vaibhavchauhan3741 Год назад +8

    You are Great 👍🏻👍🏻 Thanks for keeping this type of High quality content for free ❤❤

  • @lhm9068
    @lhm9068 Год назад +2

    this is what i was looking for. I know the video will be absolutely amazing. Thank you so much jsm!!!

  • @MahmoudAfifi-ws1vr
    @MahmoudAfifi-ws1vr Месяц назад +3

    why i can't find number 3 4:45

  • @mimcris8481
    @mimcris8481 Год назад +1

    E-Commerce app! Great, I'll definitely try this one out!

  • @zorojuro5132
    @zorojuro5132 Год назад +3

    That's incredibally project. but i want to know, what would be happen after 30 days we used payload cloud ? are we have to pay the cloud for more ?

  • @theuncannyepicurean
    @theuncannyepicurean 4 месяца назад

    I'm pretty sure I'm not the only one making bucks from web dev because of Adrian. This guy is the man. God bless him.

    • @HrissW
      @HrissW 4 месяца назад

      How do you print man?

  • @perry-cyber
    @perry-cyber Год назад +3

    I've been looking for this for years on RUclips 😂😂😂

    • @javascriptmastery
      @javascriptmastery  Год назад +1

      It's finally here! :)

    • @perry-cyber
      @perry-cyber Год назад

      And I'm really glad saying a big thanks to you and your team for the hard work

  • @muhamedmouzoun
    @muhamedmouzoun 9 месяцев назад

    The way you explain is amazing. It keeps you focused ! Thanks!

    • @MohamedAdel.9
      @MohamedAdel.9 3 месяца назад

      What's up, can i add it in my portfolio and deploy it

  • @judao1383
    @judao1383 10 месяцев назад +2

    Thanks for the exellent content!
    Is there a guide for Deploying on the free tier in Vercel?

    • @MohamedAdel.9
      @MohamedAdel.9 3 месяца назад

      Can I deploy this project and make it a live demo in my portfolio

  • @a.tarikbostan
    @a.tarikbostan Год назад +2

    Maaaan this one and only content in entire youtube❤ Thanks brother

  • @WIMMYY
    @WIMMYY Месяц назад +4

    Was just trying to follow the video. I guess payload has removed the ecommerce template, hence the database link is not working ( at 13.05 ). Any alternative for this?

    • @rainernsa
      @rainernsa Месяц назад

      Same here, looking for an alternative to run it with

    • @DEADPOOL-nx3fg
      @DEADPOOL-nx3fg Месяц назад

      Did you guys find any alternative please reply if you have found one

  • @devanshsinghparmar
    @devanshsinghparmar Год назад +1

    this is an amazing one, but there is one thing still missing I would love to suggest that please add Size feature in this e-commerce or reference us. It will be helpful for many of us!

  • @brendanmilton5025
    @brendanmilton5025 9 месяцев назад +3

    Great tutorial! Looks like it's only a 7 day free trial with payload now. Just letting you know :)

  • @adenkaine
    @adenkaine Год назад +2

    It would be cool to see how to incorporate the Printful API (which is free to start) into this for the products maybe on a future video! Good Job though, awesome stuff!

  • @adilhasan9943
    @adilhasan9943 Год назад +11

    Just finished watching your fantastic Next.js project video - loved how you explained everything so clearly! 🚀
    I was wondering if you have considered creating a video tutorial on building a social media project with Next.js and Sanity? It would be amazing to see your insights and guidance on creating such a dynamic project.
    Looking forward to more awesome content from your channel! 👍😊"

  • @khaledlkurdi
    @khaledlkurdi 10 месяцев назад

    That is one of the best videos on the internet now 🔥 because it is solving and explaining a looooooot, thanks!!

  • @urbanebachelor
    @urbanebachelor Год назад +3

    Immediately get error when executing npm run dev. Looks like an issue with the /index.scss file in the payload folder.

    • @Voltvs93
      @Voltvs93 8 месяцев назад

      Is this resolved? 👀

  • @michaelanthony4750
    @michaelanthony4750 Год назад +2

    You read my mind. I was just wondering how to use Payload. Thanks!

  • @omereker8824
    @omereker8824 11 месяцев назад +2

    Hi, when will payload be available on vercel exactly? couldn't find an announcement about it

  • @Ilohimushka
    @Ilohimushka 10 месяцев назад +2

    This companies are wild ) every time youtuber makes tutorial they tighten up their free tier the same month )))

  • @vikalindeman9315
    @vikalindeman9315 Год назад +5

    I started to have problems with payload right away, it creates a new repo and then throws and error Reference does not exist. And I can't find a way to fix it. Annoying, in the video project looks really cool, but it is impossible to start with all the bugs on Payload side

    • @javascriptmastery
      @javascriptmastery  Год назад

      Try reaching out to their Discord server :)

    • @payloadcms
      @payloadcms Год назад +3

      Hello! We uncovered an issue, where if you had a default branch name set on your repo (other than main) cloning a template would fail. We've made a change that will respect whatever your default branch name is, and this should now work as expected. Please give this another shot and let us know if you still run into an issue.

    • @Sbuja-o3c
      @Sbuja-o3c 16 дней назад

      @@payloadcms What is another alternative for the e-commerce template, I am finding it very hard to follow, please advise? thanks

    • @LukmanAbdulHaq-wx6wm
      @LukmanAbdulHaq-wx6wm 4 дня назад

      @@Sbuja-o3c i hope we get a solution

  • @Sbuja-o3c
    @Sbuja-o3c 16 дней назад +2

    I am having trouble with payload, they don't have the commerce template on the website, please advise, what is the alternative?

  • @FranklinLokki
    @FranklinLokki Месяц назад +3

    Did payload removed the ecommerce template ? 😭😭

  • @KayodeVictor
    @KayodeVictor Год назад +1

    Sir you the best on youtube. No doubt!!!

  • @continuouslearner
    @continuouslearner Год назад +4

    Please add authentication via Google as its so much easier for users rather than registering using yet another password.

  • @cloudynana
    @cloudynana Месяц назад +2

    First Day: 1:15:00
    Second Day: 2:30:00
    Third Day: 3:52:16

  • @anonymous12478
    @anonymous12478 Год назад +3

    why not tailwind css ?

  • @programmershams
    @programmershams Год назад +2

    Bro you are the best developer i knew so far
    You are amazing 👏 ❤️

  • @suhailsayyed3210
    @suhailsayyed3210 Год назад +3

    Sir is your name is faizan ??

  • @freeion2023
    @freeion2023 Год назад +1

    Just Amazing. Exactly what I was waiting for.

  • @ashutosh_tiwari
    @ashutosh_tiwari Год назад +61

    You're replying to people who don't even try to build this but you don't have time to reply my comment where i asked you about an error.....

    • @kadir_ozyurek
      @kadir_ozyurek Год назад +3

      What is the issue , can you solved it ?

    • @ashutosh_tiwari
      @ashutosh_tiwari Год назад

      @@kadir_ozyurek No it is not solved yet!!
      This is the error:- ERROR (payload): Incorrect username or password. In the console after pasting all the keys in the .env file. I checked so many times and all the keys pasted are correct without any typos.

    • @nishitlugun8394
      @nishitlugun8394 Год назад +7

      Exactly! This is the biggest problem with these creators, they will ask us to comment down the errors and when we do they’ll never reply.

    • @mrigankagogoi6262
      @mrigankagogoi6262 Год назад +54

      Be grateful for the free content he provided with his efforts even when you didn't asked for.

    • @ashutosh_tiwari
      @ashutosh_tiwari Год назад

      @@mrigankagogoi6262 it isn't related to what I asked. And yes I am very very grateful for his videos!!

  • @Badis-n2u
    @Badis-n2u 11 месяцев назад +7

    But it seems a little complicated, anyone can relate ?

  • @shubhamk1111
    @shubhamk1111 Год назад +1

    Hi there! My favourite Coding Educator ❤

  • @asaiahhenson
    @asaiahhenson Год назад +2

    am happy you did it this time with normal Css

  • @pulkitmethaniya6471
    @pulkitmethaniya6471 Год назад +1

    You. Killed me 😢 I started your old ecommerce project today and make it half and you uploaded this 😢

    • @javascriptmastery
      @javascriptmastery  Год назад +1

      No worries, you'l llearn more that way if you combine the two! :)

  • @mazeedsalvador8578
    @mazeedsalvador8578 Год назад

    Wow! I haven't started but just the demo is blowing my mind 🤯

  • @yugal8627
    @yugal8627 Год назад +2

    You are just waooo as always Adrian👌.
    Just a humble request please bring a video on Figma and GraphQL.

  • @youthfactfactory7877
    @youthfactfactory7877 Год назад +1

    Amazing video Adrian your explanations are awesome brother when it comes to react and nextjs
    ❣❣💖💖

  • @ralphrosael
    @ralphrosael Год назад +2

    Wow! Thanks Sir for this awesome project! 🤩

  • @G_O_J_O_S_A_T_O_R_U
    @G_O_J_O_S_A_T_O_R_U Год назад +2

    Amazing stuff as always, everything looks smooth , cant wait to build this

  • @Showmatic
    @Showmatic Год назад +1

    Payload sure is growing, I love using it

  • @user-yc3pb1ij7g
    @user-yc3pb1ij7g Год назад +1

    @1:16 (pages) > recover-password > index.module.css seems to be missing.

  • @agadaFrancisLouis
    @agadaFrancisLouis 9 месяцев назад

    Adrian, Payload is awesome!!!😄😍😍😍❤

  • @GuruhTech_Coding
    @GuruhTech_Coding 4 месяца назад +2

    What if i dont want to use stripe? which other alternatives?

  • @matthewmbazima
    @matthewmbazima Год назад +1

    This is insane!!!! You are the G.O.A.T💯

  • @Coco-ii2pu
    @Coco-ii2pu 3 дня назад

    I love you man. Thank you for this

  • @temidayogabriel6496
    @temidayogabriel6496 20 дней назад

    Your tutorials really are the best!!! Ever since I found your channel, I’ve forgotten the rest of the channels I followed.
    I want to ask if you could possible make a multi-vendor marketplace website using this payload CMS if possible, and if not, I trust you to provide with the best alternative that works.

    • @Sbuja-o3c
      @Sbuja-o3c 16 дней назад

      Did you manage to follow along well, and how did you bypass the payload section?

  • @suryakantasinha
    @suryakantasinha Год назад +1

    Finally😌 Thanks Adrian❤

  • @ahmedhaidda526
    @ahmedhaidda526 Год назад

    Adrian! Thank you for another project video .. js master ❤

  • @pokkareindeermeat
    @pokkareindeermeat 6 месяцев назад

    24:50 If your working enviroment is Linux Manjro you should
    module.exports = {
    root: true,
    extends: ['plugin:@next/next/recommended', '@payloadcms'],
    ignorePatterns: ['**/payload-types.ts'],
    plugins: ['prettier'],
    rules: {
    'prettier/prettier': [
    'error',
    {
    endOfLine: 'lf',
    },
    ],
    'no-console': 'off',
    },
    }

  • @ZachCortez
    @ZachCortez Год назад +1

    🎉yes! New weekend project! 😁

  • @sarhan_104
    @sarhan_104 Год назад +1

    Bro I was not following you since a long, as I heard about tutorial hell stuff and copying one line to line
    But this one is to must follow
    Definitely gonna make it

  • @nisarshinwari3854
    @nisarshinwari3854 Год назад +1

    something i am looking for thank u adrian huge shout🎉😍

  • @aymensettey8975
    @aymensettey8975 Год назад +1

    Wow one of the best excited to start coding it along❤

  • @robertotieno7414
    @robertotieno7414 Год назад

    Thank you so much sir! I love these tutorials. Learning so much.

  • @umairulislam9048
    @umairulislam9048 Год назад +1

    What an incredible Project 😮😊😮

  • @valentinote71
    @valentinote71 Год назад

    Thank you so much, Mr. Adrian! You provide knowledge about There really are a lot of these things.😁😁😁

  • @salemkosemani
    @salemkosemani Год назад +1

    I will always love you. you are the best, your game is on a different level, in my hall of fame, you hold the grandest spot. well done!!! excellento!!

    • @javascriptmastery
      @javascriptmastery  Год назад

      You're the best!

    • @pablindio1
      @pablindio1 Год назад

      ​@@javascriptmastery what should i install to make this project?

  • @krateskim4169
    @krateskim4169 Год назад

    My favourite full stack channel

  • @ali5t4ir
    @ali5t4ir 7 месяцев назад

    Thank you again for another amazing tutirial - may I ask you to do one for an online Art Gallery including frame mockups & sales module? much appreciate it

  • @marcosmandamba3296
    @marcosmandamba3296 Год назад +1

    Thank you so much for the content you have shared with us!

  • @hamzaking127
    @hamzaking127 Год назад +1

    Is there a feature to choose, for example, the color of the product? For example, the customer wants 3 colors and must choose one color

  • @ishaanrawat9846
    @ishaanrawat9846 Год назад

    Definitely a project that will standout and look good on my portfolio have to learn next js and typescript first :X