├── .env ├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── avatars │ ├── Image-1.png │ ├── Image-2.png │ ├── Image-3.png │ ├── Image-4.png │ ├── Image-5.png │ └── Image-6.png ├── banner.png ├── favicon.ico └── icons │ ├── add.svg │ ├── arrow.png │ ├── avatar.svg │ ├── bin.svg │ ├── browsers │ ├── brave.svg │ ├── chrome.svg │ ├── edge.svg │ ├── firefox.svg │ └── safari.png │ ├── comments.svg │ ├── devto.svg │ ├── email.svg │ ├── github-gradient.svg │ ├── like.svg │ ├── linkedin-gradient.svg │ ├── menu.svg │ ├── search.svg │ ├── settings.svg │ ├── stackoverflow.svg │ ├── star.svg │ ├── telegram.svg │ ├── triangle-outline.svg │ ├── triangle.svg │ ├── vote.svg │ └── websites │ ├── devto.svg │ ├── freecodecamp.svg │ ├── github.svg │ ├── hackrnews.svg │ ├── hashnode.svg │ ├── reddit.svg │ └── stackoverflow.svg ├── src ├── app │ ├── (dashboard) │ │ ├── dashboard │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ └── layout.tsx │ ├── (site) │ │ ├── about │ │ │ └── page.tsx │ │ ├── contact │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ └── page.tsx │ ├── api │ │ └── devto │ │ │ └── route.ts │ ├── favicon.ico │ ├── globals.css │ └── layout.tsx ├── components │ ├── Testimonials │ │ ├── Testimonials.tsx │ │ └── comment.tsx │ ├── aos │ │ └── wrapper.tsx │ ├── bookmarks │ │ ├── bookmark.tsx │ │ └── bookmarks.tsx │ ├── browsers │ │ └── browsers.tsx │ ├── contact │ │ ├── contact.tsx │ │ ├── input.tsx │ │ └── social.tsx │ ├── devto │ │ ├── article.tsx │ │ └── index.tsx │ ├── features │ │ ├── feature.tsx │ │ ├── features.tsx │ │ └── featuresPack.tsx │ ├── footer │ │ └── footer.tsx │ ├── hackerNews │ │ ├── article.tsx │ │ └── hackerNews.tsx │ ├── header │ │ └── header.tsx │ ├── index.ts │ ├── navbar │ │ └── navbar.tsx │ ├── redirect │ │ └── redirect.tsx │ ├── searchbar │ │ └── searchbar.tsx │ ├── stackoverflow │ │ ├── article.tsx │ │ └── stackoverflow.tsx │ ├── statuses │ │ ├── status.tsx │ │ ├── statusSection.tsx │ │ └── statuses.tsx │ ├── supportedWebsites │ │ └── supportedWebsites.tsx │ └── time │ │ └── time.tsx ├── constants │ ├── avatars.ts │ ├── backgrounds │ │ ├── index.ts │ │ └── night-japan.jpg │ ├── codeImg.png │ ├── favicon.svg │ ├── icons │ │ ├── browsers.ts │ │ ├── index.ts │ │ └── websites.ts │ ├── index.ts │ └── stars.svg └── types │ └── index.ts ├── tailwind.config.ts └── tsconfig.json /.env: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_DB_HOST=http://localhost:3001 -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/README.md -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/avatars/Image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/avatars/Image-1.png -------------------------------------------------------------------------------- /public/avatars/Image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/avatars/Image-2.png -------------------------------------------------------------------------------- /public/avatars/Image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/avatars/Image-3.png -------------------------------------------------------------------------------- /public/avatars/Image-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/avatars/Image-4.png -------------------------------------------------------------------------------- /public/avatars/Image-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/avatars/Image-5.png -------------------------------------------------------------------------------- /public/avatars/Image-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/avatars/Image-6.png -------------------------------------------------------------------------------- /public/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/banner.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icons/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/add.svg -------------------------------------------------------------------------------- /public/icons/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/arrow.png -------------------------------------------------------------------------------- /public/icons/avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/avatar.svg -------------------------------------------------------------------------------- /public/icons/bin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/bin.svg -------------------------------------------------------------------------------- /public/icons/browsers/brave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/browsers/brave.svg -------------------------------------------------------------------------------- /public/icons/browsers/chrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/browsers/chrome.svg -------------------------------------------------------------------------------- /public/icons/browsers/edge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/browsers/edge.svg -------------------------------------------------------------------------------- /public/icons/browsers/firefox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/browsers/firefox.svg -------------------------------------------------------------------------------- /public/icons/browsers/safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/browsers/safari.png -------------------------------------------------------------------------------- /public/icons/comments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/comments.svg -------------------------------------------------------------------------------- /public/icons/devto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/devto.svg -------------------------------------------------------------------------------- /public/icons/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/email.svg -------------------------------------------------------------------------------- /public/icons/github-gradient.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/github-gradient.svg -------------------------------------------------------------------------------- /public/icons/like.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/like.svg -------------------------------------------------------------------------------- /public/icons/linkedin-gradient.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/linkedin-gradient.svg -------------------------------------------------------------------------------- /public/icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/menu.svg -------------------------------------------------------------------------------- /public/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/search.svg -------------------------------------------------------------------------------- /public/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/settings.svg -------------------------------------------------------------------------------- /public/icons/stackoverflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/stackoverflow.svg -------------------------------------------------------------------------------- /public/icons/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/star.svg -------------------------------------------------------------------------------- /public/icons/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/telegram.svg -------------------------------------------------------------------------------- /public/icons/triangle-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/triangle-outline.svg -------------------------------------------------------------------------------- /public/icons/triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/triangle.svg -------------------------------------------------------------------------------- /public/icons/vote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/vote.svg -------------------------------------------------------------------------------- /public/icons/websites/devto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/websites/devto.svg -------------------------------------------------------------------------------- /public/icons/websites/freecodecamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/websites/freecodecamp.svg -------------------------------------------------------------------------------- /public/icons/websites/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/websites/github.svg -------------------------------------------------------------------------------- /public/icons/websites/hackrnews.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/websites/hackrnews.svg -------------------------------------------------------------------------------- /public/icons/websites/hashnode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/websites/hashnode.svg -------------------------------------------------------------------------------- /public/icons/websites/reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/websites/reddit.svg -------------------------------------------------------------------------------- /public/icons/websites/stackoverflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/public/icons/websites/stackoverflow.svg -------------------------------------------------------------------------------- /src/app/(dashboard)/dashboard/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/app/(dashboard)/dashboard/loading.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/app/(dashboard)/dashboard/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/app/(dashboard)/layout.tsx -------------------------------------------------------------------------------- /src/app/(site)/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/app/(site)/about/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/contact/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/app/(site)/contact/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/app/(site)/layout.tsx -------------------------------------------------------------------------------- /src/app/(site)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/app/(site)/page.tsx -------------------------------------------------------------------------------- /src/app/api/devto/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/app/api/devto/route.ts -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/components/Testimonials/Testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/Testimonials/Testimonials.tsx -------------------------------------------------------------------------------- /src/components/Testimonials/comment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/Testimonials/comment.tsx -------------------------------------------------------------------------------- /src/components/aos/wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/aos/wrapper.tsx -------------------------------------------------------------------------------- /src/components/bookmarks/bookmark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/bookmarks/bookmark.tsx -------------------------------------------------------------------------------- /src/components/bookmarks/bookmarks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/bookmarks/bookmarks.tsx -------------------------------------------------------------------------------- /src/components/browsers/browsers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/browsers/browsers.tsx -------------------------------------------------------------------------------- /src/components/contact/contact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/contact/contact.tsx -------------------------------------------------------------------------------- /src/components/contact/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/contact/input.tsx -------------------------------------------------------------------------------- /src/components/contact/social.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/contact/social.tsx -------------------------------------------------------------------------------- /src/components/devto/article.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/devto/article.tsx -------------------------------------------------------------------------------- /src/components/devto/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/devto/index.tsx -------------------------------------------------------------------------------- /src/components/features/feature.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/features/feature.tsx -------------------------------------------------------------------------------- /src/components/features/features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/features/features.tsx -------------------------------------------------------------------------------- /src/components/features/featuresPack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/features/featuresPack.tsx -------------------------------------------------------------------------------- /src/components/footer/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/footer/footer.tsx -------------------------------------------------------------------------------- /src/components/hackerNews/article.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/hackerNews/article.tsx -------------------------------------------------------------------------------- /src/components/hackerNews/hackerNews.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/hackerNews/hackerNews.tsx -------------------------------------------------------------------------------- /src/components/header/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/header/header.tsx -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/components/navbar/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/navbar/navbar.tsx -------------------------------------------------------------------------------- /src/components/redirect/redirect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/redirect/redirect.tsx -------------------------------------------------------------------------------- /src/components/searchbar/searchbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/searchbar/searchbar.tsx -------------------------------------------------------------------------------- /src/components/stackoverflow/article.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/stackoverflow/article.tsx -------------------------------------------------------------------------------- /src/components/stackoverflow/stackoverflow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/stackoverflow/stackoverflow.tsx -------------------------------------------------------------------------------- /src/components/statuses/status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/statuses/status.tsx -------------------------------------------------------------------------------- /src/components/statuses/statusSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/statuses/statusSection.tsx -------------------------------------------------------------------------------- /src/components/statuses/statuses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/statuses/statuses.tsx -------------------------------------------------------------------------------- /src/components/supportedWebsites/supportedWebsites.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/supportedWebsites/supportedWebsites.tsx -------------------------------------------------------------------------------- /src/components/time/time.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/components/time/time.tsx -------------------------------------------------------------------------------- /src/constants/avatars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/constants/avatars.ts -------------------------------------------------------------------------------- /src/constants/backgrounds/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/constants/backgrounds/index.ts -------------------------------------------------------------------------------- /src/constants/backgrounds/night-japan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/constants/backgrounds/night-japan.jpg -------------------------------------------------------------------------------- /src/constants/codeImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/constants/codeImg.png -------------------------------------------------------------------------------- /src/constants/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/constants/favicon.svg -------------------------------------------------------------------------------- /src/constants/icons/browsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/constants/icons/browsers.ts -------------------------------------------------------------------------------- /src/constants/icons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/constants/icons/index.ts -------------------------------------------------------------------------------- /src/constants/icons/websites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/constants/icons/websites.ts -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/constants/stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/constants/stars.svg -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-mghn/dev-tab/HEAD/tsconfig.json --------------------------------------------------------------------------------