├── .gitignore ├── .stackblitzrc ├── README.md ├── index.html ├── package.json ├── postcss.config.js ├── public ├── office_chair_business_man.png ├── office_chair_business_man_profile.png └── profile.jpg ├── src ├── ambient.d.ts ├── components │ └── title_with_period.tsx ├── index.css ├── main.tsx ├── newbie.mdx ├── resume.mdx └── superrookie.mdx ├── tailwind.config.js ├── tsconfig.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totuworld/mdx-resume/HEAD/.gitignore -------------------------------------------------------------------------------- /.stackblitzrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totuworld/mdx-resume/HEAD/.stackblitzrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totuworld/mdx-resume/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totuworld/mdx-resume/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totuworld/mdx-resume/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totuworld/mdx-resume/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/office_chair_business_man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totuworld/mdx-resume/HEAD/public/office_chair_business_man.png -------------------------------------------------------------------------------- /public/office_chair_business_man_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totuworld/mdx-resume/HEAD/public/office_chair_business_man_profile.png -------------------------------------------------------------------------------- /public/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totuworld/mdx-resume/HEAD/public/profile.jpg -------------------------------------------------------------------------------- /src/ambient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totuworld/mdx-resume/HEAD/src/ambient.d.ts -------------------------------------------------------------------------------- /src/components/title_with_period.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totuworld/mdx-resume/HEAD/src/components/title_with_period.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totuworld/mdx-resume/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totuworld/mdx-resume/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/newbie.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totuworld/mdx-resume/HEAD/src/newbie.mdx -------------------------------------------------------------------------------- /src/resume.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totuworld/mdx-resume/HEAD/src/resume.mdx -------------------------------------------------------------------------------- /src/superrookie.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totuworld/mdx-resume/HEAD/src/superrookie.mdx -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totuworld/mdx-resume/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totuworld/mdx-resume/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totuworld/mdx-resume/HEAD/vite.config.ts --------------------------------------------------------------------------------