├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── CNAME ├── LICENSE ├── README.md ├── biome.json ├── coverletter.html ├── fa └── index.html ├── favicon.ico ├── fonts ├── AirbnbCereal │ ├── AirbnbCerealBlack.woff │ ├── AirbnbCerealBold.woff │ ├── AirbnbCerealBook.woff │ ├── AirbnbCerealExtraBold.woff │ ├── AirbnbCerealLight.woff │ ├── AirbnbCerealMedium.woff │ ├── example.html │ └── style.css ├── Muli │ ├── Muli-Black.woff │ ├── Muli-BlackItalic.woff │ ├── Muli-Bold.woff │ ├── Muli-BoldItalic.woff │ ├── Muli-ExtraBold.woff │ ├── Muli-ExtraBoldItalic.woff │ ├── Muli-ExtraLight.woff │ ├── Muli-ExtraLightItalic.woff │ ├── Muli-Italic.woff │ ├── Muli-Light.woff │ ├── Muli-LightItalic.woff │ ├── Muli-Regular.woff │ ├── Muli-SemiBold.woff │ ├── Muli-SemiBoldItalic.woff │ ├── example.html │ └── style.css └── Vazirmatn │ ├── Vazirmatn-Black.woff2 │ ├── Vazirmatn-Bold.woff2 │ ├── Vazirmatn-ExtraBold.woff2 │ ├── Vazirmatn-ExtraLight.woff2 │ ├── Vazirmatn-Light.woff2 │ ├── Vazirmatn-Medium.woff2 │ ├── Vazirmatn-Regular.woff2 │ ├── Vazirmatn-SemiBold.woff2 │ ├── Vazirmatn-Thin.woff2 │ └── Vazirmatn[wght].woff2 ├── img ├── Javad-Adib-2016-Avatar.jpg ├── Javad-Adib-2022-Signature.png ├── cover-v1.jpg ├── cover-v2.jpg ├── cover-v3.jpg ├── cover-v4.jpg ├── date.svg ├── email.svg ├── favicon.png ├── git.svg ├── github.svg ├── instagram.svg ├── link-external.svg ├── link.svg ├── linkedin.svg ├── location.svg ├── qrcode_resume.mradib.com.png ├── skype.svg ├── stack-overflow.svg ├── star.svg ├── tel.svg ├── twitter.svg └── website.svg ├── index.html ├── multi-page-resume ├── .gitignore ├── .vscode │ └── extensions.json ├── CHANGELOG.md ├── README.md ├── docs │ ├── CUSTOMIZATION_EXAMPLES.md │ └── README.md ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ └── data.json ├── src │ ├── main.ts │ ├── renderer.ts │ ├── style.css │ └── types.ts ├── tailwind.config.js ├── tsconfig.json └── vite.config.ts ├── package.json ├── pdf ├── MrAdib-Resume-v1920.pdf ├── MrAdib-Resume-v2010.pdf ├── archive │ └── MrAdib-CoverLetter-v240.pdf └── fa │ └── MrAdib-Resume-v202.pdf ├── resume.code-workspace ├── script └── script.js ├── sitemap.xml ├── style ├── style.min.css └── tailwind.css └── tailwind.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | resume.mradib.com -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/biome.json -------------------------------------------------------------------------------- /coverletter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/coverletter.html -------------------------------------------------------------------------------- /fa/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fa/index.html -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/favicon.ico -------------------------------------------------------------------------------- /fonts/AirbnbCereal/AirbnbCerealBlack.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/AirbnbCereal/AirbnbCerealBlack.woff -------------------------------------------------------------------------------- /fonts/AirbnbCereal/AirbnbCerealBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/AirbnbCereal/AirbnbCerealBold.woff -------------------------------------------------------------------------------- /fonts/AirbnbCereal/AirbnbCerealBook.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/AirbnbCereal/AirbnbCerealBook.woff -------------------------------------------------------------------------------- /fonts/AirbnbCereal/AirbnbCerealExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/AirbnbCereal/AirbnbCerealExtraBold.woff -------------------------------------------------------------------------------- /fonts/AirbnbCereal/AirbnbCerealLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/AirbnbCereal/AirbnbCerealLight.woff -------------------------------------------------------------------------------- /fonts/AirbnbCereal/AirbnbCerealMedium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/AirbnbCereal/AirbnbCerealMedium.woff -------------------------------------------------------------------------------- /fonts/AirbnbCereal/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/AirbnbCereal/example.html -------------------------------------------------------------------------------- /fonts/AirbnbCereal/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/AirbnbCereal/style.css -------------------------------------------------------------------------------- /fonts/Muli/Muli-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Muli/Muli-Black.woff -------------------------------------------------------------------------------- /fonts/Muli/Muli-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Muli/Muli-BlackItalic.woff -------------------------------------------------------------------------------- /fonts/Muli/Muli-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Muli/Muli-Bold.woff -------------------------------------------------------------------------------- /fonts/Muli/Muli-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Muli/Muli-BoldItalic.woff -------------------------------------------------------------------------------- /fonts/Muli/Muli-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Muli/Muli-ExtraBold.woff -------------------------------------------------------------------------------- /fonts/Muli/Muli-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Muli/Muli-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /fonts/Muli/Muli-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Muli/Muli-ExtraLight.woff -------------------------------------------------------------------------------- /fonts/Muli/Muli-ExtraLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Muli/Muli-ExtraLightItalic.woff -------------------------------------------------------------------------------- /fonts/Muli/Muli-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Muli/Muli-Italic.woff -------------------------------------------------------------------------------- /fonts/Muli/Muli-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Muli/Muli-Light.woff -------------------------------------------------------------------------------- /fonts/Muli/Muli-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Muli/Muli-LightItalic.woff -------------------------------------------------------------------------------- /fonts/Muli/Muli-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Muli/Muli-Regular.woff -------------------------------------------------------------------------------- /fonts/Muli/Muli-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Muli/Muli-SemiBold.woff -------------------------------------------------------------------------------- /fonts/Muli/Muli-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Muli/Muli-SemiBoldItalic.woff -------------------------------------------------------------------------------- /fonts/Muli/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Muli/example.html -------------------------------------------------------------------------------- /fonts/Muli/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Muli/style.css -------------------------------------------------------------------------------- /fonts/Vazirmatn/Vazirmatn-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Vazirmatn/Vazirmatn-Black.woff2 -------------------------------------------------------------------------------- /fonts/Vazirmatn/Vazirmatn-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Vazirmatn/Vazirmatn-Bold.woff2 -------------------------------------------------------------------------------- /fonts/Vazirmatn/Vazirmatn-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Vazirmatn/Vazirmatn-ExtraBold.woff2 -------------------------------------------------------------------------------- /fonts/Vazirmatn/Vazirmatn-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Vazirmatn/Vazirmatn-ExtraLight.woff2 -------------------------------------------------------------------------------- /fonts/Vazirmatn/Vazirmatn-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Vazirmatn/Vazirmatn-Light.woff2 -------------------------------------------------------------------------------- /fonts/Vazirmatn/Vazirmatn-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Vazirmatn/Vazirmatn-Medium.woff2 -------------------------------------------------------------------------------- /fonts/Vazirmatn/Vazirmatn-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Vazirmatn/Vazirmatn-Regular.woff2 -------------------------------------------------------------------------------- /fonts/Vazirmatn/Vazirmatn-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Vazirmatn/Vazirmatn-SemiBold.woff2 -------------------------------------------------------------------------------- /fonts/Vazirmatn/Vazirmatn-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Vazirmatn/Vazirmatn-Thin.woff2 -------------------------------------------------------------------------------- /fonts/Vazirmatn/Vazirmatn[wght].woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/fonts/Vazirmatn/Vazirmatn[wght].woff2 -------------------------------------------------------------------------------- /img/Javad-Adib-2016-Avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/img/Javad-Adib-2016-Avatar.jpg -------------------------------------------------------------------------------- /img/Javad-Adib-2022-Signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/img/Javad-Adib-2022-Signature.png -------------------------------------------------------------------------------- /img/cover-v1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/img/cover-v1.jpg -------------------------------------------------------------------------------- /img/cover-v2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/img/cover-v2.jpg -------------------------------------------------------------------------------- /img/cover-v3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/img/cover-v3.jpg -------------------------------------------------------------------------------- /img/cover-v4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/img/cover-v4.jpg -------------------------------------------------------------------------------- /img/date.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/img/date.svg -------------------------------------------------------------------------------- /img/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/img/email.svg -------------------------------------------------------------------------------- /img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/img/favicon.png -------------------------------------------------------------------------------- /img/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/img/git.svg -------------------------------------------------------------------------------- /img/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/img/github.svg -------------------------------------------------------------------------------- /img/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/img/instagram.svg -------------------------------------------------------------------------------- /img/link-external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/img/link-external.svg -------------------------------------------------------------------------------- /img/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/img/link.svg -------------------------------------------------------------------------------- /img/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/img/linkedin.svg -------------------------------------------------------------------------------- /img/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/img/location.svg -------------------------------------------------------------------------------- /img/qrcode_resume.mradib.com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/img/qrcode_resume.mradib.com.png -------------------------------------------------------------------------------- /img/skype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/img/skype.svg -------------------------------------------------------------------------------- /img/stack-overflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/img/stack-overflow.svg -------------------------------------------------------------------------------- /img/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/img/star.svg -------------------------------------------------------------------------------- /img/tel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/img/tel.svg -------------------------------------------------------------------------------- /img/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/img/twitter.svg -------------------------------------------------------------------------------- /img/website.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/img/website.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/index.html -------------------------------------------------------------------------------- /multi-page-resume/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/multi-page-resume/.gitignore -------------------------------------------------------------------------------- /multi-page-resume/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/multi-page-resume/.vscode/extensions.json -------------------------------------------------------------------------------- /multi-page-resume/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/multi-page-resume/CHANGELOG.md -------------------------------------------------------------------------------- /multi-page-resume/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/multi-page-resume/README.md -------------------------------------------------------------------------------- /multi-page-resume/docs/CUSTOMIZATION_EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/multi-page-resume/docs/CUSTOMIZATION_EXAMPLES.md -------------------------------------------------------------------------------- /multi-page-resume/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/multi-page-resume/docs/README.md -------------------------------------------------------------------------------- /multi-page-resume/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/multi-page-resume/index.html -------------------------------------------------------------------------------- /multi-page-resume/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/multi-page-resume/package-lock.json -------------------------------------------------------------------------------- /multi-page-resume/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/multi-page-resume/package.json -------------------------------------------------------------------------------- /multi-page-resume/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/multi-page-resume/postcss.config.js -------------------------------------------------------------------------------- /multi-page-resume/public/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/multi-page-resume/public/data.json -------------------------------------------------------------------------------- /multi-page-resume/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/multi-page-resume/src/main.ts -------------------------------------------------------------------------------- /multi-page-resume/src/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/multi-page-resume/src/renderer.ts -------------------------------------------------------------------------------- /multi-page-resume/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/multi-page-resume/src/style.css -------------------------------------------------------------------------------- /multi-page-resume/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/multi-page-resume/src/types.ts -------------------------------------------------------------------------------- /multi-page-resume/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/multi-page-resume/tailwind.config.js -------------------------------------------------------------------------------- /multi-page-resume/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/multi-page-resume/tsconfig.json -------------------------------------------------------------------------------- /multi-page-resume/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/multi-page-resume/vite.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/package.json -------------------------------------------------------------------------------- /pdf/MrAdib-Resume-v1920.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/pdf/MrAdib-Resume-v1920.pdf -------------------------------------------------------------------------------- /pdf/MrAdib-Resume-v2010.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/pdf/MrAdib-Resume-v2010.pdf -------------------------------------------------------------------------------- /pdf/archive/MrAdib-CoverLetter-v240.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/pdf/archive/MrAdib-CoverLetter-v240.pdf -------------------------------------------------------------------------------- /pdf/fa/MrAdib-Resume-v202.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/pdf/fa/MrAdib-Resume-v202.pdf -------------------------------------------------------------------------------- /resume.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/resume.code-workspace -------------------------------------------------------------------------------- /script/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/script/script.js -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/sitemap.xml -------------------------------------------------------------------------------- /style/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/style/style.min.css -------------------------------------------------------------------------------- /style/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/style/tailwind.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJohnAdib/resume/HEAD/tailwind.config.js --------------------------------------------------------------------------------