diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..5751126 Binary files /dev/null and b/.DS_Store differ 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