Explore the Future of 3D Experiences
31 |Immerse yourself in cutting-edge technology and interactive 3D videos that redefine your visual experience.
32 |├── .DS_Store ├── .gitignore ├── 3d-website ├── index.html └── style.css ├── color-wheel └── color-wheel.html ├── custom-cursor └── index.html ├── demo-i18n ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ └── react.svg │ ├── i18n.js │ ├── index.css │ ├── locales │ │ ├── en.json │ │ └── fr.json │ └── main.jsx └── vite.config.js ├── dev-portfolio ├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── components.json ├── content │ └── hello-world.mdx ├── next.config.mjs ├── package-lock.json ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public │ ├── arrow.png │ ├── atomic.png │ ├── bg-gradient.svg │ ├── buildspace.jpg │ ├── ib.png │ ├── laurier.png │ ├── lime.svg │ ├── me.png │ ├── mitremedia.png │ ├── nvidia.png │ ├── shopify.svg │ ├── splunk.svg │ ├── waterloo.png │ ├── work1.svg │ ├── work2.svg │ ├── work3.svg │ ├── work4.svg │ └── you.png ├── src │ ├── app │ │ ├── blog │ │ │ ├── [slug] │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ ├── hackathon-card.tsx │ │ ├── icons.tsx │ │ ├── layout │ │ │ └── PageWrapper.tsx │ │ ├── magicui │ │ │ ├── blur-fade-text.tsx │ │ │ ├── blur-fade.tsx │ │ │ └── dock.tsx │ │ ├── mdx.tsx │ │ ├── mode-toggle.tsx │ │ ├── navbar.tsx │ │ ├── project-card.tsx │ │ ├── resume-card.tsx │ │ ├── sections │ │ │ ├── AboutSection.tsx │ │ │ ├── ContactSection.tsx │ │ │ ├── EducationSection.tsx │ │ │ ├── HeroSection.tsx │ │ │ ├── ProjectsSection.tsx │ │ │ ├── SkillsSection.tsx │ │ │ └── WorkExperienceSection.tsx │ │ ├── theme-provider.tsx │ │ └── ui │ │ │ ├── animated-beam.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── border-beam.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── dot-pattern.tsx │ │ │ ├── flickering-grid.tsx │ │ │ ├── interactive-hover-button.tsx │ │ │ ├── magic-card.tsx │ │ │ ├── marquee.tsx │ │ │ ├── morphing-text.tsx │ │ │ ├── ripple-button.tsx │ │ │ ├── ripple.tsx │ │ │ ├── separator.tsx │ │ │ ├── shine-border.tsx │ │ │ └── tooltip.tsx │ ├── data │ │ ├── blog.ts │ │ └── resume.tsx │ └── lib │ │ └── utils.ts ├── tailwind.config.ts └── tsconfig.json ├── ecom-react-appwrite ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── appwrite │ │ └── appwriteConfig.js │ ├── assets │ │ ├── home │ │ │ ├── checkout.png │ │ │ ├── confirmation.png │ │ │ ├── delivered.png │ │ │ ├── delivery.png │ │ │ ├── footer.svg │ │ │ ├── hero-video.mp4 │ │ │ ├── hero.png │ │ │ ├── kisspng-react-business-javascript-computer-software-npm-react-5b2dd02b688437.5188897215297290674281.png │ │ │ ├── logo.svg │ │ │ ├── nav-cart.png │ │ │ ├── nocart.png │ │ │ ├── small.png │ │ │ ├── underline.png │ │ │ └── up-arrow.png │ │ ├── order │ │ │ ├── close.png │ │ │ └── more.png │ │ └── react.svg │ ├── components │ │ ├── filter │ │ │ ├── Filter.jsx │ │ │ └── Filter.scss │ │ ├── footer │ │ │ ├── Footer.jsx │ │ │ └── Footer.scss │ │ ├── heroSection │ │ │ ├── AboutSection.jsx │ │ │ └── HeroSection.jsx │ │ ├── layout │ │ │ └── Layout.jsx │ │ ├── loader │ │ │ └── Loader.jsx │ │ ├── modal │ │ │ └── Modal.jsx │ │ ├── navbar │ │ │ ├── Navbar.jsx │ │ │ └── Navbar.scss │ │ ├── productCard │ │ │ ├── ProductCard.jsx │ │ │ └── ProductCard.scss │ │ └── track │ │ │ ├── Track.jsx │ │ │ └── Track.scss │ ├── context │ │ └── data │ │ │ ├── myContext.jsx │ │ │ └── myState.jsx │ ├── index.css │ ├── main.jsx │ ├── pages │ │ ├── admin │ │ │ ├── Admin.scss │ │ │ ├── dashboard │ │ │ │ ├── Dashboard.jsx │ │ │ │ └── DashboardTab.jsx │ │ │ └── page │ │ │ │ ├── AddProduct.jsx │ │ │ │ ├── UpdateOrderStatus.jsx │ │ │ │ └── UpdateProduct.jsx │ │ ├── allproducts │ │ │ └── Allproducts.jsx │ │ ├── cart │ │ │ ├── Cart.jsx │ │ │ └── Cart.scss │ │ ├── home │ │ │ └── Home.jsx │ │ ├── nopage │ │ │ └── NoPage.jsx │ │ ├── order │ │ │ └── Order.jsx │ │ ├── other │ │ │ ├── AboutUs.jsx │ │ │ ├── ContactUs.jsx │ │ │ ├── Other.scss │ │ │ ├── PrivacyPolicy.jsx │ │ │ ├── ReturnPolicy.jsx │ │ │ └── TermsCondition.jsx │ │ ├── productInfo │ │ │ ├── ProductInfo.jsx │ │ │ └── ProductInfo.scss │ │ └── registration │ │ │ ├── Login.jsx │ │ │ ├── Register.scss │ │ │ └── Signup.jsx │ └── redux │ │ ├── cartSlice.jsx │ │ └── store.jsx ├── tailwind.config.js ├── vercel.json └── vite.config.js ├── flaslight-effect ├── hero.png ├── index.html ├── main.js └── style.css ├── jokes-extension ├── app.js ├── jokes.json ├── logo.png ├── manifest.json ├── popup.html └── style.css ├── make-pc-speak ├── Readme.md ├── app.js ├── assets │ ├── pause-button.png │ ├── play-button.png │ └── stop-button.png └── index.html ├── netflix-clone ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── netflix.png ├── package-lock.json ├── package.json ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── Navbar.css │ ├── Navbar.jsx │ ├── Poster.css │ ├── Poster.jsx │ ├── Row.css │ ├── Row.jsx │ ├── assets │ │ └── react.svg │ ├── index.css │ ├── main.jsx │ └── utils │ │ ├── axios.js │ │ └── requests.js └── vite.config.js ├── package-lock.json ├── pomodoro-webapp ├── assets │ ├── Alarm06.wav │ ├── icon-arrow-down.svg │ ├── icon-arrow-up.svg │ ├── icon-close.svg │ ├── icon-settings.svg │ └── logo.svg ├── index.html ├── main.js └── styles │ └── style.css ├── responsive-sidebar ├── index.html └── style.css ├── snap-notes ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── components.json ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── appwrite │ │ └── appwriteConfig.js │ ├── assets │ │ ├── logo.svg │ │ └── react.svg │ ├── components │ │ ├── addNote │ │ │ ├── AddNote.jsx │ │ │ └── AddNote.scss │ │ ├── footer │ │ │ ├── Footer.jsx │ │ │ ├── Footer.scss │ │ │ ├── H5Share.jsx │ │ │ └── HoverSocial.jsx │ │ ├── layout │ │ │ └── Layout.jsx │ │ ├── loader │ │ │ └── Loader.jsx │ │ ├── navbar │ │ │ ├── Navbar.jsx │ │ │ └── Navbar.scss │ │ ├── notes │ │ │ ├── EditNote.jsx │ │ │ ├── NoteCard.jsx │ │ │ └── ProductCard.scss │ │ └── ui │ │ │ ├── alert-dialog.jsx │ │ │ ├── avatar.jsx │ │ │ ├── button.jsx │ │ │ ├── card.jsx │ │ │ ├── dialog.jsx │ │ │ ├── dropdown-menu.jsx │ │ │ ├── input.jsx │ │ │ ├── label.jsx │ │ │ ├── popover.jsx │ │ │ ├── skeleton.jsx │ │ │ ├── sonner.jsx │ │ │ ├── textarea.jsx │ │ │ ├── tooltip.jsx │ │ │ └── typewriter-effect.tsx │ ├── context │ │ └── data │ │ │ ├── myContext.jsx │ │ │ └── myState.jsx │ ├── index.css │ ├── lib │ │ └── utils.js │ ├── logo.svg │ ├── main.jsx │ ├── pages │ │ ├── home │ │ │ ├── Home.jsx │ │ │ └── Home.scss │ │ ├── nopage │ │ │ └── NoPage.jsx │ │ ├── registration │ │ │ ├── Login.jsx │ │ │ ├── Register.scss │ │ │ └── Signup.jsx │ │ └── trash │ │ │ └── Trash.jsx │ ├── redux │ │ ├── cartSlice.jsx │ │ └── store.jsx │ └── utils │ │ └── cn.ts ├── tailwind.config.js ├── tsconfig.json ├── vercel.json └── vite.config.js ├── text-bg-image ├── bg.gif ├── bg.jpg └── index.html ├── todo-extension ├── background.js ├── manifest.json ├── popup.css ├── popup.html └── popup.js ├── todoapp ├── README.md ├── app.js ├── index.html └── style.css ├── valentines-day ├── app.js ├── index.html ├── p3.png └── style.css ├── vue-landing-page ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── public │ └── vite.svg ├── src │ ├── App.vue │ ├── assets │ │ ├── baseFooter │ │ │ ├── Link-1.png │ │ │ ├── Link-2.png │ │ │ ├── Link-3.png │ │ │ ├── Link-4.png │ │ │ ├── Link.png │ │ │ ├── nfootup.png │ │ │ └── top.png │ │ ├── fav.png │ │ ├── home │ │ │ ├── about.png │ │ │ ├── brand1.png │ │ │ ├── brand2.png │ │ │ ├── brand3.png │ │ │ ├── brand4.png │ │ │ ├── brand5.png │ │ │ ├── brand6.png │ │ │ ├── c1.png │ │ │ ├── c2.png │ │ │ ├── c3.png │ │ │ ├── car1.png │ │ │ ├── car2.png │ │ │ ├── car3.png │ │ │ ├── car4.png │ │ │ ├── car5.png │ │ │ ├── contact.png │ │ │ ├── core1.png │ │ │ ├── core2.png │ │ │ ├── core3.png │ │ │ ├── core4.png │ │ │ ├── hero-h5.png │ │ │ ├── hero.png │ │ │ ├── join.svg │ │ │ ├── play.png │ │ │ ├── point.png │ │ │ ├── top.png │ │ │ ├── topbot.png │ │ │ ├── topcard1.png │ │ │ ├── topcard2.png │ │ │ ├── topcta.png │ │ │ ├── topcta2.png │ │ │ ├── topcta3.png │ │ │ ├── toptop.png │ │ │ └── trustbg.png │ │ └── navbar │ │ │ ├── React-icon.svg.png │ │ │ ├── headlogo.png │ │ │ ├── lang-en.png │ │ │ └── lang-ru.png │ ├── components │ │ ├── BaseFooter.vue │ │ ├── NavBar.vue │ │ └── home │ │ │ ├── AboutUs.vue │ │ │ ├── CardSection.vue │ │ │ ├── CorePro.vue │ │ │ ├── DivePro.vue │ │ │ ├── HeroSection.vue │ │ │ ├── JoinUs.vue │ │ │ ├── TopTech.vue │ │ │ └── TrustCar.vue │ ├── eventBus.ts │ ├── language │ │ ├── en_US.ts │ │ ├── index.ts │ │ └── ru_RU.ts │ ├── main.ts │ ├── router.ts │ ├── store │ │ ├── commonStore.ts │ │ └── index.ts │ ├── style.css │ ├── views │ │ ├── AboutView.vue │ │ ├── AiView.vue │ │ ├── HomeView.vue │ │ └── TeamView.vue │ └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── xmas ├── app.js ├── index.html └── styles.css └── yt-clone ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── index.html ├── manifest.json ├── robots.txt └── yt.png ├── src ├── App.css ├── App.js ├── App.test.js ├── assets │ ├── search.png │ ├── youtube-logo-icon.webp │ └── youtube-verified.png ├── components │ ├── Body.js │ ├── Button.js │ ├── ChatMessage.js │ ├── CommentsContainer.js │ ├── Error.js │ ├── Head.js │ ├── LiveChat.js │ ├── MainContainer.js │ ├── Sidebar.js │ ├── VideoCard.js │ ├── VideoContainer.js │ └── WatchPage.js ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js ├── setupTests.js └── utils │ ├── appSlice.js │ ├── chatSlice.js │ ├── constants.js │ ├── helper.js │ ├── searchSlice.js │ ├── store.js │ └── useOnlineStatus.js └── tailwind.config.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithharshad/instagram/0e04d19feb08dc7cbb4302eae6e28014fc3c38e7/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /3d-website/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |Immerse yourself in cutting-edge technology and interactive 3D videos that redefine your visual experience.
32 |{t('intro')}
20 |{post.metadata.title}
37 |38 | {post.metadata.publishedAt} 39 |
40 |{location}
41 | )} 42 | {description && ( 43 | 44 | {description} 45 | 46 | )} 47 |20 | Want to chat? Just shoot me a dm{" "} 21 | 25 | with a direct question on LinkedIn 26 | {" "} 27 | and I'll respond whenever I can. I will ignore all 28 | soliciting. 29 |
30 |26 | Discover the timeless wisdom of classical thought and its enduring 27 | relevance in our modern world. Journey through centuries of 28 | philosophical discourse that has shaped human understanding and 29 | continues to influence our perspective on life's greatest questions. 30 |
31 |Happy Valentine's Day ❤️
28 |Life without you is like
HTML without CSS