├── .eslintrc.json ├── .firebase ├── hosting.YnVpbGQ.cache └── hosting.b3V0.cache ├── .firebaserc ├── .gitignore ├── README.md ├── components ├── About.jsx ├── Contact.jsx ├── Main.jsx ├── Navbar.jsx ├── ProjectItem.jsx ├── Projects.jsx └── Skills.jsx ├── firebase.json ├── next.config.js ├── package.json ├── pages ├── _app.js ├── _document.js ├── crypto.jsx ├── index.js ├── netflix.jsx ├── property.jsx ├── resume.jsx └── twitch.jsx ├── postcss.config.js ├── public ├── assets │ ├── about.jpg │ ├── contact.jpg │ ├── navLogo.png │ ├── projects │ │ ├── crypto.jpg │ │ ├── netflix.jpg │ │ ├── property.jpg │ │ └── twitch.jpg │ └── skills │ │ ├── aws.png │ │ ├── css.png │ │ ├── firebase.png │ │ ├── github1.png │ │ ├── html.png │ │ ├── javascript.png │ │ ├── mongo.png │ │ ├── nextjs.png │ │ ├── node.png │ │ ├── react.png │ │ ├── shopify.png │ │ └── tailwind.png ├── fav.png └── vercel.svg ├── styles └── globals.css ├── tailwind.config.js └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.firebase/hosting.YnVpbGQ.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/.firebase/hosting.YnVpbGQ.cache -------------------------------------------------------------------------------- /.firebase/hosting.b3V0.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/.firebase/hosting.b3V0.cache -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/README.md -------------------------------------------------------------------------------- /components/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/components/About.jsx -------------------------------------------------------------------------------- /components/Contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/components/Contact.jsx -------------------------------------------------------------------------------- /components/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/components/Main.jsx -------------------------------------------------------------------------------- /components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/components/Navbar.jsx -------------------------------------------------------------------------------- /components/ProjectItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/components/ProjectItem.jsx -------------------------------------------------------------------------------- /components/Projects.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/components/Projects.jsx -------------------------------------------------------------------------------- /components/Skills.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/components/Skills.jsx -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/firebase.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/pages/_document.js -------------------------------------------------------------------------------- /pages/crypto.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/pages/crypto.jsx -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/pages/index.js -------------------------------------------------------------------------------- /pages/netflix.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/pages/netflix.jsx -------------------------------------------------------------------------------- /pages/property.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/pages/property.jsx -------------------------------------------------------------------------------- /pages/resume.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/pages/resume.jsx -------------------------------------------------------------------------------- /pages/twitch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/pages/twitch.jsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/assets/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/public/assets/about.jpg -------------------------------------------------------------------------------- /public/assets/contact.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/public/assets/contact.jpg -------------------------------------------------------------------------------- /public/assets/navLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/public/assets/navLogo.png -------------------------------------------------------------------------------- /public/assets/projects/crypto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/public/assets/projects/crypto.jpg -------------------------------------------------------------------------------- /public/assets/projects/netflix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/public/assets/projects/netflix.jpg -------------------------------------------------------------------------------- /public/assets/projects/property.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/public/assets/projects/property.jpg -------------------------------------------------------------------------------- /public/assets/projects/twitch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/public/assets/projects/twitch.jpg -------------------------------------------------------------------------------- /public/assets/skills/aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/public/assets/skills/aws.png -------------------------------------------------------------------------------- /public/assets/skills/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/public/assets/skills/css.png -------------------------------------------------------------------------------- /public/assets/skills/firebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/public/assets/skills/firebase.png -------------------------------------------------------------------------------- /public/assets/skills/github1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/public/assets/skills/github1.png -------------------------------------------------------------------------------- /public/assets/skills/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/public/assets/skills/html.png -------------------------------------------------------------------------------- /public/assets/skills/javascript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/public/assets/skills/javascript.png -------------------------------------------------------------------------------- /public/assets/skills/mongo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/public/assets/skills/mongo.png -------------------------------------------------------------------------------- /public/assets/skills/nextjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/public/assets/skills/nextjs.png -------------------------------------------------------------------------------- /public/assets/skills/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/public/assets/skills/node.png -------------------------------------------------------------------------------- /public/assets/skills/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/public/assets/skills/react.png -------------------------------------------------------------------------------- /public/assets/skills/shopify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/public/assets/skills/shopify.png -------------------------------------------------------------------------------- /public/assets/skills/tailwind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/public/assets/skills/tailwind.png -------------------------------------------------------------------------------- /public/fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/public/fav.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/portfolio-nextjs/HEAD/yarn.lock --------------------------------------------------------------------------------