├── .eslintrc.json ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── _posts ├── firstblog.md ├── secondblog.md └── threeblog.md ├── animations └── index.js ├── components ├── BlogEditor │ └── index.js ├── Button │ └── index.js ├── ContentSection │ └── index.js ├── Cursor │ └── index.js ├── Footer │ └── index.js ├── Header │ └── index.js ├── ProjectResume │ └── index.js ├── ServiceCard │ └── index.js ├── Socials │ └── index.js └── WorkCard │ └── index.js ├── data ├── portfolio copy.json └── portfolio.json ├── next.config.js ├── package.json ├── pages ├── _app.js ├── api │ ├── blog │ │ ├── edit.js │ │ └── index.js │ └── portfolio.js ├── blog │ ├── [slug].js │ └── index.js ├── edit.js ├── index.js └── resume.js ├── postcss.config.js ├── public ├── favicon.ico ├── images │ ├── back.svg │ ├── cancel-white.svg │ ├── cancel.svg │ ├── logo.svg │ ├── menu-white.svg │ ├── menu.svg │ ├── moon.svg │ └── sun.svg └── vercel.svg ├── styles ├── globals.css └── markdown.css ├── tailwind.config.js ├── utils ├── api.js ├── index.js └── markdownToHtml.js └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/README.md -------------------------------------------------------------------------------- /_posts/firstblog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/_posts/firstblog.md -------------------------------------------------------------------------------- /_posts/secondblog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/_posts/secondblog.md -------------------------------------------------------------------------------- /_posts/threeblog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/_posts/threeblog.md -------------------------------------------------------------------------------- /animations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/animations/index.js -------------------------------------------------------------------------------- /components/BlogEditor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/components/BlogEditor/index.js -------------------------------------------------------------------------------- /components/Button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/components/Button/index.js -------------------------------------------------------------------------------- /components/ContentSection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/components/ContentSection/index.js -------------------------------------------------------------------------------- /components/Cursor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/components/Cursor/index.js -------------------------------------------------------------------------------- /components/Footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/components/Footer/index.js -------------------------------------------------------------------------------- /components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/components/Header/index.js -------------------------------------------------------------------------------- /components/ProjectResume/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/components/ProjectResume/index.js -------------------------------------------------------------------------------- /components/ServiceCard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/components/ServiceCard/index.js -------------------------------------------------------------------------------- /components/Socials/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/components/Socials/index.js -------------------------------------------------------------------------------- /components/WorkCard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/components/WorkCard/index.js -------------------------------------------------------------------------------- /data/portfolio copy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/data/portfolio copy.json -------------------------------------------------------------------------------- /data/portfolio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/data/portfolio.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/api/blog/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/pages/api/blog/edit.js -------------------------------------------------------------------------------- /pages/api/blog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/pages/api/blog/index.js -------------------------------------------------------------------------------- /pages/api/portfolio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/pages/api/portfolio.js -------------------------------------------------------------------------------- /pages/blog/[slug].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/pages/blog/[slug].js -------------------------------------------------------------------------------- /pages/blog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/pages/blog/index.js -------------------------------------------------------------------------------- /pages/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/pages/edit.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/pages/index.js -------------------------------------------------------------------------------- /pages/resume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/pages/resume.js -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/public/images/back.svg -------------------------------------------------------------------------------- /public/images/cancel-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/public/images/cancel-white.svg -------------------------------------------------------------------------------- /public/images/cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/public/images/cancel.svg -------------------------------------------------------------------------------- /public/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/public/images/logo.svg -------------------------------------------------------------------------------- /public/images/menu-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/public/images/menu-white.svg -------------------------------------------------------------------------------- /public/images/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/public/images/menu.svg -------------------------------------------------------------------------------- /public/images/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/public/images/moon.svg -------------------------------------------------------------------------------- /public/images/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/public/images/sun.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/styles/globals.css -------------------------------------------------------------------------------- /styles/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/styles/markdown.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /utils/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/utils/api.js -------------------------------------------------------------------------------- /utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/utils/index.js -------------------------------------------------------------------------------- /utils/markdownToHtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/utils/markdownToHtml.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionStrate/react-portfolio-template/HEAD/yarn.lock --------------------------------------------------------------------------------