Thanks for a great tutorial! For those, who stuck with bento grid not working properly, in BentoGrid component string part of return className should be: "grid grid-cols-1 md:grid-cols-6 lg:grid-cols-5 md:grid-row-7 gap-4 lg:gap-8 mx-auto" Replace default Aceternity style with this, and it should work like a charm
@@samski17 not completely sure what could be the reason, but you probably should check that you've done everything correct starting from 21:42. If everything is copied-pasted and edited correct, might be some trouble during installation of Tailwind lib
The fix for the hydration error message involving and is actually pretty straightforward. The error is coming from the fact that there is an nested inside of a in the 3d-pin.tsx file (just search for "" in that file to find it). You should never have a link nested inside another link. So to resolve it, just change the to a instead. The linking functionality is passed down from so that inner isn't necessary. Hope this helps!
Woe dude nice job! Could you tell me what are the prerequisites that I should know before starting to make this? I know js html & css. Ofc I'm learning React but it's gonna take time
@@jadencoober6484html css javascript, typescript a bit similar to jsband a bit react and it's component and you are ready to go buddy but even though you don't know these still I would suggest you to go through from it you will get to know many things that you are not going to learn from boring lectures 🩵
This tutorial is pure gold! The way you integrated Next.js with Framer Motion is super smooth. It really takes the portfolio game to the next level! 🚀 The section at [12:45] where you explain the animations in detail was a game-changer for me! Totally inspired to revamp my own portfolio now. Thanks for the clear and easy-to-follow guide!
Awesome tutorial! If someone is stuck with the ReactCurrentOwner error when making the globe, try downgrading Next.js to version 14. It might fix the issue(you will have to change the next.config.ts file as well!).
You're awesome mehn 🔥🔥 I was planning on redesigning my portfolio this week. Great timing. I have been following your channel for years now and you never disappoint.
That was amazing Adrian, this is the first portfolio I have ever made, and I am pretty confident in that. And of course I plan to make good changes in it soon. Thank you again and have a blessed life.
Hello, I'm from Brazil, I really learned a lot from this video, I hope you can always create these videos that are better than many courses I've already taken here..... thank you and may God bless and gave everything for you and yours team keep up the wonderful work 👏👏👏😁
Thank you for your great tutorial! Yesterday, I graduated from a Web Development Bootcamp. During the bootcamp, I sought inspiration and examples by following your channel. Amazing! Your explanations and material are understandable for a beginner like me! I am very grateful to have followed this channel. Right now i already have my own Website Portofolio by watching this video and edit some part. God bless you, good person!
For those who meet "hydration error" in RecentProjects component, try using dynamic import instead: replace import { PinContainer } from "./ui/Pin"; with import dynamic from "next/dynamic"; const PinContainer = dynamic( () => import("./ui/Pin").then((mod) => mod.PinContainer), { ssr: false } );
Another option is inside /3d-pin, change the to a div, then just add the somewhere inside the in /RecentProjects. Seems to just be an HTML nesting issue with the pin component from Aceternity
The hydration error you're getting starts at 1:29:10 just pause the video and change the to make sure you import it, its necessary because you're working with nextjs. And also in this change the property of href={href} to href={"href"} make it a string so you don't start getting an undefined error
Thanks. I also want to add to this because I kept getting hydration multiple times during this course. One of the most annoying reason was the Grammarly extension. So If anyone gets a hydration error, the very first thing I suggest to do is to run your app in a private/incognito mode and see if the error goes away. If it goes away then it means some extension is causing it.
Thank you, Adrian! Every project you share is of such high quality, and it's even more impressive how easy they are to understand thanks to your clear explanations and excellent accent.
thank you JSM, great working. i have finished this project in 2 days with joy and tears because of some errors. but so far, i have completed it. can't wait for the next projects.
Bruh I tried of deploying but it sucks😔 I even used the same code... In his repo..but document based error it shows... SSR has been problematic...how to get rid of this
Awesome tutorial Adrian! This is the second react portfolio tutorial I'm watching on JSM, I watched the one from 3 years ago now this and I like this one better, though I wished the portfolio had a blog section for marketing and all. I think organic traffic would be a boost for freelance developers.
Adrian you're the best teacher that's still provides free content unlike other youtubers who are fake with the so called "free" but only provide paid reference code and no Github repo, they just want to sell every piece of code they teach and they don't offer any other options or solution for any bugs of their projects. I'm sick and tired of them. I'll just stick with you in the future
Anyone facing the issue in the bento grid where in card's image and content take half half space and is not being rendered like adrian's @1:14:00? same issue with the card of tech stack, my title is being displayed over the mini cards
for the issue in the footer, we can use the className "overflow-clip" it also words and solve it. You don't need to remove the whole div as it was looking great
Hi Adrian, thank you for the amazing portfolio tutorial! Your content is always top-notch and incredibly helpful. Could you please consider creating a tutorial on building a social media app using Expo and Appwrite? I think it would be a fantastic project for the community. Thanks again for all your hard work!
Hi, I don't know if you solved the problem, but I found the solution, in the BentoGrid.tsx component you must place this className and replace the one shown in the video at that minute "grid grid-cols-1 md:grid-cols-6 lg:grid-cols-5 md:grid-row-7 gap-4 lg:gap-8 mx-auto"
22:35 : Ah so that is why the whole tutorial is only 3 hrs long. Without that pasting and component fiddling it would be 10 hours ;) So very much appreciated that you helped me get past this step which is the main reason I never completet a react, next or svelte project ... This calls for a meme: "BRO JUST GAVE US WORKING NEXTJS"
I know pretty much 0 about coding was told the best thing to learn is to jump straight into a project which is why I'm following you, I'm noticing as I'm following you alot of errors happen and I don't even know if what I'm doing is right or wrong. Do you think I should not jump straight into projects?
Bro, Thank you so much for the tutorial! I didn’t realize it was so easy to upload projects to Hostinger. Does this method work with any type of app in Next.js? If I make changes to my app, would I just need to upload the Build folder again? Thanks for all your videos!
Guys in the tutorial he tells you to make a ui folder, the spotlight animation, button, or text generation will not work unless you add "./ui/**/*.{ts,tsx}", to the tailwind.config.ts file in the content section
i keep getting this error "warn - No utility classes were detected in your source files. If this is unexpected, double-check the `content` option in your Tailwind CSS configuration.", I've tried a lot to figure it out but nothing seems to work. Can't even get the black background on the webpage
This is great! It would be awesome if this had an admin panel feature as well which allows the user to edit content without touching the code (lets say only text and images for now)
Loving the tutorial! Got a hydration which I could resolve with the suppressHydrationWarning attribute on the html tag within the root layout. But then I got a type error...Cannot read properties of undefined (reading 'ReactCurrentOwner'). Anyone else got the same? ** Got this resolved by down grading to Next.js 14
The web ui designs, use of nice images and colors are what always sold your websites tutorials. How do you come up with such designs effortlessly everytime.
You are the best. I wish I could sign up for the jsm masterclass and dive deep into the world of Javascript, React and Next.js. Love your content and dedication.
Hello sir, I wanted to ask if there was supposed to be an HTML file included since i wasn't able to run it without a HTML file. I tried hosting it using Github Pages, but it didn't work, so is it only meant for it to be run by the localhost:3000 or not? Also based on the Github repo that you mentioned in the description of this video (which I'm quite grateful for), it also didn't mention any html page at all. Additionally, for context, I only used node v22.4.1, and npm 10.8.1. Again thanks for the great video and I am hoping to hear from you once more
This is absolutely legendary! 💎I've learned so much from your tech content, and this tutorial is perfect for showcasing web development skills and as always quality of your teaching, animation, and video production Premium. Keep up the fantastic work! ❤
Great work as always. Brings new features and integrating it seamlessly for the community to follow along and build exciting projects every time kudos to you adrian!!! 🎉
Thank you very much, I learn a lot about design and how to implement these things for my websites, these types of shorter projects are appreciated but they teach a lot
@javascripmastery Thanks so much for the video, I've learned a lot! :)) Can you tell me where did you get the icons from? For example all the tech icons and other ones that you have used in the experience section? Thanks:)
amazing projects,i tried to implement the 3d pin cards in my portfolio but i realise it dosn't redirect me to a new webpage when clicked,i clone your repo as well and yours it behaves the same...any idea why??
Thanks for this fantastic project! I wanted to ask about the icons in the work experience section. Where can I find similar icons for download, though not exactly the same ones?
@br3ak_ I actually try to add my own creative touches to it while i am coding along with the video, even add my own design. I try to do each component my own way before continuing to watch the solution provided by the vide.
From the finished page, sometimes it is not possible to scroll back to the top of the page. When navigating from the navbar. Anyone else having the same problem? Step to reproduce: 1. navigate to any section from the navbar 2. refresh page 3. scroll up (back to header) 4. the header seems to be cut off, and the footer has a lot of space down I tested it on chrome browser how to solve that ?
@@sridhar7251 I think I might have some typing error XD, just examine every component layers and whether they are closed at correct places, I think it will fix the problem~
Thanks for a great tutorial!
For those, who stuck with bento grid not working properly, in BentoGrid component string part of return className should be:
"grid grid-cols-1 md:grid-cols-6 lg:grid-cols-5 md:grid-row-7 gap-4 lg:gap-8 mx-auto"
Replace default Aceternity style with this, and it should work like a charm
GOOD JOB BRO
thnk youu bro
I'm stuck with TypeError: flattenColorPalette is not a function
in the tailwind.config.ts
have any idea?
@@samski17 not completely sure what could be the reason, but you probably should check that you've done everything correct starting from 21:42. If everything is copied-pasted and edited correct, might be some trouble during installation of Tailwind lib
Excellent, yes this matches his github repository.
This is the type of content for which I pay my internet bills for!!
The fix for the hydration error message involving and is actually pretty straightforward. The error is coming from the fact that there is an nested inside of a in the 3d-pin.tsx file (just search for "" in that file to find it). You should never have a link nested inside another link. So to resolve it, just change the to a instead. The linking functionality is passed down from so that inner isn't necessary. Hope this helps!
html goat right here
thanks!
thanks brother, it helps me a lot
but in the 3d-pin.tsx, i am getting error for href?
@@atharvadhokte8851 same, did you solve it ?
Thank you very much. Took me 4 - 5 days to complete this project but finally done. Amazing learning experience! Many thanks :)
Woe dude nice job! Could you tell me what are the prerequisites that I should know before starting to make this? I know js html & css. Ofc I'm learning React but it's gonna take time
@@jadencoober6484html css javascript, typescript a bit similar to jsband a bit react and it's component and you are ready to go buddy but even though you don't know these still I would suggest you to go through from it you will get to know many things that you are not going to learn from boring lectures 🩵
This tutorial is pure gold! The way you integrated Next.js with Framer Motion is super smooth. It really takes the portfolio game to the next level! 🚀 The section at [12:45] where you explain the animations in detail was a game-changer for me! Totally inspired to revamp my own portfolio now. Thanks for the clear and easy-to-follow guide!
Awesome tutorial!
If someone is stuck with the ReactCurrentOwner error when making the globe, try downgrading Next.js to version 14. It might fix the issue(you will have to change the next.config.ts file as well!).
I did this and for some reason all the layout is messed up after using the same version of next as in the demo and copying the next.config.mjs file.
@@revoktorment440 have u find any solution
Can’t believe how much value you provide for free! Amazing 🔥🔥
Appreciate it! 🔥
It's really nice that you included an example of how you configure Tailwind. Keep up the great work! I'm always following your updates.
You're awesome mehn 🔥🔥 I was planning on redesigning my portfolio this week. Great timing.
I have been following your channel for years now and you never disappoint.
That was amazing Adrian, this is the first portfolio I have ever made, and I am pretty confident in that.
And of course I plan to make good changes in it soon.
Thank you again and have a blessed life.
Those animations are just WOW. This will be a great project to build.
Definitely! 😊
I'm somewhat between an beginner and intermediate react developer and I don't know NextJs, is it worth watching this tutorial for me?
@@themountains1701 yes
This CV tutorial is way over the top for a real portfolio website... none the less great tutorial to learn from
I'm liking your new videos automatically because I already know that it's gonna be fire!
Thank you!
Man... from Chile, my thanks. Your content is of the highest quality. I will save up to buy your course as soon as I can. Best regards!
I'm so happy to hear that!
Hello, I'm from Brazil, I really learned a lot from this video, I hope you can always create these videos that are better than many courses I've already taken here..... thank you and may God bless and gave everything for you and yours team keep up the wonderful work 👏👏👏😁
Thank you for your great tutorial! Yesterday, I graduated from a Web Development Bootcamp. During the bootcamp, I sought inspiration and examples by following your channel. Amazing! Your explanations and material are understandable for a beginner like me! I am very grateful to have followed this channel. Right now i already have my own Website Portofolio by watching this video and edit some part. God bless you, good person!
For those who meet "hydration error" in RecentProjects component, try using dynamic import instead:
replace
import { PinContainer } from "./ui/Pin";
with
import dynamic from "next/dynamic";
const PinContainer = dynamic(
() => import("./ui/Pin").then((mod) => mod.PinContainer),
{ ssr: false }
);
Thanks bro ! very helpful
Thanks
thanks man! but can you tell me what was the issue and what was the fix? so that we can also understand for future reference.
Another option is inside /3d-pin, change the to a div, then just add the somewhere inside the in /RecentProjects. Seems to just be an HTML nesting issue with the pin component from Aceternity
My thmesProvider is not dooing my whole theme black, the texts are in black and bg for hero section is white, How to resolve ?
The hydration error you're getting starts at 1:29:10 just pause the video and change the to make sure you import it, its necessary because you're working with nextjs. And also in this change the property of href={href} to href={"href"} make it a string so you don't start getting an undefined error
Thanks.
I also want to add to this because I kept getting hydration multiple times during this course.
One of the most annoying reason was the Grammarly extension. So If anyone gets a hydration error, the very first thing I suggest to do is to run your app in a private/incognito mode and see if the error goes away. If it goes away then it means some extension is causing it.
We still haven't gotten over the banking app and here you dropped another banger. 🙌🙌🙌
Yesss! 😊
Thank you, Adrian! Every project you share is of such high quality, and it's even more impressive how easy they are to understand thanks to your clear explanations and excellent accent.
Those animations are amazing, now want to go deeper with the Framer Motion. Thanks for the inspiration!
Getting this error:- TypeError: Cannot read properties of undefined (reading 'ReactCurrentOwner') when rendering model using react-three libraries
Try to downgrade your next.js to version 14
Skip the error. I was also getting some errors. I was also doin. npm has new version which have some errors. It will be fixed soon.
OMG! So comprehensive ! Great work !
thank you JSM, great working. i have finished this project in 2 days with joy and tears because of some errors. but so far, i have completed it. can't wait for the next projects.
did you made the whole project is next15 or 14 ?
@dev31218 at the beginning i used next 15 and then i downgrade it to next 14
Bruh I tried of deploying but it sucks😔 I even used the same code... In his repo..but document based error it shows... SSR has been problematic...how to get rid of this
@@yogeshki9048 hello, i aslo have the same error, have you been able to fix it?
Brother at 53:10 when he is adding dynamic classname mine is not working as his how to make it work.
As everything from aceternity ... Kudos to Manu paaji 👏🏻👏🏻
Thank you for consistency Adrian❤❤❤❤❤❤❤❤❤❤❤❤
Always!
always love your videos man! Keep up the good work!
Thanks! Will do!
I spend 5 day on this tutorial but finally got my top-notch portfolio! :)
Hi, could you please provide the code for this project? I'm encountering several errors while working on it.
@@sachinkumar-yz6ul bro have all of you issues have been fixed?
are all resources being used free?
Always a pleasure to see your videos ! Thanks
My pleasure!
The best! thank you for always giving high quality contents.
My pleasure!
Supercool, Thankyou for using Aceternity UI and explaining it so well. :)
Well, thank you for MAKING IT! :D
bro can turn any demand into reality ❤
1:30 it should be Deployment and Launch 😊
Amazing!! ❤️
@@javascriptmastery For 1 or 2?😊
Awesome tutorial Adrian! This is the second react portfolio tutorial I'm watching on JSM, I watched the one from 3 years ago now this and I like this one better, though I wished the portfolio had a blog section for marketing and all. I think organic traffic would be a boost for freelance developers.
you'r a legend ! Thanks for sharing such high quality tutorials
I appreciate that!
Adrian you're the best teacher that's still provides free content unlike other youtubers who are fake with the so called "free" but only provide paid reference code and no Github repo, they just want to sell every piece of code they teach and they don't offer any other options or solution for any bugs of their projects. I'm sick and tired of them. I'll just stick with you in the future
Thank you so much! That's the goal!
Thanks JS just finished the project and made some changes looks great, as always keep it up
Great to hear!
Can you share deployed link
Anyone facing the issue in the bento grid where in card's image and content take half half space and is not being rendered like adrian's @1:14:00? same issue with the card of tech stack, my title is being displayed over the mini cards
go to BackgroundGradientAnimation at first div after return, change from relative to absolute
@@phirawittungjaroenvorrakhu936 thank you so much bro . i was so frustated at this lol.
literally doing gods work out here.
sir, always amazed by the kind of ui ux designs you bring life to. they are just amazing.
The man, The myth, The legend is back with new content. 🎉
Thank you! 🎉
for the issue in the footer, we can use the className "overflow-clip" it also words and solve it. You don't need to remove the whole div as it was looking great
Hi Adrian, thank you for the amazing portfolio tutorial! Your content is always top-notch and incredibly helpful. Could you please consider creating a tutorial on building a social media app using Expo and Appwrite? I think it would be a fantastic project for the community. Thanks again for all your hard work!
Great suggestion!
48:20 why does my Bento Grid layout look very different from yours after i added the className prop?
Have you found the problem?
@@badrollac9851 yes
Hi, I don't know if you solved the problem, but I found the solution, in the BentoGrid.tsx component you must place this className and replace the one shown in the video at that minute
"grid grid-cols-1 md:grid-cols-6 lg:grid-cols-5 md:grid-row-7 gap-4 lg:gap-8 mx-auto"
@@rodrigorivas712thanks brother. Don't know about that guy. But you helped me
@@rodrigorivas712 Thank You soo much bro I was searching for this one Thanks a lot
Thank you so much for what you do for the community Adrian!
My pleasure!
22:35 : Ah so that is why the whole tutorial is only 3 hrs long. Without that pasting and component fiddling it would be 10 hours ;) So very much appreciated that you helped me get past this step which is the main reason I never completet a react, next or svelte project ...
This calls for a meme: "BRO JUST GAVE US WORKING NEXTJS"
I think this tutorial is over my head right now, I'm too much a beginner to follow and understand everything. I'll go back to the basics.
Thanks
This is awesome! Well done bro
Thanks for the visit
Really your coding and design is op
Nice job ❤❤❤
Thanks 😄
I know pretty much 0 about coding was told the best thing to learn is to jump straight into a project which is why I'm following you, I'm noticing as I'm following you alot of errors happen and I don't even know if what I'm doing is right or wrong. Do you think I should not jump straight into projects?
This is amazing, keep the good work up! 😁
Thank you!
You're my Inspiration 💥
this is great and much appreciated work Sir👌👍
Great video as always. Thanks so much for the hard work.
Appreciate it!
There are honestly no words just thanks
This is amazing Adrian 🎉
Thank you!
Adrian you're such a hardworking person ✨
Oh thank you!
Bro, Thank you so much for the tutorial! I didn’t realize it was so easy to upload projects to Hostinger. Does this method work with any type of app in Next.js? If I make changes to my app, would I just need to upload the Build folder again? Thanks for all your videos!
You're Insane buddy 🔥
Loved it ❤️🩹
You are absolutely awesome. Thanks for sharing all the knowledge and I know this is not easy.
Guys in the tutorial he tells you to make a ui folder, the spotlight animation, button, or text generation will not work unless you add "./ui/**/*.{ts,tsx}", to the tailwind.config.ts file in the content section
i keep getting this error "warn - No utility classes were detected in your source files. If this is unexpected, double-check the `content` option in your Tailwind CSS configuration.", I've tried a lot to figure it out but nothing seems to work. Can't even get the black background on the webpage
This is great! It would be awesome if this had an admin panel feature as well which allows the user to edit content without touching the code (lets say only text and images for now)
Cool idea, but might be a bit of an overkill for the portfolio.
Loving the tutorial! Got a hydration which I could resolve with the suppressHydrationWarning attribute on the html tag within the root layout. But then I got a type error...Cannot read properties of undefined (reading 'ReactCurrentOwner'). Anyone else got the same? ** Got this resolved by down grading to Next.js 14
Thanks for sharing this content with us! That helped me a lot.
God bless you.
From where do you get those ui designs .any specific website or you create your own from scratch in figma ???
The web ui designs, use of nice images and colors are what always sold your websites tutorials. How do you come up with such designs effortlessly everytime.
I have a master designer :D
You are the best. I wish I could sign up for the jsm masterclass and dive deep into the world of Javascript, React and Next.js. Love your content and dedication.
Thank you!
Awesome as always ❤❤
Thank you so much 😀
This is fire! where did you get your assets?
I've always wanted to use ActernityUI in nextjs but was confused how to use. Thank you...!!!
Enjoy!
Since when you are using Mac?
Or are you still using Windows in some projects?
Switched to Mac about a year ago :)
Hello sir, I wanted to ask if there was supposed to be an HTML file included since i wasn't able to run it without a HTML file. I tried hosting it using Github Pages, but it didn't work, so is it only meant for it to be run by the localhost:3000 or not? Also based on the Github repo that you mentioned in the description of this video (which I'm quite grateful for), it also didn't mention any html page at all. Additionally, for context, I only used node v22.4.1, and npm 10.8.1. Again thanks for the great video and I am hoping to hear from you once more
Thank you Adrian for your amazing tutorials 👌🏻👌🏻👌🏻
Hi, Thanks for the tutorial. May I ask what tool have you used to take screenshots of your websites for the portfolio section?
A beginner's Heaven 🔥
where did u find or create those svgs ? THANKS A LOT, EXCELENT VIDEO
Learning lot from you bro thank you
Amazing!
I remeber your nft game
I think it's time for now one
🎉🎉🎉🎉🎉🎉
My best teacher ❤
This is absolutely legendary! 💎I've learned so much from your tech content, and this tutorial is perfect for showcasing web development skills and as always quality of your teaching, animation, and video production Premium. Keep up the fantastic work! ❤
I appreciate that!
Please make a course where you explain how you make those Figma designs. They look awesome!
Great work as always. Brings new features and integrating it seamlessly for the community to follow along and build exciting projects every time kudos to you adrian!!! 🎉
That's the plan!
which browser is this?
great vid btw!
The animations are amazing! 🤩🔥 Great work!
Thank you so much 😀
Aaaaamaziiiing , I know I would do this Saturday night ! Thank's
Thank you very much, I learn a lot about design and how to implement these things for my websites, these types of shorter projects are appreciated but they teach a lot
I'm so happy to hear that!
@javascripmastery Thanks so much for the video, I've learned a lot! :)) Can you tell me where did you get the icons from? For example all the tech icons and other ones that you have used in the experience section? Thanks:)
Can you please make a video how to extract padding, spacing .Etc from Figma . It useful for every beginner developer.
Might do something soon
Agree with this one!
amazing projects,i tried to implement the 3d pin cards in my portfolio but i realise it dosn't redirect me to a new webpage when clicked,i clone your repo as well and yours it behaves the same...any idea why??
did you ever figure otu a solution ? i bee nat it for a minute. they'll navigate locaally but not once deployed
If I want to make a cheat sheet like you what kind of tools you are using and what kind of course you recommend ?
Sleek🔥🔥 Thank you so much Adrain, been looking already to improving my portfolio, perfect timing.
My pleasure!
Thank you so much, i learned a lot from this Portfolio
Hey adrian is back with another level content 🤠🤠
Yess! 🔥
great job. ive been following and i got to the work experience section and i was curious where you get you svgs from
what were the technologies we installed in the terminal
Thanks for this fantastic project! I wanted to ask about the icons in the work experience section. Where can I find similar icons for download, though not exactly the same ones?
Love it, Love it, Love it!!
This is totly Aceternity UI video , where we can learn how to apply these components in out project for obtaining the sleek design.
Can't wait to go home to start working on this project, Thank you 🙏 for offering this for free
Enjoy!
You mean Adrian or his team worked on it and the rest of you just code along and copy what you see on screen lol
@br3ak_ I actually try to add my own creative touches to it while i am coding along with the video, even add my own design. I try to do each component my own way before continuing to watch the solution provided by the vide.
From the finished page, sometimes it is not possible to scroll back to the top of the page. When navigating from the navbar. Anyone else having the same problem?
Step to reproduce:
1. navigate to any section from the navbar
2. refresh page
3. scroll up (back to header)
4. the header seems to be cut off, and the footer has a lot of space down
I tested it on chrome browser
how to solve that ?
Hi did you figure this out I have been stuck on the same error
Great Tutorial! But have anyone met Unhandled Runtime Error during execution? Thanx very much
yess i have! got any fix or something bro?
@@sridhar7251 I think I might have some typing error XD, just examine every component layers and whether they are closed at correct places, I think it will fix the problem~