├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── demo └── website_img.png ├── next-env.d.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── src ├── assets │ ├── css │ │ └── global.css │ └── img │ │ ├── Home.svg │ │ └── logo-linkedin.svg ├── components │ ├── Education.tsx │ ├── Header │ │ └── Header.tsx │ ├── Repository │ │ └── Repo.tsx │ ├── Tech.tsx │ └── Work.tsx └── pages │ ├── _app.tsx │ ├── about.tsx │ └── index.tsx ├── tailwind.config.js ├── tsconfig.json ├── vercel.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdemCanCertel-zz/website/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdemCanCertel-zz/website/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdemCanCertel-zz/website/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdemCanCertel-zz/website/HEAD/README.md -------------------------------------------------------------------------------- /demo/website_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdemCanCertel-zz/website/HEAD/demo/website_img.png -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdemCanCertel-zz/website/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | reactStrictMode: true, 3 | }; -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdemCanCertel-zz/website/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdemCanCertel-zz/website/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/assets/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdemCanCertel-zz/website/HEAD/src/assets/css/global.css -------------------------------------------------------------------------------- /src/assets/img/Home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdemCanCertel-zz/website/HEAD/src/assets/img/Home.svg -------------------------------------------------------------------------------- /src/assets/img/logo-linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdemCanCertel-zz/website/HEAD/src/assets/img/logo-linkedin.svg -------------------------------------------------------------------------------- /src/components/Education.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdemCanCertel-zz/website/HEAD/src/components/Education.tsx -------------------------------------------------------------------------------- /src/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdemCanCertel-zz/website/HEAD/src/components/Header/Header.tsx -------------------------------------------------------------------------------- /src/components/Repository/Repo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdemCanCertel-zz/website/HEAD/src/components/Repository/Repo.tsx -------------------------------------------------------------------------------- /src/components/Tech.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdemCanCertel-zz/website/HEAD/src/components/Tech.tsx -------------------------------------------------------------------------------- /src/components/Work.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdemCanCertel-zz/website/HEAD/src/components/Work.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdemCanCertel-zz/website/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdemCanCertel-zz/website/HEAD/src/pages/about.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdemCanCertel-zz/website/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdemCanCertel-zz/website/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdemCanCertel-zz/website/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdemCanCertel-zz/website/HEAD/vercel.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdemCanCertel-zz/website/HEAD/yarn.lock --------------------------------------------------------------------------------