├── .env.example ├── .eslintrc.json ├── .gitignore ├── README.md ├── components ├── app │ ├── copy-to-clipboard.tsx │ ├── markdown.module.css │ ├── prompt-form.tsx │ ├── response-card.tsx │ ├── response-markdown.jsx │ ├── response-menu.tsx │ └── result-response-section.tsx ├── dashboard │ ├── favorites.tsx │ ├── saved.tsx │ └── sidebar.tsx ├── home │ ├── PlaceholderSections.tsx │ ├── PromptSuggestions.tsx │ ├── demo-section.tsx │ ├── features-section.tsx │ ├── footer.tsx │ ├── header.tsx │ ├── hero.tsx │ ├── navbar.tsx │ ├── oss.module.css │ └── oss.tsx ├── layouts │ ├── home │ │ └── index.tsx │ └── meta.tsx ├── settings.tsx └── shared │ ├── PromptIdeas.tsx │ ├── alert.tsx │ ├── background │ ├── background.module.css │ └── index.tsx │ ├── collapsible-wrapper.tsx │ ├── counting-number.tsx │ ├── emoji-feedback.tsx │ ├── error-occurred.tsx │ ├── get-in-touch.tsx │ ├── icons │ ├── arrow-path-reload.tsx │ ├── bookmark.tsx │ ├── chat.tsx │ ├── check.tsx │ ├── chevron-down.tsx │ ├── chevron-up.tsx │ ├── clipboard-document.tsx │ ├── document-plus.tsx │ ├── document.tsx │ ├── github.tsx │ ├── love.tsx │ ├── power.tsx │ ├── sparkles.tsx │ ├── star.tsx │ └── trash.tsx │ ├── low-credit-banner.tsx │ ├── low-credit-dialog.tsx │ ├── max-width-wrapper.tsx │ ├── sharer.tsx │ ├── slider-over.tsx │ ├── testimonials.tsx │ └── users-counter.tsx ├── lib ├── OpenAIStream.ts ├── app-use.ts ├── connectDb.ts ├── constants │ ├── index.ts │ └── testimonials.tsx ├── gtag.js ├── helpers.ts ├── hooks │ └── use-local-storage.ts ├── index.ts ├── prompts.ts └── services │ └── index.ts ├── models ├── AppStat.ts ├── Payment.ts ├── Response.ts └── User.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── api │ ├── admin │ │ ├── response.ts │ │ └── user.ts │ ├── app-use.ts │ ├── auth │ │ └── [...nextauth].tsx │ ├── credits │ │ ├── index.ts │ │ └── webhook.ts │ ├── feedback │ │ └── index.ts │ ├── generate.ts │ ├── response │ │ ├── [id].ts │ │ └── index.ts │ └── user │ │ └── index.ts ├── buy-credits.tsx ├── dashboard │ ├── [responseId].tsx │ └── index.tsx └── index.tsx ├── postcss.config.js ├── public ├── _static │ ├── demo │ │ ├── demo.gif │ │ ├── learnease-ai-result.png │ │ ├── og-image.png │ │ └── white-board.png │ ├── favicons │ │ ├── building-block-1.ico │ │ ├── favicon.ico │ │ └── teacher │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ └── favicon.ico │ ├── icons │ │ ├── building-block-1.png │ │ ├── building-block.png │ │ ├── google.webp │ │ ├── learn-ease-2.png │ │ ├── learn-ease.png │ │ ├── logo.png │ │ ├── oie_30333532h0cKbiF (1).png │ │ └── oie_30333532h0cKbiF.png │ ├── illustrations │ │ ├── grid.svg │ │ └── not_found.svg │ └── testimonial-headshots │ │ ├── andrew-baisden.webp │ │ ├── chinenye-anikwenze.jpeg │ │ ├── idris.webp │ │ ├── konadu-akwasi.webp │ │ ├── leo.webp │ │ ├── perspective.webp │ │ ├── pyman.webp │ │ ├── rapture-chijioke-godson.jpeg │ │ └── rapture-chijioke-godson.webp ├── next.svg ├── thirteen.svg └── vercel.svg ├── readme ├── LearnEase-logo.png ├── LearnEase-readme.png └── demo.gif ├── styles └── globals.css ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/README.md -------------------------------------------------------------------------------- /components/app/copy-to-clipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/app/copy-to-clipboard.tsx -------------------------------------------------------------------------------- /components/app/markdown.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/app/markdown.module.css -------------------------------------------------------------------------------- /components/app/prompt-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/app/prompt-form.tsx -------------------------------------------------------------------------------- /components/app/response-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/app/response-card.tsx -------------------------------------------------------------------------------- /components/app/response-markdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/app/response-markdown.jsx -------------------------------------------------------------------------------- /components/app/response-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/app/response-menu.tsx -------------------------------------------------------------------------------- /components/app/result-response-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/app/result-response-section.tsx -------------------------------------------------------------------------------- /components/dashboard/favorites.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/dashboard/favorites.tsx -------------------------------------------------------------------------------- /components/dashboard/saved.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/dashboard/saved.tsx -------------------------------------------------------------------------------- /components/dashboard/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/dashboard/sidebar.tsx -------------------------------------------------------------------------------- /components/home/PlaceholderSections.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/home/PlaceholderSections.tsx -------------------------------------------------------------------------------- /components/home/PromptSuggestions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/home/PromptSuggestions.tsx -------------------------------------------------------------------------------- /components/home/demo-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/home/demo-section.tsx -------------------------------------------------------------------------------- /components/home/features-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/home/features-section.tsx -------------------------------------------------------------------------------- /components/home/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/home/footer.tsx -------------------------------------------------------------------------------- /components/home/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/home/header.tsx -------------------------------------------------------------------------------- /components/home/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/home/hero.tsx -------------------------------------------------------------------------------- /components/home/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/home/navbar.tsx -------------------------------------------------------------------------------- /components/home/oss.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/home/oss.module.css -------------------------------------------------------------------------------- /components/home/oss.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/home/oss.tsx -------------------------------------------------------------------------------- /components/layouts/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/layouts/home/index.tsx -------------------------------------------------------------------------------- /components/layouts/meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/layouts/meta.tsx -------------------------------------------------------------------------------- /components/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/settings.tsx -------------------------------------------------------------------------------- /components/shared/PromptIdeas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/PromptIdeas.tsx -------------------------------------------------------------------------------- /components/shared/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/alert.tsx -------------------------------------------------------------------------------- /components/shared/background/background.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/background/background.module.css -------------------------------------------------------------------------------- /components/shared/background/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/background/index.tsx -------------------------------------------------------------------------------- /components/shared/collapsible-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/collapsible-wrapper.tsx -------------------------------------------------------------------------------- /components/shared/counting-number.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/counting-number.tsx -------------------------------------------------------------------------------- /components/shared/emoji-feedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/emoji-feedback.tsx -------------------------------------------------------------------------------- /components/shared/error-occurred.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/error-occurred.tsx -------------------------------------------------------------------------------- /components/shared/get-in-touch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/get-in-touch.tsx -------------------------------------------------------------------------------- /components/shared/icons/arrow-path-reload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/icons/arrow-path-reload.tsx -------------------------------------------------------------------------------- /components/shared/icons/bookmark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/icons/bookmark.tsx -------------------------------------------------------------------------------- /components/shared/icons/chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/icons/chat.tsx -------------------------------------------------------------------------------- /components/shared/icons/check.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/icons/check.tsx -------------------------------------------------------------------------------- /components/shared/icons/chevron-down.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/icons/chevron-down.tsx -------------------------------------------------------------------------------- /components/shared/icons/chevron-up.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/icons/chevron-up.tsx -------------------------------------------------------------------------------- /components/shared/icons/clipboard-document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/icons/clipboard-document.tsx -------------------------------------------------------------------------------- /components/shared/icons/document-plus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/icons/document-plus.tsx -------------------------------------------------------------------------------- /components/shared/icons/document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/icons/document.tsx -------------------------------------------------------------------------------- /components/shared/icons/github.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/icons/github.tsx -------------------------------------------------------------------------------- /components/shared/icons/love.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/icons/love.tsx -------------------------------------------------------------------------------- /components/shared/icons/power.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/icons/power.tsx -------------------------------------------------------------------------------- /components/shared/icons/sparkles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/icons/sparkles.tsx -------------------------------------------------------------------------------- /components/shared/icons/star.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/icons/star.tsx -------------------------------------------------------------------------------- /components/shared/icons/trash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/icons/trash.tsx -------------------------------------------------------------------------------- /components/shared/low-credit-banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/low-credit-banner.tsx -------------------------------------------------------------------------------- /components/shared/low-credit-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/low-credit-dialog.tsx -------------------------------------------------------------------------------- /components/shared/max-width-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/max-width-wrapper.tsx -------------------------------------------------------------------------------- /components/shared/sharer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/sharer.tsx -------------------------------------------------------------------------------- /components/shared/slider-over.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/slider-over.tsx -------------------------------------------------------------------------------- /components/shared/testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/testimonials.tsx -------------------------------------------------------------------------------- /components/shared/users-counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/components/shared/users-counter.tsx -------------------------------------------------------------------------------- /lib/OpenAIStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/lib/OpenAIStream.ts -------------------------------------------------------------------------------- /lib/app-use.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/connectDb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/lib/connectDb.ts -------------------------------------------------------------------------------- /lib/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/lib/constants/index.ts -------------------------------------------------------------------------------- /lib/constants/testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/lib/constants/testimonials.tsx -------------------------------------------------------------------------------- /lib/gtag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/lib/gtag.js -------------------------------------------------------------------------------- /lib/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/lib/helpers.ts -------------------------------------------------------------------------------- /lib/hooks/use-local-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/lib/hooks/use-local-storage.ts -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/lib/prompts.ts -------------------------------------------------------------------------------- /lib/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/lib/services/index.ts -------------------------------------------------------------------------------- /models/AppStat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/models/AppStat.ts -------------------------------------------------------------------------------- /models/Payment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/models/Payment.ts -------------------------------------------------------------------------------- /models/Response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/models/Response.ts -------------------------------------------------------------------------------- /models/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/models/User.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/api/admin/response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/pages/api/admin/response.ts -------------------------------------------------------------------------------- /pages/api/admin/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/pages/api/admin/user.ts -------------------------------------------------------------------------------- /pages/api/app-use.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/pages/api/app-use.ts -------------------------------------------------------------------------------- /pages/api/auth/[...nextauth].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/pages/api/auth/[...nextauth].tsx -------------------------------------------------------------------------------- /pages/api/credits/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/pages/api/credits/index.ts -------------------------------------------------------------------------------- /pages/api/credits/webhook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/pages/api/credits/webhook.ts -------------------------------------------------------------------------------- /pages/api/feedback/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/pages/api/feedback/index.ts -------------------------------------------------------------------------------- /pages/api/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/pages/api/generate.ts -------------------------------------------------------------------------------- /pages/api/response/[id].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/pages/api/response/[id].ts -------------------------------------------------------------------------------- /pages/api/response/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/pages/api/response/index.ts -------------------------------------------------------------------------------- /pages/api/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/pages/api/user/index.ts -------------------------------------------------------------------------------- /pages/buy-credits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/pages/buy-credits.tsx -------------------------------------------------------------------------------- /pages/dashboard/[responseId].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/pages/dashboard/[responseId].tsx -------------------------------------------------------------------------------- /pages/dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/pages/dashboard/index.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/_static/demo/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/demo/demo.gif -------------------------------------------------------------------------------- /public/_static/demo/learnease-ai-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/demo/learnease-ai-result.png -------------------------------------------------------------------------------- /public/_static/demo/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/demo/og-image.png -------------------------------------------------------------------------------- /public/_static/demo/white-board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/demo/white-board.png -------------------------------------------------------------------------------- /public/_static/favicons/building-block-1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/favicons/building-block-1.ico -------------------------------------------------------------------------------- /public/_static/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/favicons/favicon.ico -------------------------------------------------------------------------------- /public/_static/favicons/teacher/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/favicons/teacher/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/_static/favicons/teacher/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/favicons/teacher/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/_static/favicons/teacher/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/favicons/teacher/apple-touch-icon.png -------------------------------------------------------------------------------- /public/_static/favicons/teacher/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/favicons/teacher/favicon-16x16.png -------------------------------------------------------------------------------- /public/_static/favicons/teacher/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/favicons/teacher/favicon-32x32.png -------------------------------------------------------------------------------- /public/_static/favicons/teacher/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/favicons/teacher/favicon.ico -------------------------------------------------------------------------------- /public/_static/icons/building-block-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/icons/building-block-1.png -------------------------------------------------------------------------------- /public/_static/icons/building-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/icons/building-block.png -------------------------------------------------------------------------------- /public/_static/icons/google.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/icons/google.webp -------------------------------------------------------------------------------- /public/_static/icons/learn-ease-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/icons/learn-ease-2.png -------------------------------------------------------------------------------- /public/_static/icons/learn-ease.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/icons/learn-ease.png -------------------------------------------------------------------------------- /public/_static/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/icons/logo.png -------------------------------------------------------------------------------- /public/_static/icons/oie_30333532h0cKbiF (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/icons/oie_30333532h0cKbiF (1).png -------------------------------------------------------------------------------- /public/_static/icons/oie_30333532h0cKbiF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/icons/oie_30333532h0cKbiF.png -------------------------------------------------------------------------------- /public/_static/illustrations/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/illustrations/grid.svg -------------------------------------------------------------------------------- /public/_static/illustrations/not_found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/illustrations/not_found.svg -------------------------------------------------------------------------------- /public/_static/testimonial-headshots/andrew-baisden.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/testimonial-headshots/andrew-baisden.webp -------------------------------------------------------------------------------- /public/_static/testimonial-headshots/chinenye-anikwenze.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/testimonial-headshots/chinenye-anikwenze.jpeg -------------------------------------------------------------------------------- /public/_static/testimonial-headshots/idris.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/testimonial-headshots/idris.webp -------------------------------------------------------------------------------- /public/_static/testimonial-headshots/konadu-akwasi.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/testimonial-headshots/konadu-akwasi.webp -------------------------------------------------------------------------------- /public/_static/testimonial-headshots/leo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/testimonial-headshots/leo.webp -------------------------------------------------------------------------------- /public/_static/testimonial-headshots/perspective.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/testimonial-headshots/perspective.webp -------------------------------------------------------------------------------- /public/_static/testimonial-headshots/pyman.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/testimonial-headshots/pyman.webp -------------------------------------------------------------------------------- /public/_static/testimonial-headshots/rapture-chijioke-godson.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/testimonial-headshots/rapture-chijioke-godson.jpeg -------------------------------------------------------------------------------- /public/_static/testimonial-headshots/rapture-chijioke-godson.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/_static/testimonial-headshots/rapture-chijioke-godson.webp -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/thirteen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/thirteen.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /readme/LearnEase-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/readme/LearnEase-logo.png -------------------------------------------------------------------------------- /readme/LearnEase-readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/readme/LearnEase-readme.png -------------------------------------------------------------------------------- /readme/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/readme/demo.gif -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/learnease/HEAD/yarn.lock --------------------------------------------------------------------------------