├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── public ├── avatars │ └── user_icon.jpg ├── favicon.ico ├── index.html └── robots.txt ├── src ├── App.tsx ├── ColorModeSwitcher.tsx ├── assets │ ├── images │ │ ├── cover_images │ │ │ ├── blog_1.png │ │ │ ├── blog_2.png │ │ │ ├── blog_3.png │ │ │ ├── image_gallery.png │ │ │ ├── notebook_app.png │ │ │ └── portfolio.png │ │ └── placeholder.png │ └── stylesheets │ │ └── carousel.css ├── components │ ├── carousel.tsx │ ├── footer-signup.tsx │ ├── hero-section.tsx │ ├── home-page.tsx │ ├── lazy-image.tsx │ ├── motion │ │ └── motion.tsx │ ├── note-form.tsx │ ├── note-modal.tsx │ ├── notes-list.tsx │ ├── page-footer.tsx │ ├── repositories-list-item.tsx │ ├── repositories-list.tsx │ └── top-nav.tsx ├── configs │ └── site-config.ts ├── data │ ├── cover_images.ts │ └── repositories-list.ts ├── index.tsx └── types.d.ts ├── static.json ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/package.json -------------------------------------------------------------------------------- /public/avatars/user_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/public/avatars/user_icon.jpg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/public/index.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/ColorModeSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/ColorModeSwitcher.tsx -------------------------------------------------------------------------------- /src/assets/images/cover_images/blog_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/assets/images/cover_images/blog_1.png -------------------------------------------------------------------------------- /src/assets/images/cover_images/blog_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/assets/images/cover_images/blog_2.png -------------------------------------------------------------------------------- /src/assets/images/cover_images/blog_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/assets/images/cover_images/blog_3.png -------------------------------------------------------------------------------- /src/assets/images/cover_images/image_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/assets/images/cover_images/image_gallery.png -------------------------------------------------------------------------------- /src/assets/images/cover_images/notebook_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/assets/images/cover_images/notebook_app.png -------------------------------------------------------------------------------- /src/assets/images/cover_images/portfolio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/assets/images/cover_images/portfolio.png -------------------------------------------------------------------------------- /src/assets/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/assets/images/placeholder.png -------------------------------------------------------------------------------- /src/assets/stylesheets/carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/assets/stylesheets/carousel.css -------------------------------------------------------------------------------- /src/components/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/components/carousel.tsx -------------------------------------------------------------------------------- /src/components/footer-signup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/components/footer-signup.tsx -------------------------------------------------------------------------------- /src/components/hero-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/components/hero-section.tsx -------------------------------------------------------------------------------- /src/components/home-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/components/home-page.tsx -------------------------------------------------------------------------------- /src/components/lazy-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/components/lazy-image.tsx -------------------------------------------------------------------------------- /src/components/motion/motion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/components/motion/motion.tsx -------------------------------------------------------------------------------- /src/components/note-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/components/note-form.tsx -------------------------------------------------------------------------------- /src/components/note-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/components/note-modal.tsx -------------------------------------------------------------------------------- /src/components/notes-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/components/notes-list.tsx -------------------------------------------------------------------------------- /src/components/page-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/components/page-footer.tsx -------------------------------------------------------------------------------- /src/components/repositories-list-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/components/repositories-list-item.tsx -------------------------------------------------------------------------------- /src/components/repositories-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/components/repositories-list.tsx -------------------------------------------------------------------------------- /src/components/top-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/components/top-nav.tsx -------------------------------------------------------------------------------- /src/configs/site-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/configs/site-config.ts -------------------------------------------------------------------------------- /src/data/cover_images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/data/cover_images.ts -------------------------------------------------------------------------------- /src/data/repositories-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/data/repositories-list.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/static.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MA-Ahmad/notebook/HEAD/yarn.lock --------------------------------------------------------------------------------