├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── README.md ├── next-env.d.ts ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── Alibaba-PuHuiTi-Light.ttf ├── favicon.ico ├── huakang.ttf └── vercel.svg ├── src ├── components │ ├── app │ │ └── index.tsx │ ├── editor │ │ ├── FormCreator.tsx │ │ ├── conifg.js │ │ └── index.tsx │ ├── icon │ │ └── index.tsx │ └── preview │ │ ├── avatar.tsx │ │ ├── awardList.tsx │ │ ├── education.tsx │ │ ├── index.tsx │ │ ├── profile.tsx │ │ ├── projectList.tsx │ │ ├── skills.tsx │ │ ├── style.ts │ │ └── workExpList.tsx ├── context │ └── resumeContext.ts ├── pages │ ├── _app.tsx │ ├── _document.tsx │ ├── api │ │ └── hello.js │ └── index.tsx └── styles │ ├── Data Arranging_Outline.png │ └── globals.css ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/README.md -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/Alibaba-PuHuiTi-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/public/Alibaba-PuHuiTi-Light.ttf -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/huakang.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/public/huakang.ttf -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/components/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/src/components/app/index.tsx -------------------------------------------------------------------------------- /src/components/editor/FormCreator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/src/components/editor/FormCreator.tsx -------------------------------------------------------------------------------- /src/components/editor/conifg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/src/components/editor/conifg.js -------------------------------------------------------------------------------- /src/components/editor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/src/components/editor/index.tsx -------------------------------------------------------------------------------- /src/components/icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/src/components/icon/index.tsx -------------------------------------------------------------------------------- /src/components/preview/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/src/components/preview/avatar.tsx -------------------------------------------------------------------------------- /src/components/preview/awardList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/src/components/preview/awardList.tsx -------------------------------------------------------------------------------- /src/components/preview/education.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/src/components/preview/education.tsx -------------------------------------------------------------------------------- /src/components/preview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/src/components/preview/index.tsx -------------------------------------------------------------------------------- /src/components/preview/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/src/components/preview/profile.tsx -------------------------------------------------------------------------------- /src/components/preview/projectList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/src/components/preview/projectList.tsx -------------------------------------------------------------------------------- /src/components/preview/skills.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/src/components/preview/skills.tsx -------------------------------------------------------------------------------- /src/components/preview/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/src/components/preview/style.ts -------------------------------------------------------------------------------- /src/components/preview/workExpList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/src/components/preview/workExpList.tsx -------------------------------------------------------------------------------- /src/context/resumeContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/src/context/resumeContext.ts -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/src/pages/api/hello.js -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/styles/Data Arranging_Outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/src/styles/Data Arranging_Outline.png -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maqi1520/next-resume/HEAD/tsconfig.json --------------------------------------------------------------------------------