├── .gitignore ├── README.md ├── next.config.js ├── package.json ├── pages ├── _app.js ├── _document.js ├── index.mdx ├── photos.mdx ├── posts │ ├── index.md │ ├── markdown.md │ └── pages.md └── tags │ └── [tag].mdx ├── public ├── favicon.ico ├── fonts │ ├── Inter-italic.latin.var.woff2 │ └── Inter-roman.latin.var.woff2 └── images │ ├── photo.jpg │ └── photo2.jpg ├── scripts └── gen-rss.js ├── styles └── main.css ├── theme.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/nextjs-portfolio-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/nextjs-portfolio-starter/HEAD/README.md -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/nextjs-portfolio-starter/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/nextjs-portfolio-starter/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/nextjs-portfolio-starter/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/nextjs-portfolio-starter/HEAD/pages/_document.js -------------------------------------------------------------------------------- /pages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/nextjs-portfolio-starter/HEAD/pages/index.mdx -------------------------------------------------------------------------------- /pages/photos.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/nextjs-portfolio-starter/HEAD/pages/photos.mdx -------------------------------------------------------------------------------- /pages/posts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/nextjs-portfolio-starter/HEAD/pages/posts/index.md -------------------------------------------------------------------------------- /pages/posts/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/nextjs-portfolio-starter/HEAD/pages/posts/markdown.md -------------------------------------------------------------------------------- /pages/posts/pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/nextjs-portfolio-starter/HEAD/pages/posts/pages.md -------------------------------------------------------------------------------- /pages/tags/[tag].mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/nextjs-portfolio-starter/HEAD/pages/tags/[tag].mdx -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/nextjs-portfolio-starter/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/Inter-italic.latin.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/nextjs-portfolio-starter/HEAD/public/fonts/Inter-italic.latin.var.woff2 -------------------------------------------------------------------------------- /public/fonts/Inter-roman.latin.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/nextjs-portfolio-starter/HEAD/public/fonts/Inter-roman.latin.var.woff2 -------------------------------------------------------------------------------- /public/images/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/nextjs-portfolio-starter/HEAD/public/images/photo.jpg -------------------------------------------------------------------------------- /public/images/photo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/nextjs-portfolio-starter/HEAD/public/images/photo2.jpg -------------------------------------------------------------------------------- /scripts/gen-rss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/nextjs-portfolio-starter/HEAD/scripts/gen-rss.js -------------------------------------------------------------------------------- /styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/nextjs-portfolio-starter/HEAD/styles/main.css -------------------------------------------------------------------------------- /theme.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/nextjs-portfolio-starter/HEAD/theme.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/nextjs-portfolio-starter/HEAD/yarn.lock --------------------------------------------------------------------------------