From f749ae802b180feb108e06188209b83c73a9a441 Mon Sep 17 00:00:00 2001 From: Cjm7603 Date: Tue, 27 Aug 2024 08:47:26 -0400 Subject: [PATCH] changing next js location --- portfolio/.eslintrc.json => .eslintrc.json | 0 portfolio/.gitignore => .gitignore | 0 README.md | 38 +++++++++++++++++- portfolio/jsconfig.json => jsconfig.json | 0 portfolio/next.config.mjs => next.config.mjs | 0 .../package-lock.json => package-lock.json | 0 portfolio/package.json => package.json | 0 portfolio/README.md | 36 ----------------- .../postcss.config.mjs => postcss.config.mjs | 0 {portfolio/public => public}/next.svg | 0 {portfolio/public => public}/vercel.svg | 0 {portfolio/src => src}/app/favicon.ico | Bin {portfolio/src => src}/app/globals.css | 0 {portfolio/src => src}/app/layout.js | 0 {portfolio/src => src}/app/page.js | 0 {portfolio/src => src}/public/.nojekyll | 0 .../tailwind.config.js => tailwind.config.js | 0 17 files changed, 36 insertions(+), 38 deletions(-) rename portfolio/.eslintrc.json => .eslintrc.json (100%) rename portfolio/.gitignore => .gitignore (100%) rename portfolio/jsconfig.json => jsconfig.json (100%) rename portfolio/next.config.mjs => next.config.mjs (100%) rename portfolio/package-lock.json => package-lock.json (100%) rename portfolio/package.json => package.json (100%) delete mode 100644 portfolio/README.md rename portfolio/postcss.config.mjs => postcss.config.mjs (100%) rename {portfolio/public => public}/next.svg (100%) rename {portfolio/public => public}/vercel.svg (100%) rename {portfolio/src => src}/app/favicon.ico (100%) rename {portfolio/src => src}/app/globals.css (100%) rename {portfolio/src => src}/app/layout.js (100%) rename {portfolio/src => src}/app/page.js (100%) rename {portfolio/src => src}/public/.nojekyll (100%) rename portfolio/tailwind.config.js => tailwind.config.js (100%) diff --git a/portfolio/.eslintrc.json b/.eslintrc.json similarity index 100% rename from portfolio/.eslintrc.json rename to .eslintrc.json diff --git a/portfolio/.gitignore b/.gitignore similarity index 100% rename from portfolio/.gitignore rename to .gitignore diff --git a/README.md b/README.md index f912e48..0dc9ea2 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,36 @@ -# cjm7603.github.io -Connor McLoon Portfolio Website +This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). + +## Getting Started + +First, run the development server: + +```bash +npm run dev +# or +yarn dev +# or +pnpm dev +# or +bun dev +``` + +Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. + +You can start editing the page by modifying `app/page.js`. The page auto-updates as you edit the file. + +This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. + +## Learn More + +To learn more about Next.js, take a look at the following resources: + +- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. +- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. + +You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! + +## Deploy on Vercel + +The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. + +Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. diff --git a/portfolio/jsconfig.json b/jsconfig.json similarity index 100% rename from portfolio/jsconfig.json rename to jsconfig.json diff --git a/portfolio/next.config.mjs b/next.config.mjs similarity index 100% rename from portfolio/next.config.mjs rename to next.config.mjs diff --git a/portfolio/package-lock.json b/package-lock.json similarity index 100% rename from portfolio/package-lock.json rename to package-lock.json diff --git a/portfolio/package.json b/package.json similarity index 100% rename from portfolio/package.json rename to package.json diff --git a/portfolio/README.md b/portfolio/README.md deleted file mode 100644 index 0dc9ea2..0000000 --- a/portfolio/README.md +++ /dev/null @@ -1,36 +0,0 @@ -This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). - -## Getting Started - -First, run the development server: - -```bash -npm run dev -# or -yarn dev -# or -pnpm dev -# or -bun dev -``` - -Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. - -You can start editing the page by modifying `app/page.js`. The page auto-updates as you edit the file. - -This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. - -## Learn More - -To learn more about Next.js, take a look at the following resources: - -- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. -- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. - -You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! - -## Deploy on Vercel - -The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. - -Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. diff --git a/portfolio/postcss.config.mjs b/postcss.config.mjs similarity index 100% rename from portfolio/postcss.config.mjs rename to postcss.config.mjs diff --git a/portfolio/public/next.svg b/public/next.svg similarity index 100% rename from portfolio/public/next.svg rename to public/next.svg diff --git a/portfolio/public/vercel.svg b/public/vercel.svg similarity index 100% rename from portfolio/public/vercel.svg rename to public/vercel.svg diff --git a/portfolio/src/app/favicon.ico b/src/app/favicon.ico similarity index 100% rename from portfolio/src/app/favicon.ico rename to src/app/favicon.ico diff --git a/portfolio/src/app/globals.css b/src/app/globals.css similarity index 100% rename from portfolio/src/app/globals.css rename to src/app/globals.css diff --git a/portfolio/src/app/layout.js b/src/app/layout.js similarity index 100% rename from portfolio/src/app/layout.js rename to src/app/layout.js diff --git a/portfolio/src/app/page.js b/src/app/page.js similarity index 100% rename from portfolio/src/app/page.js rename to src/app/page.js diff --git a/portfolio/src/public/.nojekyll b/src/public/.nojekyll similarity index 100% rename from portfolio/src/public/.nojekyll rename to src/public/.nojekyll diff --git a/portfolio/tailwind.config.js b/tailwind.config.js similarity index 100% rename from portfolio/tailwind.config.js rename to tailwind.config.js