├── CONTRIBUTING.md ├── Freelancer ├── .gitignore ├── DPT PROJECT.pdf ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.cjs ├── public │ └── favicon.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── components │ │ ├── AddItems.jsx │ │ ├── Breakfast.jsx │ │ ├── Button.jsx │ │ ├── Dinner.jsx │ │ ├── Footer.jsx │ │ ├── Header.jsx │ │ └── Lunch.jsx │ ├── data │ │ └── breakfast.jsx │ ├── index.jsx │ └── screen │ │ └── Loading.jsx ├── tailwind.config.cjs ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.js └── vite.config.js.timestamp-1664574717106.mjs ├── LICENSE.txt ├── Mario Game ├── .eslintrc.js ├── .gitignore ├── README.md ├── favicon.ico ├── package-lock.json ├── package.json ├── src │ ├── img │ │ ├── background.png │ │ ├── hills.png │ │ ├── platform.png │ │ ├── platformSmallTall.png │ │ ├── spriteRunLeft.png │ │ ├── spriteRunRight.png │ │ ├── spriteStandLeft.png │ │ └── spriteStandRight.png │ ├── index.html │ └── js │ │ ├── canvas.js │ │ └── utils.js ├── webpack.config.js └── yarn.lock ├── Projects ├── AdminDashboard │ ├── backend │ │ ├── .gitignore │ │ ├── controllers │ │ │ ├── client.js │ │ │ ├── general.js │ │ │ ├── management.js │ │ │ └── sales.js │ │ ├── data │ │ │ └── index.js │ │ ├── index.js │ │ ├── models │ │ │ ├── AffiliateStat.js │ │ │ ├── OverallStat.js │ │ │ ├── Product.js │ │ │ ├── ProductStat.js │ │ │ ├── Transaction.js │ │ │ └── User.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── routes │ │ │ ├── client.js │ │ │ ├── general.js │ │ │ ├── management.js │ │ │ └── sales.js │ └── frontend │ │ ├── .gitignore │ │ ├── README.md │ │ ├── jsconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── App.js │ │ ├── components │ │ ├── BreakdownChart.jsx │ │ ├── DataGridCustomColumnMenu.jsx │ │ ├── DataGridCustomToolbar.jsx │ │ ├── FlexBetween.jsx │ │ ├── Header.jsx │ │ ├── Navbar.jsx │ │ ├── OverviewChart.jsx │ │ ├── Sidebar.jsx │ │ └── StatBox.jsx │ │ ├── index.css │ │ ├── index.js │ │ ├── scenes │ │ ├── Layout │ │ │ └── index.jsx │ │ ├── Products │ │ │ ├── Product.jsx │ │ │ └── index.jsx │ │ ├── admin │ │ │ └── index.jsx │ │ ├── breakdown │ │ │ └── index.jsx │ │ ├── customers │ │ │ └── index.jsx │ │ ├── daily │ │ │ └── index.jsx │ │ ├── dashboard │ │ │ └── index.jsx │ │ ├── geography │ │ │ └── index.jsx │ │ ├── monthly │ │ │ └── index.jsx │ │ ├── overview │ │ │ └── index.jsx │ │ ├── performance │ │ │ └── index.jsx │ │ └── transactions │ │ │ └── index.jsx │ │ ├── state │ │ ├── api.js │ │ ├── geoData.js │ │ ├── index.js │ │ └── store.js │ │ └── theme.js ├── Airbnb-Build │ ├── .eslintrc.json │ ├── .gitignore │ ├── LEARN.md │ ├── README.md │ ├── backend │ │ ├── .gitignore │ │ ├── DockerFile │ │ ├── InfoCard.js │ │ ├── MediumCard.js │ │ ├── SmallCard.js │ │ ├── docker-compose.yml │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json │ ├── components │ │ ├── Banner.tsx │ │ ├── Footer.tsx │ │ ├── Header.tsx │ │ ├── InfoCard.tsx │ │ ├── LargeCard.tsx │ │ ├── MapBox.tsx │ │ ├── MediumCard.tsx │ │ └── SmallCard.tsx │ ├── next.config.js │ ├── package-lock.json │ ├── package.json │ ├── pages │ │ ├── _app.tsx │ │ ├── api │ │ │ └── hello.ts │ │ ├── index.tsx │ │ └── search.tsx │ ├── postcss.config.js │ ├── public │ │ ├── favicon.ico │ │ ├── googlefa0ef5f32ff7b246.html │ │ ├── images │ │ │ ├── 3643ec104098983.5f5b5ea7c10c5.png │ │ │ ├── 7ce1f13899e1d9a07890bab2ade780ea.png │ │ │ └── Jeannie-Phan-Illustration-Branding-Airbnb-Go-Near.jpg │ │ └── vercel.svg │ ├── styles │ │ └── globals.css │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── utils │ │ ├── info.ts │ │ ├── mediumCarData.ts │ │ └── smallCardData.ts │ └── yarn.lock ├── Beginner │ └── Hello.md ├── ChatGPT-Clone │ ├── .env.example │ ├── .eslintrc.json │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── LEARN.md │ ├── LICENSE.txt │ ├── README.md │ ├── app │ │ ├── chat │ │ │ └── [id] │ │ │ │ ├── head.tsx │ │ │ │ └── page.tsx │ │ ├── head.tsx │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ ├── Chat.tsx │ │ ├── ChatInput.tsx │ │ ├── ChatRow.tsx │ │ ├── ClientProvider.tsx │ │ ├── Login.tsx │ │ ├── Message.tsx │ │ ├── ModelSelection.tsx │ │ ├── NewChat.tsx │ │ ├── SessionProvider.tsx │ │ └── Sidebar.tsx │ ├── firebase │ │ ├── firebase.ts │ │ └── firebaseAdmin.ts │ ├── lib │ │ └── next-auth.d.ts │ ├── next.config.js │ ├── package-lock.json │ ├── package.json │ ├── pages │ │ └── api │ │ │ ├── askQuestion.ts │ │ │ ├── auth │ │ │ └── [...nextauth].ts │ │ │ ├── getEngines.ts │ │ │ └── hello.ts │ ├── postcss.config.js │ ├── public │ │ ├── favicon.ico │ │ ├── next.svg │ │ ├── thirteen.svg │ │ └── vercel.svg │ ├── styles │ │ └── globals.css │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── typing.d.ts │ └── utils │ │ ├── chatgpt.ts │ │ └── queryApi.ts ├── Cryptopunk-Clone │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── Components │ │ ├── CollectionCard.css │ │ ├── CollectionCard.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── Main.css │ │ ├── Main.js │ │ ├── PunkList.css │ │ └── PunkList.js │ │ ├── assets │ │ ├── eth.png │ │ ├── header │ │ │ ├── cryptopunk-logo.png │ │ │ ├── search.png │ │ │ └── theme-switch.png │ │ ├── owner │ │ │ ├── check.png │ │ │ ├── instagram.png │ │ │ ├── more.png │ │ │ ├── punkhead.png │ │ │ └── twitter.png │ │ └── weth.png │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── reportWebVitals.js │ │ └── setupTests.js ├── Full-Stack AMAZON Clone │ ├── .gitignore │ ├── Backend │ │ ├── .gitignore │ │ ├── data.js │ │ ├── dbModel.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── server.js │ ├── README.md │ ├── Stripe │ │ ├── .gitignore │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json │ ├── functions │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── index.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── ui-debug.log │ ├── package-lock.json │ ├── package.json │ ├── product.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── assets │ │ ├── 61BvxKSpy3L._SX3000_.jpg │ │ ├── 711Y9Al9RNL._SX3000_.jpg │ │ ├── 71qid7QFWJL._SX3000_.jpg │ │ ├── firstImage.jpg │ │ └── kettle-desaturated._CB445243794_.svg │ │ ├── components │ │ ├── Checkout.css │ │ ├── Checkout.js │ │ ├── CheckoutProduct.css │ │ ├── CheckoutProduct.js │ │ ├── Footer.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── Home.css │ │ ├── Home.js │ │ ├── Login.css │ │ ├── Login.js │ │ ├── NothingProducts.css │ │ ├── NothingProducts.js │ │ ├── Order.css │ │ ├── Order.js │ │ ├── Orders.css │ │ ├── Orders.js │ │ ├── Payment.css │ │ ├── Payment.js │ │ ├── Product.css │ │ ├── Product.js │ │ ├── ProductAxios.js │ │ ├── ProductDatabase.js │ │ ├── SliderData.js │ │ ├── StateProvider.js │ │ ├── Subtotal.css │ │ ├── Subtotal.js │ │ ├── axios.js │ │ ├── footer.css │ │ └── reducer.js │ │ ├── firebase.js │ │ ├── index.css │ │ ├── index.js │ │ ├── reportWebVitals.js │ │ └── setupTests.js ├── Hulu-Clone │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ └── index.html │ └── src │ │ ├── App.css │ │ ├── App.jsx │ │ ├── axios.jsx │ │ ├── components │ │ ├── Header.css │ │ ├── Header.jsx │ │ ├── Nav.css │ │ ├── Nav.jsx │ │ ├── Results.css │ │ ├── Results.jsx │ │ ├── VideoCard.css │ │ └── VideoCard.jsx │ │ ├── favicon.svg │ │ ├── index.jsx │ │ └── requests.jsx ├── MERN-Stack-App │ ├── .gitignore │ ├── Backend │ │ ├── .gitignore │ │ ├── config.js │ │ ├── graphqL │ │ │ ├── resolvers │ │ │ │ ├── comments.js │ │ │ │ ├── index.js │ │ │ │ ├── post.js │ │ │ │ └── user.js │ │ │ └── typeDefs.js │ │ ├── index.js │ │ ├── models │ │ │ ├── Post.js │ │ │ └── User.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── utils │ │ │ ├── check-auth.js │ │ │ └── validators.js │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ └── src │ │ ├── ApolloProvider.js │ │ ├── App.css │ │ ├── App.js │ │ ├── components │ │ ├── DeleteButton.js │ │ ├── LikeButton.js │ │ ├── MenuBar.js │ │ ├── PostCard.js │ │ └── PostForm.js │ │ ├── context │ │ └── auth.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages │ │ ├── Home.js │ │ ├── Login.js │ │ ├── Register.js │ │ └── SinglePost.js │ │ ├── reportWebVitals.js │ │ ├── setupTests.js │ │ └── utils │ │ ├── AuthRoute.js │ │ ├── MyPopup.js │ │ ├── graphql.js │ │ └── hooks.js ├── META-Messenger-Clone │ ├── .env.example │ ├── .eslintrc.json │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── LEARN.md │ ├── README.md │ ├── app │ │ ├── ChatInput.tsx │ │ ├── Header.tsx │ │ ├── LogoutButton.tsx │ │ ├── MessageLIst.tsx │ │ ├── Messagecomponents.tsx │ │ ├── auth │ │ │ └── signin │ │ │ │ ├── SignInComponents.tsx │ │ │ │ ├── head.tsx │ │ │ │ └── page.tsx │ │ ├── head.tsx │ │ ├── layout.tsx │ │ ├── loading.tsx │ │ ├── page.tsx │ │ └── providers.tsx │ ├── javascript │ │ ├── .gitignore │ │ ├── MERN stack │ │ │ ├── .firebaserc │ │ │ ├── .gitignore │ │ │ ├── Backend │ │ │ │ ├── .gitignore │ │ │ │ ├── messageModel.js │ │ │ │ ├── package-lock.json │ │ │ │ ├── package.json │ │ │ │ └── server.js │ │ │ ├── README.md │ │ │ ├── firebase.json │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── logo192.png │ │ │ │ ├── logo512.png │ │ │ │ ├── manifest.json │ │ │ │ └── robots.txt │ │ │ └── src │ │ │ │ ├── App.css │ │ │ │ ├── App.js │ │ │ │ ├── Massage.css │ │ │ │ ├── Message.js │ │ │ │ ├── axios.js │ │ │ │ ├── firebase.js │ │ │ │ ├── index.css │ │ │ │ ├── index.js │ │ │ │ └── reportWebVitals.js │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.js │ │ │ ├── Massage.css │ │ │ ├── Message.js │ │ │ ├── firebase.js │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ └── reportWebVitals.js │ ├── next.config.js │ ├── package-lock.json │ ├── package.json │ ├── pages │ │ ├── _document.tsx │ │ └── api │ │ │ ├── addMessage.ts │ │ │ ├── auth │ │ │ └── [...nextauth].ts │ │ │ ├── getMessages.ts │ │ │ └── hello.ts │ ├── postcss.config.js │ ├── public │ │ ├── Facebook-Messenger-Logo.png │ │ ├── favicon.ico │ │ ├── logo-Meta.png │ │ ├── next.svg │ │ ├── thirteen.svg │ │ └── vercel.svg │ ├── pusher.ts │ ├── redis.ts │ ├── styles │ │ └── globals.css │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── typings.d.ts │ └── utils │ │ └── fetchMessages.ts ├── Pinterest-Clone │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── api │ │ │ └── unplash.ts │ │ ├── app │ │ │ ├── hooks.ts │ │ │ └── store.ts │ │ ├── components │ │ │ ├── Header.tsx │ │ │ ├── MainBoard.tsx │ │ │ └── Pin.tsx │ │ ├── features │ │ │ └── counter │ │ │ │ ├── Counter.module.css │ │ │ │ ├── Counter.tsx │ │ │ │ ├── counterAPI.ts │ │ │ │ ├── counterSlice.spec.ts │ │ │ │ └── counterSlice.ts │ │ ├── index.css │ │ ├── index.tsx │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ └── setupTests.ts │ └── tsconfig.json ├── SaaS Notion Clone │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── (auth) │ │ │ ├── login │ │ │ │ └── page.tsx │ │ │ ├── signup │ │ │ │ └── page.tsx │ │ │ └── template.tsx │ │ ├── (main) │ │ │ └── dashboard │ │ │ │ ├── [workspaceId] │ │ │ │ ├── [folderId] │ │ │ │ │ ├── [fileId] │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ ├── (site) │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── api │ │ │ └── auth │ │ │ │ └── callback │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ └── layout.tsx │ ├── components.json │ ├── components │ │ ├── dashboard-setup │ │ │ └── dashboard-setup.tsx │ │ ├── global │ │ │ ├── Loader.tsx │ │ │ ├── collaborator-search.tsx │ │ │ ├── custom-dialog-trigger.tsx │ │ │ ├── emoji-picker.tsx │ │ │ ├── logout-button.tsx │ │ │ ├── mode-toggle.tsx │ │ │ ├── tooltip-component.tsx │ │ │ └── workspace-creator.tsx │ │ ├── icons │ │ │ ├── cypressDiamongIcon.tsx │ │ │ ├── cypressHomeIcon.tsx │ │ │ ├── cypressMarketIcon.tsx │ │ │ ├── cypressMessageIcon.tsx │ │ │ ├── cypressPageIcon.tsx │ │ │ ├── cypressProfileIcon.tsx │ │ │ ├── cypressSettingsIcon.tsx │ │ │ ├── cypressTemplatesIcon.tsx │ │ │ └── cypressTrashIcon.tsx │ │ ├── landing-page │ │ │ ├── custom-card.tsx │ │ │ ├── header.tsx │ │ │ └── title-section.tsx │ │ ├── quill-editor │ │ │ └── quill-editor.tsx │ │ ├── settings │ │ │ ├── Settings.tsx │ │ │ └── settings-form.tsx │ │ ├── sidebar │ │ │ ├── Sidebar.tsx │ │ │ ├── drop-down.tsx │ │ │ ├── folders-dropdownList.tsx │ │ │ ├── native-navigation.tsx │ │ │ ├── plan-usage.tsx │ │ │ ├── selected-workspace.tsx │ │ │ ├── user-card.tsx │ │ │ └── workspace-dropdown.tsx │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert.tsx │ │ │ ├── avatar.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── dialog.tsx │ │ │ ├── form.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── navigation-menu.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ ├── tooltip.tsx │ │ │ └── use-toast.ts │ ├── drizzle.config.ts │ ├── lib │ │ ├── constants.ts │ │ ├── providers │ │ │ ├── next-theme-provider.tsx │ │ │ ├── state-provider.tsx │ │ │ └── supabase-user-provider.tsx │ │ ├── server-actions │ │ │ └── auth-actions.ts │ │ ├── supabase │ │ │ ├── db.ts │ │ │ ├── queries.ts │ │ │ └── schema.ts │ │ └── utils.ts │ ├── middleware.ts │ ├── migrations │ │ ├── 0000_workable_risque.sql │ │ ├── 0001_common_calypso.sql │ │ ├── 0002_reflective_malice.sql │ │ ├── 0003_loving_jocasta.sql │ │ ├── 0004_clean_zombie.sql │ │ ├── 0005_wonderful_runaways.sql │ │ ├── 0006_cooing_natasha_romanoff.sql │ │ ├── 0007_rainy_shriek.sql │ │ ├── 0008_ambiguous_morlun.sql │ │ ├── 0009_unknown_arclight.sql │ │ ├── meta │ │ │ ├── 0000_snapshot.json │ │ │ ├── 0001_snapshot.json │ │ │ ├── 0002_snapshot.json │ │ │ ├── 0003_snapshot.json │ │ │ ├── 0004_snapshot.json │ │ │ ├── 0005_snapshot.json │ │ │ ├── 0006_snapshot.json │ │ │ ├── 0007_snapshot.json │ │ │ ├── 0008_snapshot.json │ │ │ ├── 0009_snapshot.json │ │ │ └── _journal.json │ │ ├── relations.ts │ │ └── schema.ts │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ │ ├── appBanner.png │ │ ├── avatars │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 17.png │ │ │ ├── 18.png │ │ │ ├── 19.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── cal.png │ │ ├── client1.png │ │ ├── client2.png │ │ ├── client3.png │ │ ├── client4.png │ │ ├── client5.png │ │ ├── cypresslogo.svg │ │ ├── icons │ │ │ ├── check.svg │ │ │ └── diamond.svg │ │ ├── next.svg │ │ └── vercel.svg │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── types │ │ ├── supabase.ts │ │ └── types.ts ├── TIK-TOK-Clone │ ├── README.md │ ├── TIK-TOK-Clone (Back-end) │ │ ├── data.js │ │ ├── dbModel.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── server.js │ └── TIK-TOK-Clone (Front-end) │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ ├── pngwing.com (1).png │ │ └── robots.txt │ │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── Video.css │ │ ├── Video.js │ │ ├── VideoFooter.css │ │ ├── VideoFooter.js │ │ ├── VideoSideBar.css │ │ ├── VideoSideBar.js │ │ ├── axios.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pngwing.com (1).png │ │ ├── reportWebVitals.js │ │ ├── setupTests.js │ │ └── web.js ├── TINDER-Clone │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── components │ │ ├── Chat.css │ │ ├── Chat.js │ │ ├── ChatScreen.css │ │ ├── ChatScreen.js │ │ ├── Chats.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── SwipeButtons.css │ │ ├── SwipeButtons.js │ │ ├── TinderCard.css │ │ └── TinderCards.js │ │ ├── firebase.js │ │ ├── index.css │ │ ├── index.js │ │ ├── reportWebVitals.js │ │ └── setupTests.js ├── Tesla-Clone │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── app │ │ │ └── store.js │ │ ├── components │ │ │ ├── Header.js │ │ │ ├── Home.js │ │ │ └── Section.js │ │ ├── features │ │ │ └── Car │ │ │ │ └── carSlice.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── reportWebVitals.js │ │ └── setupTests.js │ └── yarn.lock ├── To-Do-App │ ├── .gitignore │ ├── README.md │ ├── data.json │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.css │ │ ├── App.js │ │ ├── components │ │ │ ├── Blog.jsx │ │ │ ├── Continue.jsx │ │ │ ├── Feed.jsx │ │ │ ├── Header.jsx │ │ │ ├── IsChecked.jsx │ │ │ ├── OAuthButtons.jsx │ │ │ ├── ProfileModel.jsx │ │ │ ├── ProfileSide.jsx │ │ │ ├── ProfileUpdate.jsx │ │ │ ├── ToDoInput.jsx │ │ │ └── UpdateModel.jsx │ │ ├── firebase │ │ │ └── firebase.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages │ │ │ ├── blogScreen.jsx │ │ │ ├── login.jsx │ │ │ ├── mainContain.jsx │ │ │ └── singin.jsx │ │ ├── reportWebVitals.js │ │ ├── setupTests.js │ │ └── styles │ │ │ ├── index.pug │ │ │ ├── main.css │ │ │ └── styles.sass │ └── tailwind.config.js └── roadmap │ └── Roadmap.md ├── README.md ├── React Native └── FoodOrdering │ ├── .gitignore │ ├── app.json │ ├── assets │ ├── data │ │ ├── orders.ts │ │ └── products.ts │ ├── fonts │ │ └── SpaceMono-Regular.ttf │ └── images │ │ ├── adaptive-icon.png │ │ ├── favicon.png │ │ ├── icon.png │ │ └── splash.png │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── app │ │ ├── (tabs) │ │ │ ├── _layout.tsx │ │ │ ├── index.tsx │ │ │ ├── menu │ │ │ │ ├── [id].tsx │ │ │ │ ├── _layout.tsx │ │ │ │ └── index.tsx │ │ │ └── two.tsx │ │ ├── +html.tsx │ │ ├── +not-found.tsx │ │ ├── _layout.tsx │ │ └── cart.tsx │ ├── components │ │ ├── Button.tsx │ │ ├── EditScreenInfo.tsx │ │ ├── ExternalLink.tsx │ │ ├── ProductList.tsx │ │ ├── StyledText.tsx │ │ ├── Themed.tsx │ │ ├── __tests__ │ │ │ └── StyledText-test.js │ │ ├── useClientOnlyValue.ts │ │ ├── useClientOnlyValue.web.ts │ │ ├── useColorScheme.ts │ │ └── useColorScheme.web.ts │ ├── constants │ │ └── Colors.ts │ ├── providers │ │ └── CartProvider.tsx │ └── types.ts │ └── tsconfig.json ├── React js ├── Api with Golang │ ├── .gitignore │ ├── controllers │ │ └── postController.go │ ├── go.mod │ ├── go.sum │ ├── initializers │ │ ├── database.go │ │ └── loadEnvVariables.go │ ├── main.go │ ├── migrate │ │ └── migrate.go │ └── models │ │ └── postModel.go ├── My First App (React js) │ ├── .gitignore │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── components │ │ ├── MyButton.js │ │ └── ProfileCard.js │ │ ├── fakeData.js │ │ ├── index.css │ │ └── index.js ├── README.md ├── React TypeScript │ ├── Advanced Props │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ ├── Greet.tsx │ │ │ ├── Heading.tsx │ │ │ ├── Oscar.tsx │ │ │ ├── Person.tsx │ │ │ ├── Personlist.tsx │ │ │ └── Status.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ ├── reportWebVitals.ts │ │ │ └── setupTests.ts │ ├── Basic Props │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ ├── Greet.tsx │ │ │ ├── Person.tsx │ │ │ └── Personlist.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ ├── reportWebVitals.ts │ │ │ └── setupTests.ts │ ├── Class Component │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ └── class │ │ │ │ └── Counter.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ ├── reportWebVitals.ts │ │ │ └── setupTests.ts │ ├── Component Prop │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ └── auth │ │ │ │ ├── Login.tsx │ │ │ │ ├── Private.tsx │ │ │ │ └── Profile.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ ├── reportWebVitals.ts │ │ │ └── setupTests.ts │ ├── Event Props │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ ├── Button.tsx │ │ │ └── Input.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ ├── reportWebVitals.ts │ │ │ └── setupTests.ts │ ├── Extracting a Components Prop Types │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ ├── Greet.tsx │ │ │ └── html │ │ │ │ ├── Button.tsx │ │ │ │ ├── CustomComponent.tsx │ │ │ │ └── Input.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ ├── reportWebVitals.ts │ │ │ └── setupTests.ts │ ├── Generic Props │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ ├── auth │ │ │ │ ├── Login.tsx │ │ │ │ ├── Private.tsx │ │ │ │ └── Profile.tsx │ │ │ └── genetics │ │ │ │ └── List.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ ├── reportWebVitals.ts │ │ │ └── setupTests.ts │ ├── Polymorphic Components │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ └── polymorphic │ │ │ │ └── Text.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ ├── reportWebVitals.ts │ │ │ └── setupTests.ts │ ├── Prop Types and Tips │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ ├── Button.tsx │ │ │ ├── Container.tsx │ │ │ ├── Greet.tsx │ │ │ ├── Heading.tsx │ │ │ ├── Input.tsx │ │ │ ├── Oscar.tsx │ │ │ ├── Person.tsx │ │ │ ├── Personlist.tsx │ │ │ ├── Persontype.ts │ │ │ └── Status.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ ├── reportWebVitals.ts │ │ │ └── setupTests.ts │ ├── Restricting Props │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ ├── auth │ │ │ │ ├── Login.tsx │ │ │ │ ├── Private.tsx │ │ │ │ └── Profile.tsx │ │ │ └── restriction │ │ │ │ └── RandomNumber.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ ├── reportWebVitals.ts │ │ │ └── setupTests.ts │ ├── Setup │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ └── Greet.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ ├── reportWebVitals.ts │ │ │ └── setupTests.ts │ ├── Style Props │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ └── Container.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ ├── reportWebVitals.ts │ │ │ └── setupTests.ts │ ├── Template Literals and Exclude │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ ├── auth │ │ │ │ ├── Login.tsx │ │ │ │ ├── Private.tsx │ │ │ │ └── Profile.tsx │ │ │ ├── restriction │ │ │ │ ├── RandomNumber.tsx │ │ │ │ └── Status.tsx │ │ │ └── template │ │ │ │ └── Toast.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ ├── reportWebVitals.ts │ │ │ └── setupTests.ts │ ├── Typing Props │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ └── Greet.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ ├── reportWebVitals.ts │ │ │ └── setupTests.ts │ ├── Wrapping HTML Elements │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ ├── html │ │ │ │ ├── Button.tsx │ │ │ │ └── Input.tsx │ │ │ └── template │ │ │ │ └── Toast.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ ├── reportWebVitals.ts │ │ │ └── setupTests.ts │ ├── useContext Future Value │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ ├── context │ │ │ │ ├── Box.tsx │ │ │ │ ├── ThameContext.tsx │ │ │ │ ├── User.tsx │ │ │ │ ├── UserContext.tsx │ │ │ │ └── thame.ts │ │ │ └── state │ │ │ │ ├── Counter.tsx │ │ │ │ ├── Loggedln.tsx │ │ │ │ └── User.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ ├── reportWebVitals.ts │ │ │ └── setupTests.ts │ ├── useContext Hook │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ ├── context │ │ │ │ ├── Box.tsx │ │ │ │ ├── ThameContext.tsx │ │ │ │ └── thame.ts │ │ │ └── state │ │ │ │ ├── Counter.tsx │ │ │ │ ├── Loggedln.tsx │ │ │ │ └── User.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ ├── reportWebVitals.ts │ │ │ └── setupTests.ts │ ├── useReducer Hook │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ └── state │ │ │ │ ├── Counter.tsx │ │ │ │ ├── Loggedln.tsx │ │ │ │ └── User.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ ├── reportWebVitals.ts │ │ │ └── setupTests.ts │ ├── useReducer Strict Action Types │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ └── state │ │ │ │ ├── Counter.tsx │ │ │ │ ├── Loggedln.tsx │ │ │ │ └── User.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ ├── reportWebVitals.ts │ │ │ └── setupTests.ts │ ├── useRef Hook │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ └── ref │ │ │ │ ├── DomRef.tsx │ │ │ │ └── Mutablekef.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ ├── reportWebVitals.ts │ │ │ └── setupTests.ts │ ├── useState Future Value │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ └── state │ │ │ │ ├── Loggedln.tsx │ │ │ │ └── User.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ ├── reportWebVitals.ts │ │ │ └── setupTests.ts │ ├── useState Hook │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ └── state │ │ │ │ └── Loggedln.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ ├── reportWebVitals.ts │ │ │ └── setupTests.ts │ └── useState Type Assertion │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── App.css │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── components │ │ └── state │ │ │ ├── Loggedln.tsx │ │ │ └── User.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── logo.svg │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ └── setupTests.ts └── TypeScript │ ├── 10_Function Signatures │ ├── public │ │ ├── app.js │ │ └── index.html │ ├── src │ │ └── app.ts │ └── tsconfig.json │ ├── 11_The DOM & Type Casting │ ├── public │ │ ├── app.js │ │ ├── index.html │ │ └── styles.css │ ├── src │ │ └── app.ts │ └── tsconfig.json │ ├── 12_Classes │ ├── public │ │ ├── app.js │ │ ├── index.html │ │ └── styles.css │ ├── src │ │ └── app.ts │ └── tsconfig.json │ ├── 13_Public, Private & Readonly │ ├── public │ │ ├── app.js │ │ ├── index.html │ │ └── styles.css │ ├── src │ │ └── app.ts │ └── tsconfig.json │ ├── 14_Modules │ ├── public │ │ ├── app.js │ │ ├── class │ │ │ └── invoice.js │ │ ├── index.html │ │ └── styles.css │ ├── src │ │ ├── app.ts │ │ └── class │ │ │ ├── invoice.js │ │ │ └── invoice.ts │ └── tsconfig.json │ ├── 15_Interfaces │ ├── public │ │ ├── app.js │ │ ├── index.html │ │ └── styles.css │ ├── src │ │ └── app.ts │ └── tsconfig.json │ ├── 16_Interfaces with Classes │ ├── public │ │ ├── app.js │ │ ├── classes │ │ │ ├── Invoice.js │ │ │ └── Payment.js │ │ ├── index.html │ │ ├── interfaces │ │ │ └── HasFormatter.js │ │ └── styles.css │ ├── src │ │ ├── app.ts │ │ ├── classes │ │ │ ├── Invoice.ts │ │ │ └── Payment.ts │ │ └── interfaces │ │ │ └── HasFormatter.ts │ └── tsconfig.json │ ├── 17_Rendering an HTML Template │ ├── public │ │ ├── app.js │ │ ├── classes │ │ │ ├── Invoice.js │ │ │ ├── ListTemplate.js │ │ │ └── Payment.js │ │ ├── index.html │ │ ├── interfaces │ │ │ └── HasFormatter.js │ │ └── styles.css │ ├── src │ │ ├── app.ts │ │ ├── classes │ │ │ ├── Invoice.ts │ │ │ ├── ListTemplate.ts │ │ │ └── Payment.ts │ │ └── interfaces │ │ │ └── HasFormatter.ts │ └── tsconfig.json │ ├── 18_Generics │ ├── public │ │ ├── app.js │ │ ├── classes │ │ │ ├── Invoice.js │ │ │ ├── ListTemplate.js │ │ │ └── Payment.js │ │ ├── index.html │ │ ├── interfaces │ │ │ └── HasFormatter.js │ │ └── styles.css │ ├── src │ │ ├── app.ts │ │ ├── classes │ │ │ ├── Invoice.ts │ │ │ ├── ListTemplate.ts │ │ │ └── Payment.ts │ │ └── interfaces │ │ │ └── HasFormatter.ts │ └── tsconfig.json │ ├── 19_Enums │ ├── public │ │ ├── app.js │ │ ├── classes │ │ │ ├── Invoice.js │ │ │ ├── ListTemplate.js │ │ │ └── Payment.js │ │ ├── index.html │ │ ├── interfaces │ │ │ └── HasFormatter.js │ │ └── styles.css │ ├── src │ │ ├── app.ts │ │ ├── classes │ │ │ ├── Invoice.ts │ │ │ ├── ListTemplate.ts │ │ │ └── Payment.ts │ │ └── interfaces │ │ │ └── HasFormatter.ts │ └── tsconfig.json │ ├── 1_Setup │ ├── index.html │ ├── sandbox.js │ ├── sandbox.ts │ └── style.css │ ├── 20_Tuples │ ├── public │ │ ├── app.js │ │ ├── classes │ │ │ ├── Invoice.js │ │ │ ├── ListTemplate.js │ │ │ ├── Payment.js │ │ │ └── RenderList.js │ │ ├── index.html │ │ ├── interfaces │ │ │ └── HasFormatter.js │ │ └── styles.css │ ├── src │ │ ├── app.ts │ │ ├── classes │ │ │ ├── Invoice.ts │ │ │ ├── ListTemplate.ts │ │ │ └── Payment.ts │ │ └── interfaces │ │ │ └── HasFormatter.ts │ └── tsconfig.json │ ├── 2_Compiling │ ├── index.html │ ├── sandbox.js │ ├── sandbox.ts │ └── style.css │ ├── 3_Basics │ ├── index.html │ ├── sandbox.js │ └── sandbox.ts │ ├── 4_Objects & Arrays │ ├── index.html │ ├── sandbox.js │ └── sandbox.ts │ ├── 5_Explicit Types │ ├── index.html │ ├── sandbox.js │ └── sandbox.ts │ ├── 6_Dynamic Types │ ├── app.js │ ├── app.ts │ └── index.html │ ├── 7_Better Workflow & tsconfig │ ├── public │ │ ├── app.js │ │ ├── index.html │ │ └── test.js │ ├── script.ts │ ├── src │ │ ├── app.js │ │ ├── app.ts │ │ └── test.ts │ └── tsconfig.json │ ├── 8_Function Basics │ ├── public │ │ ├── app.js │ │ └── index.html │ ├── src │ │ └── app.ts │ └── tsconfig.json │ ├── 9_Type Aliases │ ├── public │ │ ├── app.js │ │ └── index.html │ ├── src │ │ └── app.ts │ └── tsconfig.json │ └── README.md ├── Rock Paper Scissors ├── All games │ ├── images │ │ ├── pngwing.com (1).png │ │ ├── pngwing.com (2).png │ │ └── pngwing.com (3).png │ ├── index.html │ ├── script.js │ └── style.css ├── Cat Generator │ ├── index.html │ ├── script.js │ └── style.css ├── Core Concepts │ ├── A Basic Calculator │ │ ├── index.html │ │ └── script.js │ ├── Accessing HTML Elements │ │ ├── index.html │ │ └── script.js │ ├── Arrays │ │ ├── index.html │ │ └── script.js │ ├── Building a Messaging App │ │ ├── index.html │ │ └── script.js │ ├── Building a Multiple Choice Quiz │ │ ├── index.html │ │ └── script.js │ ├── Building a Password Checker │ │ ├── index.html │ │ └── script.js │ ├── Event Listeners │ │ ├── image.jpg │ │ ├── index.html │ │ └── script.js │ ├── For Each Loops │ │ ├── index.html │ │ └── script.js │ ├── For Loops │ │ ├── index.html │ │ └── script.js │ ├── Functions │ │ ├── index.html │ │ └── script.js │ ├── Getting User Input │ │ ├── index.html │ │ └── script.js │ ├── Hello World │ │ └── index.html │ ├── If Statements comparisons │ │ ├── index.html │ │ └── script.js │ ├── If Statements │ │ ├── index.html │ │ └── script.js │ ├── Math & Numbers │ │ ├── index.html │ │ └── script.js │ ├── Nested Loops & 2D Arrays │ │ ├── index.html │ │ └── script.js │ ├── Objects │ │ ├── index.html │ │ └── script.js │ ├── Real world objects │ │ ├── index.html │ │ └── script.js │ ├── Switch Statements │ │ ├── index.html │ │ └── script.js │ ├── Timing │ │ ├── index.html │ │ └── script.js │ ├── Using External Files │ │ ├── index.html │ │ ├── page2.html │ │ └── script.js │ ├── Variables & Data Types │ │ ├── index.html │ │ └── script.js │ ├── Web Storage │ │ ├── index.html │ │ └── script.js │ ├── While Loops │ │ ├── index.html │ │ └── script.js │ ├── Working With Strings │ │ ├── index.html │ │ └── script.js │ └── Writing HTML in Javascript │ │ ├── index.html │ │ └── script.js ├── Core Concepts2 │ ├── Data Types in Javascript │ │ └── app.js │ ├── Functions in Javascript │ │ ├── app.js │ │ └── index.html │ ├── How to run your first Program with Javascript │ │ ├── index.html │ │ ├── index2.html │ │ ├── script.js │ │ └── style.css │ ├── If else conditionals and switch statements │ │ ├── app.js │ │ ├── index.html │ │ └── script.js │ ├── JSON │ │ ├── index.html │ │ └── students.json │ ├── Javascript in Arrays │ │ ├── app.js │ │ └── index.html │ ├── Manipulate the DOM │ │ ├── app.js │ │ └── index.html │ ├── Numbers in Javascript │ │ ├── app.js │ │ └── index.html │ ├── Objects in Javascript │ │ ├── app.js │ │ └── index.html │ ├── Strings (Common Methods) │ │ ├── app.js │ │ └── index.html │ └── While vs. For Loops in Javascript │ │ ├── app.js │ │ └── index.html ├── Memory Game │ ├── images │ │ ├── 31958260.jpg │ │ ├── 31958261.jpg │ │ ├── 31958262.jpg │ │ ├── 31958263.jpg │ │ ├── 31958264.jpg │ │ ├── 31958265.jpg │ │ ├── 31958266.jpg │ │ ├── 31958267.jpg │ │ ├── 31958269.jpg │ │ ├── 31958270.jpg │ │ ├── 31958272.jpg │ │ └── pure-white-background-85a2a7fd.jpg │ ├── index.html │ ├── script.js │ └── style.css ├── README.md ├── Rock Paper Scissors 02 │ ├── index.html │ └── script.js ├── Rock Paper Scissors │ ├── images │ │ ├── pngwing.com (1).png │ │ ├── pngwing.com (2).png │ │ └── pngwing.com (3).png │ ├── index.html │ ├── script.js │ └── style.css └── Your age in days │ ├── index.html │ ├── script.js │ └── style.css └── website ├── .eslintrc.json ├── .gitignore ├── ProjectData.tsx ├── compiler.txt ├── components ├── AdSide.tsx ├── Card.tsx ├── Contact.tsx ├── Footer.tsx ├── Frameworks.tsx ├── Header.tsx ├── OpenCard.tsx ├── ProjectIdeas.tsx ├── ReactCard.tsx └── ThankyouCard.tsx ├── firebase.ts ├── next.config.js ├── package-lock.json ├── package.json ├── pages ├── _app.tsx ├── api │ └── hello.ts └── index.tsx ├── postcss.config.js ├── public ├── favicon.ico └── vercel.svg ├── styles ├── background.pug ├── globals.css └── globals.scss ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Freelancer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/.gitignore -------------------------------------------------------------------------------- /Freelancer/DPT PROJECT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/DPT PROJECT.pdf -------------------------------------------------------------------------------- /Freelancer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/README.md -------------------------------------------------------------------------------- /Freelancer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/index.html -------------------------------------------------------------------------------- /Freelancer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/package-lock.json -------------------------------------------------------------------------------- /Freelancer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/package.json -------------------------------------------------------------------------------- /Freelancer/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/postcss.config.cjs -------------------------------------------------------------------------------- /Freelancer/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/public/favicon.svg -------------------------------------------------------------------------------- /Freelancer/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/src/App.css -------------------------------------------------------------------------------- /Freelancer/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/src/App.jsx -------------------------------------------------------------------------------- /Freelancer/src/components/AddItems.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/src/components/AddItems.jsx -------------------------------------------------------------------------------- /Freelancer/src/components/Breakfast.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/src/components/Breakfast.jsx -------------------------------------------------------------------------------- /Freelancer/src/components/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/src/components/Button.jsx -------------------------------------------------------------------------------- /Freelancer/src/components/Dinner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/src/components/Dinner.jsx -------------------------------------------------------------------------------- /Freelancer/src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/src/components/Footer.jsx -------------------------------------------------------------------------------- /Freelancer/src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/src/components/Header.jsx -------------------------------------------------------------------------------- /Freelancer/src/components/Lunch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/src/components/Lunch.jsx -------------------------------------------------------------------------------- /Freelancer/src/data/breakfast.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/src/data/breakfast.jsx -------------------------------------------------------------------------------- /Freelancer/src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/src/index.jsx -------------------------------------------------------------------------------- /Freelancer/src/screen/Loading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/src/screen/Loading.jsx -------------------------------------------------------------------------------- /Freelancer/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/tailwind.config.cjs -------------------------------------------------------------------------------- /Freelancer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/tsconfig.json -------------------------------------------------------------------------------- /Freelancer/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/tsconfig.node.json -------------------------------------------------------------------------------- /Freelancer/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/vite.config.js -------------------------------------------------------------------------------- /Freelancer/vite.config.js.timestamp-1664574717106.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Freelancer/vite.config.js.timestamp-1664574717106.mjs -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Mario Game/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Mario Game/.eslintrc.js -------------------------------------------------------------------------------- /Mario Game/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .ds_store 3 | -------------------------------------------------------------------------------- /Mario Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Mario Game/README.md -------------------------------------------------------------------------------- /Mario Game/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Mario Game/favicon.ico -------------------------------------------------------------------------------- /Mario Game/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Mario Game/package-lock.json -------------------------------------------------------------------------------- /Mario Game/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Mario Game/package.json -------------------------------------------------------------------------------- /Mario Game/src/img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Mario Game/src/img/background.png -------------------------------------------------------------------------------- /Mario Game/src/img/hills.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Mario Game/src/img/hills.png -------------------------------------------------------------------------------- /Mario Game/src/img/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Mario Game/src/img/platform.png -------------------------------------------------------------------------------- /Mario Game/src/img/platformSmallTall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Mario Game/src/img/platformSmallTall.png -------------------------------------------------------------------------------- /Mario Game/src/img/spriteRunLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Mario Game/src/img/spriteRunLeft.png -------------------------------------------------------------------------------- /Mario Game/src/img/spriteRunRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Mario Game/src/img/spriteRunRight.png -------------------------------------------------------------------------------- /Mario Game/src/img/spriteStandLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Mario Game/src/img/spriteStandLeft.png -------------------------------------------------------------------------------- /Mario Game/src/img/spriteStandRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Mario Game/src/img/spriteStandRight.png -------------------------------------------------------------------------------- /Mario Game/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Mario Game/src/index.html -------------------------------------------------------------------------------- /Mario Game/src/js/canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Mario Game/src/js/canvas.js -------------------------------------------------------------------------------- /Mario Game/src/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Mario Game/src/js/utils.js -------------------------------------------------------------------------------- /Mario Game/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Mario Game/webpack.config.js -------------------------------------------------------------------------------- /Mario Game/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Mario Game/yarn.lock -------------------------------------------------------------------------------- /Projects/AdminDashboard/backend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env -------------------------------------------------------------------------------- /Projects/AdminDashboard/backend/controllers/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/backend/controllers/client.js -------------------------------------------------------------------------------- /Projects/AdminDashboard/backend/controllers/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/backend/controllers/general.js -------------------------------------------------------------------------------- /Projects/AdminDashboard/backend/controllers/sales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/backend/controllers/sales.js -------------------------------------------------------------------------------- /Projects/AdminDashboard/backend/data/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/backend/data/index.js -------------------------------------------------------------------------------- /Projects/AdminDashboard/backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/backend/index.js -------------------------------------------------------------------------------- /Projects/AdminDashboard/backend/models/OverallStat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/backend/models/OverallStat.js -------------------------------------------------------------------------------- /Projects/AdminDashboard/backend/models/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/backend/models/Product.js -------------------------------------------------------------------------------- /Projects/AdminDashboard/backend/models/ProductStat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/backend/models/ProductStat.js -------------------------------------------------------------------------------- /Projects/AdminDashboard/backend/models/Transaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/backend/models/Transaction.js -------------------------------------------------------------------------------- /Projects/AdminDashboard/backend/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/backend/models/User.js -------------------------------------------------------------------------------- /Projects/AdminDashboard/backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/backend/package-lock.json -------------------------------------------------------------------------------- /Projects/AdminDashboard/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/backend/package.json -------------------------------------------------------------------------------- /Projects/AdminDashboard/backend/routes/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/backend/routes/client.js -------------------------------------------------------------------------------- /Projects/AdminDashboard/backend/routes/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/backend/routes/general.js -------------------------------------------------------------------------------- /Projects/AdminDashboard/backend/routes/management.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/backend/routes/management.js -------------------------------------------------------------------------------- /Projects/AdminDashboard/backend/routes/sales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/backend/routes/sales.js -------------------------------------------------------------------------------- /Projects/AdminDashboard/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/frontend/.gitignore -------------------------------------------------------------------------------- /Projects/AdminDashboard/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/frontend/README.md -------------------------------------------------------------------------------- /Projects/AdminDashboard/frontend/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/frontend/jsconfig.json -------------------------------------------------------------------------------- /Projects/AdminDashboard/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/frontend/package-lock.json -------------------------------------------------------------------------------- /Projects/AdminDashboard/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/frontend/package.json -------------------------------------------------------------------------------- /Projects/AdminDashboard/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/frontend/public/favicon.ico -------------------------------------------------------------------------------- /Projects/AdminDashboard/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/frontend/public/index.html -------------------------------------------------------------------------------- /Projects/AdminDashboard/frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/frontend/public/logo192.png -------------------------------------------------------------------------------- /Projects/AdminDashboard/frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/frontend/public/logo512.png -------------------------------------------------------------------------------- /Projects/AdminDashboard/frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/frontend/public/manifest.json -------------------------------------------------------------------------------- /Projects/AdminDashboard/frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/frontend/public/robots.txt -------------------------------------------------------------------------------- /Projects/AdminDashboard/frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/frontend/src/App.js -------------------------------------------------------------------------------- /Projects/AdminDashboard/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/frontend/src/index.css -------------------------------------------------------------------------------- /Projects/AdminDashboard/frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/frontend/src/index.js -------------------------------------------------------------------------------- /Projects/AdminDashboard/frontend/src/state/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/frontend/src/state/api.js -------------------------------------------------------------------------------- /Projects/AdminDashboard/frontend/src/state/geoData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/frontend/src/state/geoData.js -------------------------------------------------------------------------------- /Projects/AdminDashboard/frontend/src/state/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/frontend/src/state/index.js -------------------------------------------------------------------------------- /Projects/AdminDashboard/frontend/src/state/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/frontend/src/state/store.js -------------------------------------------------------------------------------- /Projects/AdminDashboard/frontend/src/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/AdminDashboard/frontend/src/theme.js -------------------------------------------------------------------------------- /Projects/Airbnb-Build/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /Projects/Airbnb-Build/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/.gitignore -------------------------------------------------------------------------------- /Projects/Airbnb-Build/LEARN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/LEARN.md -------------------------------------------------------------------------------- /Projects/Airbnb-Build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/README.md -------------------------------------------------------------------------------- /Projects/Airbnb-Build/backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/backend/.gitignore -------------------------------------------------------------------------------- /Projects/Airbnb-Build/backend/DockerFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/backend/DockerFile -------------------------------------------------------------------------------- /Projects/Airbnb-Build/backend/InfoCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/backend/InfoCard.js -------------------------------------------------------------------------------- /Projects/Airbnb-Build/backend/MediumCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/backend/MediumCard.js -------------------------------------------------------------------------------- /Projects/Airbnb-Build/backend/SmallCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/backend/SmallCard.js -------------------------------------------------------------------------------- /Projects/Airbnb-Build/backend/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/backend/docker-compose.yml -------------------------------------------------------------------------------- /Projects/Airbnb-Build/backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/backend/index.js -------------------------------------------------------------------------------- /Projects/Airbnb-Build/backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/backend/package-lock.json -------------------------------------------------------------------------------- /Projects/Airbnb-Build/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/backend/package.json -------------------------------------------------------------------------------- /Projects/Airbnb-Build/components/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/components/Banner.tsx -------------------------------------------------------------------------------- /Projects/Airbnb-Build/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/components/Footer.tsx -------------------------------------------------------------------------------- /Projects/Airbnb-Build/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/components/Header.tsx -------------------------------------------------------------------------------- /Projects/Airbnb-Build/components/InfoCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/components/InfoCard.tsx -------------------------------------------------------------------------------- /Projects/Airbnb-Build/components/LargeCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/components/LargeCard.tsx -------------------------------------------------------------------------------- /Projects/Airbnb-Build/components/MapBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/components/MapBox.tsx -------------------------------------------------------------------------------- /Projects/Airbnb-Build/components/MediumCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/components/MediumCard.tsx -------------------------------------------------------------------------------- /Projects/Airbnb-Build/components/SmallCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/components/SmallCard.tsx -------------------------------------------------------------------------------- /Projects/Airbnb-Build/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/next.config.js -------------------------------------------------------------------------------- /Projects/Airbnb-Build/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/package-lock.json -------------------------------------------------------------------------------- /Projects/Airbnb-Build/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/package.json -------------------------------------------------------------------------------- /Projects/Airbnb-Build/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/pages/_app.tsx -------------------------------------------------------------------------------- /Projects/Airbnb-Build/pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/pages/api/hello.ts -------------------------------------------------------------------------------- /Projects/Airbnb-Build/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/pages/index.tsx -------------------------------------------------------------------------------- /Projects/Airbnb-Build/pages/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/pages/search.tsx -------------------------------------------------------------------------------- /Projects/Airbnb-Build/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/postcss.config.js -------------------------------------------------------------------------------- /Projects/Airbnb-Build/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/public/favicon.ico -------------------------------------------------------------------------------- /Projects/Airbnb-Build/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/public/vercel.svg -------------------------------------------------------------------------------- /Projects/Airbnb-Build/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/styles/globals.css -------------------------------------------------------------------------------- /Projects/Airbnb-Build/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/tailwind.config.js -------------------------------------------------------------------------------- /Projects/Airbnb-Build/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/tsconfig.json -------------------------------------------------------------------------------- /Projects/Airbnb-Build/utils/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/utils/info.ts -------------------------------------------------------------------------------- /Projects/Airbnb-Build/utils/mediumCarData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/utils/mediumCarData.ts -------------------------------------------------------------------------------- /Projects/Airbnb-Build/utils/smallCardData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/utils/smallCardData.ts -------------------------------------------------------------------------------- /Projects/Airbnb-Build/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Airbnb-Build/yarn.lock -------------------------------------------------------------------------------- /Projects/Beginner/Hello.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/.env.example -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/.gitignore -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/.vscode/settings.json -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/LEARN.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/LICENSE.txt -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/README.md -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/app/chat/[id]/head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/app/chat/[id]/head.tsx -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/app/chat/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/app/chat/[id]/page.tsx -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/app/head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/app/head.tsx -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/app/layout.tsx -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/app/page.tsx -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/components/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/components/Chat.tsx -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/components/ChatInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/components/ChatInput.tsx -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/components/ChatRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/components/ChatRow.tsx -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/components/ClientProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/components/ClientProvider.tsx -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/components/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/components/Login.tsx -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/components/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/components/Message.tsx -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/components/ModelSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/components/ModelSelection.tsx -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/components/NewChat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/components/NewChat.tsx -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/components/SessionProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/components/SessionProvider.tsx -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/components/Sidebar.tsx -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/firebase/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/firebase/firebase.ts -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/firebase/firebaseAdmin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/firebase/firebaseAdmin.ts -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/lib/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/lib/next-auth.d.ts -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/next.config.js -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/package-lock.json -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/package.json -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/pages/api/askQuestion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/pages/api/askQuestion.ts -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/pages/api/auth/[...nextauth].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/pages/api/auth/[...nextauth].ts -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/pages/api/getEngines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/pages/api/getEngines.ts -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/pages/api/hello.ts -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/postcss.config.js -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/public/favicon.ico -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/public/next.svg -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/public/thirteen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/public/thirteen.svg -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/public/vercel.svg -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/styles/globals.css -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/tailwind.config.js -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/tsconfig.json -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/typing.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/typing.d.ts -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/utils/chatgpt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/utils/chatgpt.ts -------------------------------------------------------------------------------- /Projects/ChatGPT-Clone/utils/queryApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/ChatGPT-Clone/utils/queryApi.ts -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/.gitignore -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/README.md -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/package-lock.json -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/package.json -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/public/favicon.ico -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/public/index.html -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/public/logo192.png -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/public/logo512.png -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/public/manifest.json -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/public/robots.txt -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/src/App.css -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/src/App.js -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/src/App.test.js -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/src/Components/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/src/Components/Header.css -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/src/Components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/src/Components/Header.js -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/src/Components/Main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/src/Components/Main.css -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/src/Components/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/src/Components/Main.js -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/src/Components/PunkList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/src/Components/PunkList.css -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/src/Components/PunkList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/src/Components/PunkList.js -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/src/assets/eth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/src/assets/eth.png -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/src/assets/header/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/src/assets/header/search.png -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/src/assets/owner/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/src/assets/owner/check.png -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/src/assets/owner/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/src/assets/owner/more.png -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/src/assets/owner/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/src/assets/owner/twitter.png -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/src/assets/weth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/src/assets/weth.png -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/src/index.css -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/src/index.js -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/src/logo.svg -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/src/reportWebVitals.js -------------------------------------------------------------------------------- /Projects/Cryptopunk-Clone/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Cryptopunk-Clone/src/setupTests.js -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Full-Stack AMAZON Clone/.gitignore -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/Backend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/Backend/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Full-Stack AMAZON Clone/Backend/data.js -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/Backend/dbModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Full-Stack AMAZON Clone/Backend/dbModel.js -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/Backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Full-Stack AMAZON Clone/Backend/package.json -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/Backend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Full-Stack AMAZON Clone/Backend/server.js -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Full-Stack AMAZON Clone/README.md -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/Stripe/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/Stripe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Full-Stack AMAZON Clone/Stripe/index.js -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/Stripe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Full-Stack AMAZON Clone/Stripe/package.json -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/functions/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Full-Stack AMAZON Clone/functions/index.js -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/functions/ui-debug.log: -------------------------------------------------------------------------------- 1 | Web / API server started at localhost:4000 2 | -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Full-Stack AMAZON Clone/package-lock.json -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Full-Stack AMAZON Clone/package.json -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Full-Stack AMAZON Clone/product.json -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Full-Stack AMAZON Clone/public/favicon.ico -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Full-Stack AMAZON Clone/public/index.html -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Full-Stack AMAZON Clone/public/logo192.png -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Full-Stack AMAZON Clone/public/logo512.png -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Full-Stack AMAZON Clone/public/manifest.json -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Full-Stack AMAZON Clone/public/robots.txt -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Full-Stack AMAZON Clone/src/App.js -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/src/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Full-Stack AMAZON Clone/src/firebase.js -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Full-Stack AMAZON Clone/src/index.css -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Full-Stack AMAZON Clone/src/index.js -------------------------------------------------------------------------------- /Projects/Full-Stack AMAZON Clone/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Full-Stack AMAZON Clone/src/setupTests.js -------------------------------------------------------------------------------- /Projects/Hulu-Clone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Hulu-Clone/README.md -------------------------------------------------------------------------------- /Projects/Hulu-Clone/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Hulu-Clone/package-lock.json -------------------------------------------------------------------------------- /Projects/Hulu-Clone/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Hulu-Clone/package.json -------------------------------------------------------------------------------- /Projects/Hulu-Clone/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Hulu-Clone/public/index.html -------------------------------------------------------------------------------- /Projects/Hulu-Clone/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Hulu-Clone/src/App.css -------------------------------------------------------------------------------- /Projects/Hulu-Clone/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Hulu-Clone/src/App.jsx -------------------------------------------------------------------------------- /Projects/Hulu-Clone/src/axios.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Hulu-Clone/src/axios.jsx -------------------------------------------------------------------------------- /Projects/Hulu-Clone/src/components/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Hulu-Clone/src/components/Header.css -------------------------------------------------------------------------------- /Projects/Hulu-Clone/src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Hulu-Clone/src/components/Header.jsx -------------------------------------------------------------------------------- /Projects/Hulu-Clone/src/components/Nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Hulu-Clone/src/components/Nav.css -------------------------------------------------------------------------------- /Projects/Hulu-Clone/src/components/Nav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Hulu-Clone/src/components/Nav.jsx -------------------------------------------------------------------------------- /Projects/Hulu-Clone/src/components/Results.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Hulu-Clone/src/components/Results.css -------------------------------------------------------------------------------- /Projects/Hulu-Clone/src/components/Results.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Hulu-Clone/src/components/Results.jsx -------------------------------------------------------------------------------- /Projects/Hulu-Clone/src/components/VideoCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Hulu-Clone/src/components/VideoCard.css -------------------------------------------------------------------------------- /Projects/Hulu-Clone/src/components/VideoCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Hulu-Clone/src/components/VideoCard.jsx -------------------------------------------------------------------------------- /Projects/Hulu-Clone/src/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Hulu-Clone/src/favicon.svg -------------------------------------------------------------------------------- /Projects/Hulu-Clone/src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Hulu-Clone/src/index.jsx -------------------------------------------------------------------------------- /Projects/Hulu-Clone/src/requests.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Hulu-Clone/src/requests.jsx -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/.gitignore -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/Backend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/Backend/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/Backend/config.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/Backend/graphqL/typeDefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/Backend/graphqL/typeDefs.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/Backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/Backend/index.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/Backend/models/Post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/Backend/models/Post.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/Backend/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/Backend/models/User.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/Backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/Backend/package-lock.json -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/Backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/Backend/package.json -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/Backend/utils/check-auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/Backend/utils/check-auth.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/Backend/utils/validators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/Backend/utils/validators.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/README.md -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/package-lock.json -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/package.json -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/public/favicon.ico -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/public/index.html -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/public/logo192.png -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/public/logo512.png -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/public/manifest.json -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/public/robots.txt -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/src/ApolloProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/src/ApolloProvider.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/src/App.css -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/src/App.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/src/components/DeleteButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/src/components/DeleteButton.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/src/components/LikeButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/src/components/LikeButton.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/src/components/MenuBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/src/components/MenuBar.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/src/components/PostCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/src/components/PostCard.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/src/components/PostForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/src/components/PostForm.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/src/context/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/src/context/auth.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/src/index.css -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/src/index.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/src/pages/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/src/pages/Home.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/src/pages/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/src/pages/Login.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/src/pages/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/src/pages/Register.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/src/pages/SinglePost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/src/pages/SinglePost.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/src/reportWebVitals.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/src/setupTests.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/src/utils/AuthRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/src/utils/AuthRoute.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/src/utils/MyPopup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/src/utils/MyPopup.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/src/utils/graphql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/src/utils/graphql.js -------------------------------------------------------------------------------- /Projects/MERN-Stack-App/src/utils/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/MERN-Stack-App/src/utils/hooks.js -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/.env.example -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/.gitignore -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/.vscode/settings.json -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/LEARN.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/README.md -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/app/ChatInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/app/ChatInput.tsx -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/app/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/app/Header.tsx -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/app/LogoutButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/app/LogoutButton.tsx -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/app/MessageLIst.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/app/MessageLIst.tsx -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/app/auth/signin/head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/app/auth/signin/head.tsx -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/app/head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/app/head.tsx -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/app/layout.tsx -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/app/loading.tsx -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/app/page.tsx -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/app/providers.tsx -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/javascript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/javascript/.gitignore -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/javascript/MERN stack/Backend/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/javascript/README.md -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/javascript/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/javascript/src/App.css -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/javascript/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/javascript/src/App.js -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/next.config.js -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/package-lock.json -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/package.json -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/pages/_document.tsx -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/pages/api/hello.ts -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/postcss.config.js -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/public/favicon.ico -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/public/logo-Meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/public/logo-Meta.png -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/public/next.svg -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/public/thirteen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/public/thirteen.svg -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/public/vercel.svg -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/pusher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/pusher.ts -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/redis.ts -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/styles/globals.css -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/tailwind.config.js -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/tsconfig.json -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/typings.d.ts -------------------------------------------------------------------------------- /Projects/META-Messenger-Clone/utils/fetchMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/META-Messenger-Clone/utils/fetchMessages.ts -------------------------------------------------------------------------------- /Projects/Pinterest-Clone/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Pinterest-Clone/.gitignore -------------------------------------------------------------------------------- /Projects/Pinterest-Clone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Pinterest-Clone/README.md -------------------------------------------------------------------------------- /Projects/Pinterest-Clone/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Pinterest-Clone/package-lock.json -------------------------------------------------------------------------------- /Projects/Pinterest-Clone/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Pinterest-Clone/package.json -------------------------------------------------------------------------------- /Projects/Pinterest-Clone/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Pinterest-Clone/public/favicon.ico -------------------------------------------------------------------------------- /Projects/Pinterest-Clone/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Pinterest-Clone/public/index.html -------------------------------------------------------------------------------- /Projects/Pinterest-Clone/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Pinterest-Clone/public/logo192.png -------------------------------------------------------------------------------- /Projects/Pinterest-Clone/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Pinterest-Clone/public/logo512.png -------------------------------------------------------------------------------- /Projects/Pinterest-Clone/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Pinterest-Clone/public/manifest.json -------------------------------------------------------------------------------- /Projects/Pinterest-Clone/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Pinterest-Clone/public/robots.txt -------------------------------------------------------------------------------- /Projects/Pinterest-Clone/src/App.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | } 4 | -------------------------------------------------------------------------------- /Projects/Pinterest-Clone/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Pinterest-Clone/src/App.tsx -------------------------------------------------------------------------------- /Projects/Pinterest-Clone/src/api/unplash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Pinterest-Clone/src/api/unplash.ts -------------------------------------------------------------------------------- /Projects/Pinterest-Clone/src/app/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Pinterest-Clone/src/app/hooks.ts -------------------------------------------------------------------------------- /Projects/Pinterest-Clone/src/app/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Pinterest-Clone/src/app/store.ts -------------------------------------------------------------------------------- /Projects/Pinterest-Clone/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Pinterest-Clone/src/components/Header.tsx -------------------------------------------------------------------------------- /Projects/Pinterest-Clone/src/components/Pin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Pinterest-Clone/src/components/Pin.tsx -------------------------------------------------------------------------------- /Projects/Pinterest-Clone/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Pinterest-Clone/src/index.css -------------------------------------------------------------------------------- /Projects/Pinterest-Clone/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Pinterest-Clone/src/index.tsx -------------------------------------------------------------------------------- /Projects/Pinterest-Clone/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /Projects/Pinterest-Clone/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Pinterest-Clone/src/reportWebVitals.ts -------------------------------------------------------------------------------- /Projects/Pinterest-Clone/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Pinterest-Clone/src/setupTests.ts -------------------------------------------------------------------------------- /Projects/Pinterest-Clone/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Pinterest-Clone/tsconfig.json -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/.gitignore -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/README.md -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/app/(auth)/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/app/(auth)/login/page.tsx -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/app/(auth)/template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/app/(auth)/template.tsx -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/app/(site)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/app/(site)/layout.tsx -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/app/(site)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/app/(site)/page.tsx -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/app/favicon.ico -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/app/globals.css -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/app/layout.tsx -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/components.json -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/components/ui/alert.tsx -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/components/ui/avatar.tsx -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/components/ui/button.tsx -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/components/ui/card.tsx -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/components/ui/dialog.tsx -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/components/ui/form.tsx -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/components/ui/input.tsx -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/components/ui/label.tsx -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/components/ui/popover.tsx -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/components/ui/select.tsx -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/components/ui/sheet.tsx -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/components/ui/toast.tsx -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/components/ui/toaster.tsx -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/drizzle.config.ts -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/lib/constants.ts -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/lib/supabase/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/lib/supabase/db.ts -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/lib/supabase/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/lib/supabase/queries.ts -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/lib/supabase/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/lib/supabase/schema.ts -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/lib/utils.ts -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/middleware.ts -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/migrations/0005_wonderful_runaways.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "collaborators" DROP COLUMN IF EXISTS "id"; -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/migrations/relations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/migrations/relations.ts -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/migrations/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/migrations/schema.ts -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/next.config.mjs -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/package-lock.json -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/package.json -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/postcss.config.mjs -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/appBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/appBanner.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/avatars/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/avatars/1.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/avatars/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/avatars/10.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/avatars/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/avatars/11.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/avatars/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/avatars/12.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/avatars/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/avatars/13.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/avatars/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/avatars/14.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/avatars/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/avatars/15.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/avatars/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/avatars/16.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/avatars/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/avatars/17.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/avatars/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/avatars/18.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/avatars/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/avatars/19.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/avatars/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/avatars/2.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/avatars/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/avatars/3.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/avatars/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/avatars/4.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/avatars/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/avatars/5.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/avatars/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/avatars/6.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/avatars/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/avatars/7.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/avatars/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/avatars/8.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/avatars/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/avatars/9.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/cal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/cal.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/client1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/client1.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/client2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/client2.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/client3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/client3.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/client4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/client4.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/client5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/client5.png -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/cypresslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/cypresslogo.svg -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/icons/check.svg -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/icons/diamond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/icons/diamond.svg -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/next.svg -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/public/vercel.svg -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/tailwind.config.ts -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/tsconfig.json -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/types/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/types/supabase.ts -------------------------------------------------------------------------------- /Projects/SaaS Notion Clone/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/SaaS Notion Clone/types/types.ts -------------------------------------------------------------------------------- /Projects/TIK-TOK-Clone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TIK-TOK-Clone/README.md -------------------------------------------------------------------------------- /Projects/TIK-TOK-Clone/TIK-TOK-Clone (Front-end)/src/web.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Projects/TINDER-Clone/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/.gitignore -------------------------------------------------------------------------------- /Projects/TINDER-Clone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/README.md -------------------------------------------------------------------------------- /Projects/TINDER-Clone/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/package-lock.json -------------------------------------------------------------------------------- /Projects/TINDER-Clone/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/package.json -------------------------------------------------------------------------------- /Projects/TINDER-Clone/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/public/favicon.ico -------------------------------------------------------------------------------- /Projects/TINDER-Clone/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/public/index.html -------------------------------------------------------------------------------- /Projects/TINDER-Clone/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/public/logo192.png -------------------------------------------------------------------------------- /Projects/TINDER-Clone/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/public/logo512.png -------------------------------------------------------------------------------- /Projects/TINDER-Clone/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/public/manifest.json -------------------------------------------------------------------------------- /Projects/TINDER-Clone/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/public/robots.txt -------------------------------------------------------------------------------- /Projects/TINDER-Clone/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Projects/TINDER-Clone/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/src/App.js -------------------------------------------------------------------------------- /Projects/TINDER-Clone/src/components/Chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/src/components/Chat.css -------------------------------------------------------------------------------- /Projects/TINDER-Clone/src/components/Chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/src/components/Chat.js -------------------------------------------------------------------------------- /Projects/TINDER-Clone/src/components/ChatScreen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/src/components/ChatScreen.css -------------------------------------------------------------------------------- /Projects/TINDER-Clone/src/components/ChatScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/src/components/ChatScreen.js -------------------------------------------------------------------------------- /Projects/TINDER-Clone/src/components/Chats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/src/components/Chats.js -------------------------------------------------------------------------------- /Projects/TINDER-Clone/src/components/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/src/components/Header.css -------------------------------------------------------------------------------- /Projects/TINDER-Clone/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/src/components/Header.js -------------------------------------------------------------------------------- /Projects/TINDER-Clone/src/components/SwipeButtons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/src/components/SwipeButtons.js -------------------------------------------------------------------------------- /Projects/TINDER-Clone/src/components/TinderCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/src/components/TinderCard.css -------------------------------------------------------------------------------- /Projects/TINDER-Clone/src/components/TinderCards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/src/components/TinderCards.js -------------------------------------------------------------------------------- /Projects/TINDER-Clone/src/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/src/firebase.js -------------------------------------------------------------------------------- /Projects/TINDER-Clone/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/src/index.css -------------------------------------------------------------------------------- /Projects/TINDER-Clone/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/src/index.js -------------------------------------------------------------------------------- /Projects/TINDER-Clone/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/src/reportWebVitals.js -------------------------------------------------------------------------------- /Projects/TINDER-Clone/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/TINDER-Clone/src/setupTests.js -------------------------------------------------------------------------------- /Projects/Tesla-Clone/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Tesla-Clone/.gitignore -------------------------------------------------------------------------------- /Projects/Tesla-Clone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Tesla-Clone/README.md -------------------------------------------------------------------------------- /Projects/Tesla-Clone/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Tesla-Clone/package-lock.json -------------------------------------------------------------------------------- /Projects/Tesla-Clone/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Tesla-Clone/package.json -------------------------------------------------------------------------------- /Projects/Tesla-Clone/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Tesla-Clone/public/favicon.ico -------------------------------------------------------------------------------- /Projects/Tesla-Clone/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Tesla-Clone/public/index.html -------------------------------------------------------------------------------- /Projects/Tesla-Clone/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Tesla-Clone/public/logo192.png -------------------------------------------------------------------------------- /Projects/Tesla-Clone/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Tesla-Clone/public/logo512.png -------------------------------------------------------------------------------- /Projects/Tesla-Clone/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Tesla-Clone/public/manifest.json -------------------------------------------------------------------------------- /Projects/Tesla-Clone/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Tesla-Clone/public/robots.txt -------------------------------------------------------------------------------- /Projects/Tesla-Clone/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Tesla-Clone/src/App.css -------------------------------------------------------------------------------- /Projects/Tesla-Clone/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Tesla-Clone/src/App.js -------------------------------------------------------------------------------- /Projects/Tesla-Clone/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Tesla-Clone/src/App.test.js -------------------------------------------------------------------------------- /Projects/Tesla-Clone/src/app/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Tesla-Clone/src/app/store.js -------------------------------------------------------------------------------- /Projects/Tesla-Clone/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Tesla-Clone/src/components/Header.js -------------------------------------------------------------------------------- /Projects/Tesla-Clone/src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Tesla-Clone/src/components/Home.js -------------------------------------------------------------------------------- /Projects/Tesla-Clone/src/components/Section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Tesla-Clone/src/components/Section.js -------------------------------------------------------------------------------- /Projects/Tesla-Clone/src/features/Car/carSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Tesla-Clone/src/features/Car/carSlice.js -------------------------------------------------------------------------------- /Projects/Tesla-Clone/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Tesla-Clone/src/index.css -------------------------------------------------------------------------------- /Projects/Tesla-Clone/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Tesla-Clone/src/index.js -------------------------------------------------------------------------------- /Projects/Tesla-Clone/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Tesla-Clone/src/logo.svg -------------------------------------------------------------------------------- /Projects/Tesla-Clone/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Tesla-Clone/src/reportWebVitals.js -------------------------------------------------------------------------------- /Projects/Tesla-Clone/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Tesla-Clone/src/setupTests.js -------------------------------------------------------------------------------- /Projects/Tesla-Clone/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/Tesla-Clone/yarn.lock -------------------------------------------------------------------------------- /Projects/To-Do-App/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/.gitignore -------------------------------------------------------------------------------- /Projects/To-Do-App/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/README.md -------------------------------------------------------------------------------- /Projects/To-Do-App/data.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Projects/To-Do-App/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/package-lock.json -------------------------------------------------------------------------------- /Projects/To-Do-App/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/package.json -------------------------------------------------------------------------------- /Projects/To-Do-App/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/postcss.config.js -------------------------------------------------------------------------------- /Projects/To-Do-App/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/public/favicon.ico -------------------------------------------------------------------------------- /Projects/To-Do-App/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/public/index.html -------------------------------------------------------------------------------- /Projects/To-Do-App/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/public/logo192.png -------------------------------------------------------------------------------- /Projects/To-Do-App/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/public/logo512.png -------------------------------------------------------------------------------- /Projects/To-Do-App/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/public/manifest.json -------------------------------------------------------------------------------- /Projects/To-Do-App/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/public/robots.txt -------------------------------------------------------------------------------- /Projects/To-Do-App/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Projects/To-Do-App/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/src/App.js -------------------------------------------------------------------------------- /Projects/To-Do-App/src/components/Blog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/src/components/Blog.jsx -------------------------------------------------------------------------------- /Projects/To-Do-App/src/components/Continue.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/src/components/Continue.jsx -------------------------------------------------------------------------------- /Projects/To-Do-App/src/components/Feed.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/src/components/Feed.jsx -------------------------------------------------------------------------------- /Projects/To-Do-App/src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/src/components/Header.jsx -------------------------------------------------------------------------------- /Projects/To-Do-App/src/components/IsChecked.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/src/components/IsChecked.jsx -------------------------------------------------------------------------------- /Projects/To-Do-App/src/components/OAuthButtons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/src/components/OAuthButtons.jsx -------------------------------------------------------------------------------- /Projects/To-Do-App/src/components/ProfileModel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/src/components/ProfileModel.jsx -------------------------------------------------------------------------------- /Projects/To-Do-App/src/components/ProfileSide.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/src/components/ProfileSide.jsx -------------------------------------------------------------------------------- /Projects/To-Do-App/src/components/ProfileUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/src/components/ProfileUpdate.jsx -------------------------------------------------------------------------------- /Projects/To-Do-App/src/components/ToDoInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/src/components/ToDoInput.jsx -------------------------------------------------------------------------------- /Projects/To-Do-App/src/components/UpdateModel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/src/components/UpdateModel.jsx -------------------------------------------------------------------------------- /Projects/To-Do-App/src/firebase/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/src/firebase/firebase.js -------------------------------------------------------------------------------- /Projects/To-Do-App/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/src/index.css -------------------------------------------------------------------------------- /Projects/To-Do-App/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/src/index.js -------------------------------------------------------------------------------- /Projects/To-Do-App/src/pages/blogScreen.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/src/pages/blogScreen.jsx -------------------------------------------------------------------------------- /Projects/To-Do-App/src/pages/login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/src/pages/login.jsx -------------------------------------------------------------------------------- /Projects/To-Do-App/src/pages/mainContain.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/src/pages/mainContain.jsx -------------------------------------------------------------------------------- /Projects/To-Do-App/src/pages/singin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/src/pages/singin.jsx -------------------------------------------------------------------------------- /Projects/To-Do-App/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/src/reportWebVitals.js -------------------------------------------------------------------------------- /Projects/To-Do-App/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/src/setupTests.js -------------------------------------------------------------------------------- /Projects/To-Do-App/src/styles/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/src/styles/index.pug -------------------------------------------------------------------------------- /Projects/To-Do-App/src/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/src/styles/main.css -------------------------------------------------------------------------------- /Projects/To-Do-App/src/styles/styles.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/src/styles/styles.sass -------------------------------------------------------------------------------- /Projects/To-Do-App/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/To-Do-App/tailwind.config.js -------------------------------------------------------------------------------- /Projects/roadmap/Roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Projects/roadmap/Roadmap.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/README.md -------------------------------------------------------------------------------- /React Native/FoodOrdering/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React Native/FoodOrdering/.gitignore -------------------------------------------------------------------------------- /React Native/FoodOrdering/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React Native/FoodOrdering/app.json -------------------------------------------------------------------------------- /React Native/FoodOrdering/assets/data/orders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React Native/FoodOrdering/assets/data/orders.ts -------------------------------------------------------------------------------- /React Native/FoodOrdering/assets/data/products.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React Native/FoodOrdering/assets/data/products.ts -------------------------------------------------------------------------------- /React Native/FoodOrdering/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React Native/FoodOrdering/assets/images/favicon.png -------------------------------------------------------------------------------- /React Native/FoodOrdering/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React Native/FoodOrdering/assets/images/icon.png -------------------------------------------------------------------------------- /React Native/FoodOrdering/assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React Native/FoodOrdering/assets/images/splash.png -------------------------------------------------------------------------------- /React Native/FoodOrdering/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React Native/FoodOrdering/babel.config.js -------------------------------------------------------------------------------- /React Native/FoodOrdering/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React Native/FoodOrdering/package-lock.json -------------------------------------------------------------------------------- /React Native/FoodOrdering/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React Native/FoodOrdering/package.json -------------------------------------------------------------------------------- /React Native/FoodOrdering/src/app/(tabs)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React Native/FoodOrdering/src/app/(tabs)/_layout.tsx -------------------------------------------------------------------------------- /React Native/FoodOrdering/src/app/(tabs)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React Native/FoodOrdering/src/app/(tabs)/index.tsx -------------------------------------------------------------------------------- /React Native/FoodOrdering/src/app/(tabs)/two.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React Native/FoodOrdering/src/app/(tabs)/two.tsx -------------------------------------------------------------------------------- /React Native/FoodOrdering/src/app/+html.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React Native/FoodOrdering/src/app/+html.tsx -------------------------------------------------------------------------------- /React Native/FoodOrdering/src/app/+not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React Native/FoodOrdering/src/app/+not-found.tsx -------------------------------------------------------------------------------- /React Native/FoodOrdering/src/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React Native/FoodOrdering/src/app/_layout.tsx -------------------------------------------------------------------------------- /React Native/FoodOrdering/src/app/cart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React Native/FoodOrdering/src/app/cart.tsx -------------------------------------------------------------------------------- /React Native/FoodOrdering/src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React Native/FoodOrdering/src/components/Button.tsx -------------------------------------------------------------------------------- /React Native/FoodOrdering/src/components/Themed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React Native/FoodOrdering/src/components/Themed.tsx -------------------------------------------------------------------------------- /React Native/FoodOrdering/src/components/useColorScheme.ts: -------------------------------------------------------------------------------- 1 | export { useColorScheme } from 'react-native'; 2 | -------------------------------------------------------------------------------- /React Native/FoodOrdering/src/constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React Native/FoodOrdering/src/constants/Colors.ts -------------------------------------------------------------------------------- /React Native/FoodOrdering/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React Native/FoodOrdering/src/types.ts -------------------------------------------------------------------------------- /React Native/FoodOrdering/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React Native/FoodOrdering/tsconfig.json -------------------------------------------------------------------------------- /React js/Api with Golang/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/Api with Golang/.gitignore -------------------------------------------------------------------------------- /React js/Api with Golang/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/Api with Golang/go.mod -------------------------------------------------------------------------------- /React js/Api with Golang/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/Api with Golang/go.sum -------------------------------------------------------------------------------- /React js/Api with Golang/initializers/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/Api with Golang/initializers/database.go -------------------------------------------------------------------------------- /React js/Api with Golang/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/Api with Golang/main.go -------------------------------------------------------------------------------- /React js/Api with Golang/migrate/migrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/Api with Golang/migrate/migrate.go -------------------------------------------------------------------------------- /React js/Api with Golang/models/postModel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/Api with Golang/models/postModel.go -------------------------------------------------------------------------------- /React js/My First App (React js)/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/My First App (React js)/.gitignore -------------------------------------------------------------------------------- /React js/My First App (React js)/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/My First App (React js)/package-lock.json -------------------------------------------------------------------------------- /React js/My First App (React js)/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/My First App (React js)/package.json -------------------------------------------------------------------------------- /React js/My First App (React js)/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/My First App (React js)/public/favicon.ico -------------------------------------------------------------------------------- /React js/My First App (React js)/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/My First App (React js)/public/index.html -------------------------------------------------------------------------------- /React js/My First App (React js)/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/My First App (React js)/public/logo192.png -------------------------------------------------------------------------------- /React js/My First App (React js)/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/My First App (React js)/public/logo512.png -------------------------------------------------------------------------------- /React js/My First App (React js)/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/My First App (React js)/public/robots.txt -------------------------------------------------------------------------------- /React js/My First App (React js)/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/My First App (React js)/src/App.css -------------------------------------------------------------------------------- /React js/My First App (React js)/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/My First App (React js)/src/App.js -------------------------------------------------------------------------------- /React js/My First App (React js)/src/fakeData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/My First App (React js)/src/fakeData.js -------------------------------------------------------------------------------- /React js/My First App (React js)/src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /React js/My First App (React js)/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/My First App (React js)/src/index.js -------------------------------------------------------------------------------- /React js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/README.md -------------------------------------------------------------------------------- /React js/React TypeScript/Advanced Props/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Advanced Props/src/App.css -------------------------------------------------------------------------------- /React js/React TypeScript/Advanced Props/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Advanced Props/src/App.tsx -------------------------------------------------------------------------------- /React js/React TypeScript/Advanced Props/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /React js/React TypeScript/Basic Props/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Basic Props/src/App.css -------------------------------------------------------------------------------- /React js/React TypeScript/Basic Props/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Basic Props/src/App.tsx -------------------------------------------------------------------------------- /React js/React TypeScript/Basic Props/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Basic Props/src/index.css -------------------------------------------------------------------------------- /React js/React TypeScript/Basic Props/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Basic Props/src/index.tsx -------------------------------------------------------------------------------- /React js/React TypeScript/Basic Props/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Basic Props/src/logo.svg -------------------------------------------------------------------------------- /React js/React TypeScript/Basic Props/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /React js/React TypeScript/Class Component/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /React js/React TypeScript/Component Prop/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Component Prop/src/App.css -------------------------------------------------------------------------------- /React js/React TypeScript/Component Prop/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Component Prop/src/App.tsx -------------------------------------------------------------------------------- /React js/React TypeScript/Component Prop/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /React js/React TypeScript/Event Props/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Event Props/src/App.css -------------------------------------------------------------------------------- /React js/React TypeScript/Event Props/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Event Props/src/App.tsx -------------------------------------------------------------------------------- /React js/React TypeScript/Event Props/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Event Props/src/index.css -------------------------------------------------------------------------------- /React js/React TypeScript/Event Props/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Event Props/src/index.tsx -------------------------------------------------------------------------------- /React js/React TypeScript/Event Props/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Event Props/src/logo.svg -------------------------------------------------------------------------------- /React js/React TypeScript/Event Props/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /React js/React TypeScript/Extracting a Components Prop Types/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /React js/React TypeScript/Generic Props/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Generic Props/src/App.css -------------------------------------------------------------------------------- /React js/React TypeScript/Generic Props/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Generic Props/src/App.tsx -------------------------------------------------------------------------------- /React js/React TypeScript/Generic Props/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Generic Props/src/logo.svg -------------------------------------------------------------------------------- /React js/React TypeScript/Generic Props/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /React js/React TypeScript/Polymorphic Components/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /React js/React TypeScript/Prop Types and Tips/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /React js/React TypeScript/Restricting Props/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /React js/React TypeScript/Setup/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Setup/public/favicon.ico -------------------------------------------------------------------------------- /React js/React TypeScript/Setup/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Setup/public/index.html -------------------------------------------------------------------------------- /React js/React TypeScript/Setup/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Setup/public/logo192.png -------------------------------------------------------------------------------- /React js/React TypeScript/Setup/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Setup/public/logo512.png -------------------------------------------------------------------------------- /React js/React TypeScript/Setup/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Setup/public/manifest.json -------------------------------------------------------------------------------- /React js/React TypeScript/Setup/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Setup/public/robots.txt -------------------------------------------------------------------------------- /React js/React TypeScript/Setup/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Setup/src/App.css -------------------------------------------------------------------------------- /React js/React TypeScript/Setup/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Setup/src/App.test.tsx -------------------------------------------------------------------------------- /React js/React TypeScript/Setup/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Setup/src/App.tsx -------------------------------------------------------------------------------- /React js/React TypeScript/Setup/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Setup/src/index.css -------------------------------------------------------------------------------- /React js/React TypeScript/Setup/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Setup/src/index.tsx -------------------------------------------------------------------------------- /React js/React TypeScript/Setup/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Setup/src/logo.svg -------------------------------------------------------------------------------- /React js/React TypeScript/Setup/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /React js/React TypeScript/Setup/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Setup/src/setupTests.ts -------------------------------------------------------------------------------- /React js/React TypeScript/Style Props/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Style Props/src/App.css -------------------------------------------------------------------------------- /React js/React TypeScript/Style Props/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Style Props/src/App.tsx -------------------------------------------------------------------------------- /React js/React TypeScript/Style Props/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Style Props/src/index.css -------------------------------------------------------------------------------- /React js/React TypeScript/Style Props/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Style Props/src/index.tsx -------------------------------------------------------------------------------- /React js/React TypeScript/Style Props/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Style Props/src/logo.svg -------------------------------------------------------------------------------- /React js/React TypeScript/Style Props/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /React js/React TypeScript/Template Literals and Exclude/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /React js/React TypeScript/Typing Props/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Typing Props/src/App.css -------------------------------------------------------------------------------- /React js/React TypeScript/Typing Props/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Typing Props/src/App.tsx -------------------------------------------------------------------------------- /React js/React TypeScript/Typing Props/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Typing Props/src/index.css -------------------------------------------------------------------------------- /React js/React TypeScript/Typing Props/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Typing Props/src/index.tsx -------------------------------------------------------------------------------- /React js/React TypeScript/Typing Props/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/Typing Props/src/logo.svg -------------------------------------------------------------------------------- /React js/React TypeScript/Typing Props/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /React js/React TypeScript/Wrapping HTML Elements/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /React js/React TypeScript/useContext Future Value/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /React js/React TypeScript/useContext Hook/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /React js/React TypeScript/useReducer Hook/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /React js/React TypeScript/useReducer Strict Action Types/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /React js/React TypeScript/useRef Hook/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/useRef Hook/src/App.css -------------------------------------------------------------------------------- /React js/React TypeScript/useRef Hook/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/useRef Hook/src/App.tsx -------------------------------------------------------------------------------- /React js/React TypeScript/useRef Hook/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/useRef Hook/src/index.css -------------------------------------------------------------------------------- /React js/React TypeScript/useRef Hook/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/useRef Hook/src/index.tsx -------------------------------------------------------------------------------- /React js/React TypeScript/useRef Hook/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/useRef Hook/src/logo.svg -------------------------------------------------------------------------------- /React js/React TypeScript/useRef Hook/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /React js/React TypeScript/useState Future Value/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /React js/React TypeScript/useState Hook/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/useState Hook/src/App.css -------------------------------------------------------------------------------- /React js/React TypeScript/useState Hook/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/useState Hook/src/App.tsx -------------------------------------------------------------------------------- /React js/React TypeScript/useState Hook/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/React TypeScript/useState Hook/src/logo.svg -------------------------------------------------------------------------------- /React js/React TypeScript/useState Hook/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /React js/React TypeScript/useState Type Assertion/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /React js/TypeScript/12_Classes/public/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/12_Classes/public/app.js -------------------------------------------------------------------------------- /React js/TypeScript/12_Classes/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/12_Classes/public/index.html -------------------------------------------------------------------------------- /React js/TypeScript/12_Classes/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/12_Classes/public/styles.css -------------------------------------------------------------------------------- /React js/TypeScript/12_Classes/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/12_Classes/src/app.ts -------------------------------------------------------------------------------- /React js/TypeScript/12_Classes/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/12_Classes/tsconfig.json -------------------------------------------------------------------------------- /React js/TypeScript/14_Modules/public/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/14_Modules/public/app.js -------------------------------------------------------------------------------- /React js/TypeScript/14_Modules/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/14_Modules/public/index.html -------------------------------------------------------------------------------- /React js/TypeScript/14_Modules/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/14_Modules/public/styles.css -------------------------------------------------------------------------------- /React js/TypeScript/14_Modules/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/14_Modules/src/app.ts -------------------------------------------------------------------------------- /React js/TypeScript/14_Modules/src/class/invoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/14_Modules/src/class/invoice.js -------------------------------------------------------------------------------- /React js/TypeScript/14_Modules/src/class/invoice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/14_Modules/src/class/invoice.ts -------------------------------------------------------------------------------- /React js/TypeScript/14_Modules/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/14_Modules/tsconfig.json -------------------------------------------------------------------------------- /React js/TypeScript/15_Interfaces/public/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/15_Interfaces/public/app.js -------------------------------------------------------------------------------- /React js/TypeScript/15_Interfaces/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/15_Interfaces/public/index.html -------------------------------------------------------------------------------- /React js/TypeScript/15_Interfaces/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/15_Interfaces/public/styles.css -------------------------------------------------------------------------------- /React js/TypeScript/15_Interfaces/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/15_Interfaces/src/app.ts -------------------------------------------------------------------------------- /React js/TypeScript/15_Interfaces/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/15_Interfaces/tsconfig.json -------------------------------------------------------------------------------- /React js/TypeScript/16_Interfaces with Classes/public/interfaces/HasFormatter.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /React js/TypeScript/17_Rendering an HTML Template/public/interfaces/HasFormatter.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /React js/TypeScript/18_Generics/public/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/18_Generics/public/app.js -------------------------------------------------------------------------------- /React js/TypeScript/18_Generics/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/18_Generics/public/index.html -------------------------------------------------------------------------------- /React js/TypeScript/18_Generics/public/interfaces/HasFormatter.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /React js/TypeScript/18_Generics/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/18_Generics/public/styles.css -------------------------------------------------------------------------------- /React js/TypeScript/18_Generics/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/18_Generics/src/app.ts -------------------------------------------------------------------------------- /React js/TypeScript/18_Generics/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/18_Generics/tsconfig.json -------------------------------------------------------------------------------- /React js/TypeScript/19_Enums/public/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/19_Enums/public/app.js -------------------------------------------------------------------------------- /React js/TypeScript/19_Enums/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/19_Enums/public/index.html -------------------------------------------------------------------------------- /React js/TypeScript/19_Enums/public/interfaces/HasFormatter.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /React js/TypeScript/19_Enums/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/19_Enums/public/styles.css -------------------------------------------------------------------------------- /React js/TypeScript/19_Enums/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/19_Enums/src/app.ts -------------------------------------------------------------------------------- /React js/TypeScript/19_Enums/src/classes/Invoice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/19_Enums/src/classes/Invoice.ts -------------------------------------------------------------------------------- /React js/TypeScript/19_Enums/src/classes/Payment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/19_Enums/src/classes/Payment.ts -------------------------------------------------------------------------------- /React js/TypeScript/19_Enums/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/19_Enums/tsconfig.json -------------------------------------------------------------------------------- /React js/TypeScript/1_Setup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/1_Setup/index.html -------------------------------------------------------------------------------- /React js/TypeScript/1_Setup/sandbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/1_Setup/sandbox.js -------------------------------------------------------------------------------- /React js/TypeScript/1_Setup/sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/1_Setup/sandbox.ts -------------------------------------------------------------------------------- /React js/TypeScript/1_Setup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/1_Setup/style.css -------------------------------------------------------------------------------- /React js/TypeScript/20_Tuples/public/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/20_Tuples/public/app.js -------------------------------------------------------------------------------- /React js/TypeScript/20_Tuples/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/20_Tuples/public/index.html -------------------------------------------------------------------------------- /React js/TypeScript/20_Tuples/public/interfaces/HasFormatter.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /React js/TypeScript/20_Tuples/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/20_Tuples/public/styles.css -------------------------------------------------------------------------------- /React js/TypeScript/20_Tuples/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/20_Tuples/src/app.ts -------------------------------------------------------------------------------- /React js/TypeScript/20_Tuples/src/classes/Invoice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/20_Tuples/src/classes/Invoice.ts -------------------------------------------------------------------------------- /React js/TypeScript/20_Tuples/src/classes/Payment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/20_Tuples/src/classes/Payment.ts -------------------------------------------------------------------------------- /React js/TypeScript/20_Tuples/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/20_Tuples/tsconfig.json -------------------------------------------------------------------------------- /React js/TypeScript/2_Compiling/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/2_Compiling/index.html -------------------------------------------------------------------------------- /React js/TypeScript/2_Compiling/sandbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/2_Compiling/sandbox.js -------------------------------------------------------------------------------- /React js/TypeScript/2_Compiling/sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/2_Compiling/sandbox.ts -------------------------------------------------------------------------------- /React js/TypeScript/2_Compiling/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/2_Compiling/style.css -------------------------------------------------------------------------------- /React js/TypeScript/3_Basics/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/3_Basics/index.html -------------------------------------------------------------------------------- /React js/TypeScript/3_Basics/sandbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/3_Basics/sandbox.js -------------------------------------------------------------------------------- /React js/TypeScript/3_Basics/sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/3_Basics/sandbox.ts -------------------------------------------------------------------------------- /React js/TypeScript/4_Objects & Arrays/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/4_Objects & Arrays/index.html -------------------------------------------------------------------------------- /React js/TypeScript/4_Objects & Arrays/sandbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/4_Objects & Arrays/sandbox.js -------------------------------------------------------------------------------- /React js/TypeScript/4_Objects & Arrays/sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/4_Objects & Arrays/sandbox.ts -------------------------------------------------------------------------------- /React js/TypeScript/5_Explicit Types/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/5_Explicit Types/index.html -------------------------------------------------------------------------------- /React js/TypeScript/5_Explicit Types/sandbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/5_Explicit Types/sandbox.js -------------------------------------------------------------------------------- /React js/TypeScript/5_Explicit Types/sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/5_Explicit Types/sandbox.ts -------------------------------------------------------------------------------- /React js/TypeScript/6_Dynamic Types/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/6_Dynamic Types/app.js -------------------------------------------------------------------------------- /React js/TypeScript/6_Dynamic Types/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/6_Dynamic Types/app.ts -------------------------------------------------------------------------------- /React js/TypeScript/6_Dynamic Types/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/6_Dynamic Types/index.html -------------------------------------------------------------------------------- /React js/TypeScript/7_Better Workflow & tsconfig/public/app.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | console.log("hello world"); 3 | -------------------------------------------------------------------------------- /React js/TypeScript/7_Better Workflow & tsconfig/script.ts: -------------------------------------------------------------------------------- 1 | console.log("hello How are you") -------------------------------------------------------------------------------- /React js/TypeScript/7_Better Workflow & tsconfig/src/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /React js/TypeScript/7_Better Workflow & tsconfig/src/app.ts: -------------------------------------------------------------------------------- 1 | console.log("hello world"); -------------------------------------------------------------------------------- /React js/TypeScript/8_Function Basics/public/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/8_Function Basics/public/app.js -------------------------------------------------------------------------------- /React js/TypeScript/8_Function Basics/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/8_Function Basics/src/app.ts -------------------------------------------------------------------------------- /React js/TypeScript/8_Function Basics/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/8_Function Basics/tsconfig.json -------------------------------------------------------------------------------- /React js/TypeScript/9_Type Aliases/public/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/9_Type Aliases/public/app.js -------------------------------------------------------------------------------- /React js/TypeScript/9_Type Aliases/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/9_Type Aliases/public/index.html -------------------------------------------------------------------------------- /React js/TypeScript/9_Type Aliases/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/9_Type Aliases/src/app.ts -------------------------------------------------------------------------------- /React js/TypeScript/9_Type Aliases/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/9_Type Aliases/tsconfig.json -------------------------------------------------------------------------------- /React js/TypeScript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/React js/TypeScript/README.md -------------------------------------------------------------------------------- /Rock Paper Scissors/All games/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/All games/index.html -------------------------------------------------------------------------------- /Rock Paper Scissors/All games/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/All games/script.js -------------------------------------------------------------------------------- /Rock Paper Scissors/All games/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/All games/style.css -------------------------------------------------------------------------------- /Rock Paper Scissors/Cat Generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Cat Generator/index.html -------------------------------------------------------------------------------- /Rock Paper Scissors/Cat Generator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Cat Generator/script.js -------------------------------------------------------------------------------- /Rock Paper Scissors/Cat Generator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Cat Generator/style.css -------------------------------------------------------------------------------- /Rock Paper Scissors/Core Concepts/Arrays/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Core Concepts/Arrays/index.html -------------------------------------------------------------------------------- /Rock Paper Scissors/Core Concepts/Arrays/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Core Concepts/Arrays/script.js -------------------------------------------------------------------------------- /Rock Paper Scissors/Core Concepts/Objects/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Core Concepts/Objects/index.html -------------------------------------------------------------------------------- /Rock Paper Scissors/Core Concepts/Objects/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Core Concepts/Objects/script.js -------------------------------------------------------------------------------- /Rock Paper Scissors/Core Concepts/Timing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Core Concepts/Timing/index.html -------------------------------------------------------------------------------- /Rock Paper Scissors/Core Concepts/Timing/script.js: -------------------------------------------------------------------------------- 1 | function sayHi() { 2 | alert("Hi"); 3 | } -------------------------------------------------------------------------------- /Rock Paper Scissors/Core Concepts2/JSON/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Core Concepts2/JSON/index.html -------------------------------------------------------------------------------- /Rock Paper Scissors/Memory Game/images/31958260.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Memory Game/images/31958260.jpg -------------------------------------------------------------------------------- /Rock Paper Scissors/Memory Game/images/31958261.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Memory Game/images/31958261.jpg -------------------------------------------------------------------------------- /Rock Paper Scissors/Memory Game/images/31958262.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Memory Game/images/31958262.jpg -------------------------------------------------------------------------------- /Rock Paper Scissors/Memory Game/images/31958263.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Memory Game/images/31958263.jpg -------------------------------------------------------------------------------- /Rock Paper Scissors/Memory Game/images/31958264.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Memory Game/images/31958264.jpg -------------------------------------------------------------------------------- /Rock Paper Scissors/Memory Game/images/31958265.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Memory Game/images/31958265.jpg -------------------------------------------------------------------------------- /Rock Paper Scissors/Memory Game/images/31958266.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Memory Game/images/31958266.jpg -------------------------------------------------------------------------------- /Rock Paper Scissors/Memory Game/images/31958267.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Memory Game/images/31958267.jpg -------------------------------------------------------------------------------- /Rock Paper Scissors/Memory Game/images/31958269.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Memory Game/images/31958269.jpg -------------------------------------------------------------------------------- /Rock Paper Scissors/Memory Game/images/31958270.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Memory Game/images/31958270.jpg -------------------------------------------------------------------------------- /Rock Paper Scissors/Memory Game/images/31958272.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Memory Game/images/31958272.jpg -------------------------------------------------------------------------------- /Rock Paper Scissors/Memory Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Memory Game/index.html -------------------------------------------------------------------------------- /Rock Paper Scissors/Memory Game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Memory Game/script.js -------------------------------------------------------------------------------- /Rock Paper Scissors/Memory Game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Memory Game/style.css -------------------------------------------------------------------------------- /Rock Paper Scissors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/README.md -------------------------------------------------------------------------------- /Rock Paper Scissors/Rock Paper Scissors 02/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Rock Paper Scissors 02/script.js -------------------------------------------------------------------------------- /Rock Paper Scissors/Rock Paper Scissors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Rock Paper Scissors/index.html -------------------------------------------------------------------------------- /Rock Paper Scissors/Rock Paper Scissors/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Rock Paper Scissors/script.js -------------------------------------------------------------------------------- /Rock Paper Scissors/Rock Paper Scissors/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Rock Paper Scissors/style.css -------------------------------------------------------------------------------- /Rock Paper Scissors/Your age in days/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Your age in days/index.html -------------------------------------------------------------------------------- /Rock Paper Scissors/Your age in days/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Your age in days/script.js -------------------------------------------------------------------------------- /Rock Paper Scissors/Your age in days/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/Rock Paper Scissors/Your age in days/style.css -------------------------------------------------------------------------------- /website/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/ProjectData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/ProjectData.tsx -------------------------------------------------------------------------------- /website/compiler.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/compiler.txt -------------------------------------------------------------------------------- /website/components/AdSide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/components/AdSide.tsx -------------------------------------------------------------------------------- /website/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/components/Card.tsx -------------------------------------------------------------------------------- /website/components/Contact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/components/Contact.tsx -------------------------------------------------------------------------------- /website/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/components/Footer.tsx -------------------------------------------------------------------------------- /website/components/Frameworks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/components/Frameworks.tsx -------------------------------------------------------------------------------- /website/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/components/Header.tsx -------------------------------------------------------------------------------- /website/components/OpenCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/components/OpenCard.tsx -------------------------------------------------------------------------------- /website/components/ProjectIdeas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/components/ProjectIdeas.tsx -------------------------------------------------------------------------------- /website/components/ReactCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/components/ReactCard.tsx -------------------------------------------------------------------------------- /website/components/ThankyouCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/components/ThankyouCard.tsx -------------------------------------------------------------------------------- /website/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/firebase.ts -------------------------------------------------------------------------------- /website/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/next.config.js -------------------------------------------------------------------------------- /website/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/package-lock.json -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/package.json -------------------------------------------------------------------------------- /website/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/pages/_app.tsx -------------------------------------------------------------------------------- /website/pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/pages/api/hello.ts -------------------------------------------------------------------------------- /website/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/pages/index.tsx -------------------------------------------------------------------------------- /website/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/postcss.config.js -------------------------------------------------------------------------------- /website/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/public/favicon.ico -------------------------------------------------------------------------------- /website/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/public/vercel.svg -------------------------------------------------------------------------------- /website/styles/background.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/styles/background.pug -------------------------------------------------------------------------------- /website/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/styles/globals.css -------------------------------------------------------------------------------- /website/styles/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/styles/globals.scss -------------------------------------------------------------------------------- /website/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/tailwind.config.js -------------------------------------------------------------------------------- /website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/tsconfig.json -------------------------------------------------------------------------------- /website/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Unique-Project-Ideas/HEAD/website/yarn.lock --------------------------------------------------------------------------------