├── .eslintrc.json ├── .gitignore ├── README.md ├── components ├── button.tsx ├── header.tsx └── meta.tsx ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── about.tsx ├── api │ └── hello.ts ├── index.tsx └── projects.tsx ├── postcss.config.js ├── public ├── favicon.ico ├── hero.png ├── icons │ ├── arrow-up-right.svg │ ├── at-sign.svg │ ├── calendar.svg │ ├── github.svg │ ├── mail.svg │ ├── send.svg │ └── twitter.svg └── projects │ ├── one.svg │ ├── three.svg │ └── two.svg ├── styles └── globals.css ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/README.md -------------------------------------------------------------------------------- /components/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/components/button.tsx -------------------------------------------------------------------------------- /components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/components/header.tsx -------------------------------------------------------------------------------- /components/meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/components/meta.tsx -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/pages/about.tsx -------------------------------------------------------------------------------- /pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/pages/api/hello.ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/projects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/pages/projects.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/public/hero.png -------------------------------------------------------------------------------- /public/icons/arrow-up-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/public/icons/arrow-up-right.svg -------------------------------------------------------------------------------- /public/icons/at-sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/public/icons/at-sign.svg -------------------------------------------------------------------------------- /public/icons/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/public/icons/calendar.svg -------------------------------------------------------------------------------- /public/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/public/icons/github.svg -------------------------------------------------------------------------------- /public/icons/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/public/icons/mail.svg -------------------------------------------------------------------------------- /public/icons/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/public/icons/send.svg -------------------------------------------------------------------------------- /public/icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/public/icons/twitter.svg -------------------------------------------------------------------------------- /public/projects/one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/public/projects/one.svg -------------------------------------------------------------------------------- /public/projects/three.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/public/projects/three.svg -------------------------------------------------------------------------------- /public/projects/two.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/public/projects/two.svg -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyab/conifer/HEAD/yarn.lock --------------------------------------------------------------------------------