From 76cfe76c469a336baabf9b1a285535663b5fc96d Mon Sep 17 00:00:00 2001 From: steven Date: Thu, 12 Oct 2023 13:22:14 -0400 Subject: [PATCH] organize --- .DS_Store | Bin 0 -> 6148 bytes README.md | 37 +++++++++++++++++- mevcamp/.gitignore | 35 ----------------- mevcamp/README.md | 36 ----------------- next-env.d.ts | 5 +++ mevcamp/next.config.js => next.config.js | 0 .../package-lock.json => package-lock.json | 0 mevcamp/package.json => package.json | 0 postcss.config.js | 6 +++ {mevcamp/public => public}/next.svg | 0 {mevcamp/public => public}/vercel.svg | 0 {mevcamp/src => src}/app/favicon.ico | Bin {mevcamp/src => src}/app/globals.css | 0 {mevcamp/src => src}/app/layout.tsx | 0 {mevcamp/src => src}/app/page.tsx | 0 .../tailwind.config.ts => tailwind.config.ts | 0 mevcamp/tsconfig.json => tsconfig.json | 0 17 files changed, 47 insertions(+), 72 deletions(-) create mode 100644 .DS_Store delete mode 100644 mevcamp/.gitignore delete mode 100644 mevcamp/README.md create mode 100644 next-env.d.ts rename mevcamp/next.config.js => next.config.js (100%) rename mevcamp/package-lock.json => package-lock.json (100%) rename mevcamp/package.json => package.json (100%) create mode 100644 postcss.config.js rename {mevcamp/public => public}/next.svg (100%) rename {mevcamp/public => public}/vercel.svg (100%) rename {mevcamp/src => src}/app/favicon.ico (100%) rename {mevcamp/src => src}/app/globals.css (100%) rename {mevcamp/src => src}/app/layout.tsx (100%) rename {mevcamp/src => src}/app/page.tsx (100%) rename mevcamp/tailwind.config.ts => tailwind.config.ts (100%) rename mevcamp/tsconfig.json => tsconfig.json (100%) diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5751126b14c4f942ffa34900fc20464c73cca5e9 GIT binary patch literal 6148 zcmeHK%}T>S5dO9;TCs<@T zFbbG^be|3mt_2`AIPHYj(o2Ys4HyN?J#vL&yerYWn$Thx@6LG}?4p3VNAC_3nhz5q zo6w;c7oGcCXATp2)KM8w2FeW7{cT(7|LNxbzwD%U%78NPuNW|mco6sbNTIe?9!_el srCv})#4h)^bm4_7#k7@D+@U(*yp;=L6fpP58H)Z0I2v?N27Z-+Pn`mBLI3~& literal 0 HcmV?d00001 diff --git a/README.md b/README.md index 7f02977..c403366 100644 --- a/README.md +++ b/README.md @@ -1 +1,36 @@ -# mevcamp +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.tsx`. 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/mevcamp/.gitignore b/mevcamp/.gitignore deleted file mode 100644 index 8f322f0..0000000 --- a/mevcamp/.gitignore +++ /dev/null @@ -1,35 +0,0 @@ -# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. - -# dependencies -/node_modules -/.pnp -.pnp.js - -# testing -/coverage - -# next.js -/.next/ -/out/ - -# production -/build - -# misc -.DS_Store -*.pem - -# debug -npm-debug.log* -yarn-debug.log* -yarn-error.log* - -# local env files -.env*.local - -# vercel -.vercel - -# typescript -*.tsbuildinfo -next-env.d.ts diff --git a/mevcamp/README.md b/mevcamp/README.md deleted file mode 100644 index c403366..0000000 --- a/mevcamp/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.tsx`. 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/next-env.d.ts b/next-env.d.ts new file mode 100644 index 0000000..4f11a03 --- /dev/null +++ b/next-env.d.ts @@ -0,0 +1,5 @@ +/// +/// + +// NOTE: This file should not be edited +// see https://nextjs.org/docs/basic-features/typescript for more information. diff --git a/mevcamp/next.config.js b/next.config.js similarity index 100% rename from mevcamp/next.config.js rename to next.config.js diff --git a/mevcamp/package-lock.json b/package-lock.json similarity index 100% rename from mevcamp/package-lock.json rename to package-lock.json diff --git a/mevcamp/package.json b/package.json similarity index 100% rename from mevcamp/package.json rename to package.json diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..33ad091 --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +} diff --git a/mevcamp/public/next.svg b/public/next.svg similarity index 100% rename from mevcamp/public/next.svg rename to public/next.svg diff --git a/mevcamp/public/vercel.svg b/public/vercel.svg similarity index 100% rename from mevcamp/public/vercel.svg rename to public/vercel.svg diff --git a/mevcamp/src/app/favicon.ico b/src/app/favicon.ico similarity index 100% rename from mevcamp/src/app/favicon.ico rename to src/app/favicon.ico diff --git a/mevcamp/src/app/globals.css b/src/app/globals.css similarity index 100% rename from mevcamp/src/app/globals.css rename to src/app/globals.css diff --git a/mevcamp/src/app/layout.tsx b/src/app/layout.tsx similarity index 100% rename from mevcamp/src/app/layout.tsx rename to src/app/layout.tsx diff --git a/mevcamp/src/app/page.tsx b/src/app/page.tsx similarity index 100% rename from mevcamp/src/app/page.tsx rename to src/app/page.tsx diff --git a/mevcamp/tailwind.config.ts b/tailwind.config.ts similarity index 100% rename from mevcamp/tailwind.config.ts rename to tailwind.config.ts diff --git a/mevcamp/tsconfig.json b/tsconfig.json similarity index 100% rename from mevcamp/tsconfig.json rename to tsconfig.json