Zlr3-NFJ@NFaJlhyfcw{k^vvtGl`N9xSo**rDW4S}i
zM9{fMPWo%4wYDG~BZ18BD+}h|GQKc-g^{++3MY>}W_uq7jGHx{mwE9fZiPCoxN$+7
zrODGGJrOkcPQUB(FD5aoS4g~7#6NR^ma7-!>mHuJfY5kTe6PpNNKC9GGRiu^L31uG
z$7v`*JknQHsYB!Tm_W{a32TM099djW%5e+j0Ve_ct}IM>XLF1Ap+YvcrLV=|CKo6S
zb+9Nl3_YdKP6%Cxy@6TxZ>;4&nTneadr
z_ES90ydCev)LV!dN=#(*f}|ZORFdvkYBni^aLbUk>BajeWIOcmHP#8S)*2U~QKI%S
zyrLmtPqb&TphJ;>yAxri#;{uyk`JJqODDw%(Z=2`1uc}br^V%>j!gS)D*q*f_-qf8&D;W1dJgQMlaH5er
zN2U<%Smb7==vE}dDI8K7cKz!vs^73o9f>2sgiTzWcwY|BMYHH5%Vn7#kiw&eItCqa
zIkR2~Q}>X=Ar8W|^Ms41Fm8o6IB2_j60eOeBB1Br!boW7JnoeX6Gs)?7rW0^5psc-
zjS16yb>dFn>KPOF;imD}e!enuIniFzv}n$m2#gCCv4jM#ArwlzZ$7@9&XkFxZ4n!V
zj3dyiwW4Ki2QG{@i>yuZXQizw_OkZI^-3otXC{!(lUpJF33gI60ak;Uqitp74|B6I
zgg{b=Iz}WkhCGj1M=hu4#Aw173YxIVbISaoc
z-nLZC*6Tgivd5V`K%GxhBsp@SUU60-rfc$=wb>zdJzXS&-5(NRRodFk;Kxk!S(O(a0e7oY=E(
zAyS;Ow?6Q&XA+cnkCb{28_1N8H#?J!*$MmIwLq^*T_9-z^&UE@A(z9oGYtFy6EZef
LrJugUA?W`A8`#=m
literal 0
HcmV?d00001
diff --git a/mmp/src/app/globals.css b/mmp/src/app/globals.css
new file mode 100644
index 0000000..fd81e88
--- /dev/null
+++ b/mmp/src/app/globals.css
@@ -0,0 +1,27 @@
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
+
+:root {
+ --foreground-rgb: 0, 0, 0;
+ --background-start-rgb: 214, 219, 220;
+ --background-end-rgb: 255, 255, 255;
+}
+
+@media (prefers-color-scheme: dark) {
+ :root {
+ --foreground-rgb: 255, 255, 255;
+ --background-start-rgb: 0, 0, 0;
+ --background-end-rgb: 0, 0, 0;
+ }
+}
+
+body {
+ color: rgb(var(--foreground-rgb));
+ background: linear-gradient(
+ to bottom,
+ transparent,
+ rgb(var(--background-end-rgb))
+ )
+ rgb(var(--background-start-rgb));
+}
diff --git a/mmp/src/app/layout.tsx b/mmp/src/app/layout.tsx
new file mode 100644
index 0000000..40e027f
--- /dev/null
+++ b/mmp/src/app/layout.tsx
@@ -0,0 +1,22 @@
+import type { Metadata } from 'next'
+import { Inter } from 'next/font/google'
+import './globals.css'
+
+const inter = Inter({ subsets: ['latin'] })
+
+export const metadata: Metadata = {
+ title: 'Create Next App',
+ description: 'Generated by create next app',
+}
+
+export default function RootLayout({
+ children,
+}: {
+ children: React.ReactNode
+}) {
+ return (
+
+ {children}
+
+ )
+}
diff --git a/mmp/src/app/page.tsx b/mmp/src/app/page.tsx
new file mode 100644
index 0000000..b973266
--- /dev/null
+++ b/mmp/src/app/page.tsx
@@ -0,0 +1,113 @@
+import Image from 'next/image'
+
+export default function Home() {
+ return (
+
+
+
+ Get started by editing
+ src/app/page.tsx
+
+
+
+
+
+
+
+
+
+
+ )
+}
diff --git a/mmp/tailwind.config.ts b/mmp/tailwind.config.ts
new file mode 100644
index 0000000..1af3b8f
--- /dev/null
+++ b/mmp/tailwind.config.ts
@@ -0,0 +1,20 @@
+import type { Config } from 'tailwindcss'
+
+const config: Config = {
+ content: [
+ './src/pages/**/*.{js,ts,jsx,tsx,mdx}',
+ './src/components/**/*.{js,ts,jsx,tsx,mdx}',
+ './src/app/**/*.{js,ts,jsx,tsx,mdx}',
+ ],
+ theme: {
+ extend: {
+ backgroundImage: {
+ 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
+ 'gradient-conic':
+ 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
+ },
+ },
+ },
+ plugins: [],
+}
+export default config
diff --git a/mmp/tsconfig.json b/mmp/tsconfig.json
new file mode 100644
index 0000000..e59724b
--- /dev/null
+++ b/mmp/tsconfig.json
@@ -0,0 +1,27 @@
+{
+ "compilerOptions": {
+ "target": "es5",
+ "lib": ["dom", "dom.iterable", "esnext"],
+ "allowJs": true,
+ "skipLibCheck": true,
+ "strict": true,
+ "noEmit": true,
+ "esModuleInterop": true,
+ "module": "esnext",
+ "moduleResolution": "bundler",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "jsx": "preserve",
+ "incremental": true,
+ "plugins": [
+ {
+ "name": "next"
+ }
+ ],
+ "paths": {
+ "@/*": ["./src/*"]
+ }
+ },
+ "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
+ "exclude": ["node_modules"]
+}
From f55f2822f82f8efdd4983554982f32c0efd6a0af Mon Sep 17 00:00:00 2001
From: Heather Yu <35639529+hetd54@users.noreply.github.com>
Date: Tue, 16 Jan 2024 14:28:32 -0500
Subject: [PATCH 2/6] create gitignore
---
.gitignore | 2 ++
1 file changed, 2 insertions(+)
create mode 100644 .gitignore
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..3f096ef
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+
+.idea/workspace.xml
From 913aa1e2da6e9d260088a45aec03e6d3044a5bac Mon Sep 17 00:00:00 2001
From: Heather Yu <35639529+hetd54@users.noreply.github.com>
Date: Tue, 16 Jan 2024 15:43:18 -0500
Subject: [PATCH 3/6] chore: move mmp up a directory (oops)
---
.eslintrc.js | 36 ++++++++++++++++++
mmp/.eslintrc.json => .eslintrc.json | 0
.gitignore | 27 ++++++++++++-
.prettierignore | 1 +
.prettierrc | 7 ++++
README.md | 38 +++++++++++++++++++
mmp/.gitignore | 37 ------------------
mmp/README.md | 36 ------------------
mmp/next.config.js => next.config.js | 0
mmp/package-lock.json => package-lock.json | 31 ++++++++++++++-
mmp/package.json => package.json | 12 +++---
mmp/postcss.config.js => postcss.config.js | 0
{mmp/public => public}/next.svg | 0
{mmp/public => public}/vercel.svg | 0
{mmp/src => src}/app/favicon.ico | Bin
{mmp/src => src}/app/globals.css | 0
{mmp/src => src}/app/layout.tsx | 0
{mmp/src => src}/app/page.tsx | 0
mmp/tailwind.config.ts => tailwind.config.ts | 0
mmp/tsconfig.json => tsconfig.json | 0
20 files changed, 145 insertions(+), 80 deletions(-)
create mode 100644 .eslintrc.js
rename mmp/.eslintrc.json => .eslintrc.json (100%)
create mode 100644 .prettierignore
create mode 100644 .prettierrc
delete mode 100644 mmp/.gitignore
delete mode 100644 mmp/README.md
rename mmp/next.config.js => next.config.js (100%)
rename mmp/package-lock.json => package-lock.json (99%)
rename mmp/package.json => package.json (68%)
rename mmp/postcss.config.js => postcss.config.js (100%)
rename {mmp/public => public}/next.svg (100%)
rename {mmp/public => public}/vercel.svg (100%)
rename {mmp/src => src}/app/favicon.ico (100%)
rename {mmp/src => src}/app/globals.css (100%)
rename {mmp/src => src}/app/layout.tsx (100%)
rename {mmp/src => src}/app/page.tsx (100%)
rename mmp/tailwind.config.ts => tailwind.config.ts (100%)
rename mmp/tsconfig.json => tsconfig.json (100%)
diff --git a/.eslintrc.js b/.eslintrc.js
new file mode 100644
index 0000000..60ffe40
--- /dev/null
+++ b/.eslintrc.js
@@ -0,0 +1,36 @@
+{}
+module.exports = {
+ root: true,
+ env: {
+ browser: true,
+ es6: true,
+ jest: true,
+ node: true,
+ },
+ extends: [
+ "eslint:recommended",
+ "plugin:react/recommended",
+ "plugin:import/recommended",
+ "prettier",
+ ],
+ parserOptions: {
+ sourceType: "module",
+ ecmaVersion: 2023,
+ },
+ plugins: ["react"],
+ rules: {
+ "react/prop-types": "off", // TODO: These should be added so the rule can be removed
+ "import/order": "warn",
+ },
+ settings: {
+ react: {
+ version: "detect",
+ },
+ "import/resolver": {
+ node: {
+ extensions: [".js", ".jsx"],
+ },
+ },
+ },
+ overrides: [{ files: ["*.jsx", "*.js"] }],
+};
diff --git a/mmp/.eslintrc.json b/.eslintrc.json
similarity index 100%
rename from mmp/.eslintrc.json
rename to .eslintrc.json
diff --git a/.gitignore b/.gitignore
index 3f096ef..c1773cb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,27 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+# Dependencies
+node_modules
+Brewfile.lock.json
-.idea/workspace.xml
+# Production
+/build
+/dist
+/out
+
+# Logs
+*.log
+*.log*
+
+# Versioning
+public/config/version.json
+Brewfile.lock.json
+
+# Firebase private key
+**/firebase-service-account.json
+
+
+# Misc
+.idea
+public
+.env
+.DS_Store
diff --git a/.prettierignore b/.prettierignore
new file mode 100644
index 0000000..0967ef4
--- /dev/null
+++ b/.prettierignore
@@ -0,0 +1 @@
+{}
diff --git a/.prettierrc b/.prettierrc
new file mode 100644
index 0000000..48e90e8
--- /dev/null
+++ b/.prettierrc
@@ -0,0 +1,7 @@
+{
+ "endOfLine": "lf",
+ "semi": false,
+ "singleQuote": false,
+ "tabWidth": 2,
+ "trailingComma": "es5"
+}
diff --git a/README.md b/README.md
index dac1c6c..555777e 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,40 @@
# mmp
Mesoamerican Migration Project
+
+
+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/mmp/.gitignore b/mmp/.gitignore
deleted file mode 100644
index 71804cc..0000000
--- a/mmp/.gitignore
+++ /dev/null
@@ -1,37 +0,0 @@
-# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
-
-# dependencies
-/node_modules
-/.pnp
-.pnp.js
-.yarn/install-state.gz
-
-# testing
-/coverage
-
-# next.js
-/.next/
-/out/
-
-# production
-/build
-
-# misc
-.DS_Store
-.idea
-*.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/mmp/README.md b/mmp/README.md
deleted file mode 100644
index c403366..0000000
--- a/mmp/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/mmp/next.config.js b/next.config.js
similarity index 100%
rename from mmp/next.config.js
rename to next.config.js
diff --git a/mmp/package-lock.json b/package-lock.json
similarity index 99%
rename from mmp/package-lock.json
rename to package-lock.json
index 5e1d2fc..366d90b 100644
--- a/mmp/package-lock.json
+++ b/package-lock.json
@@ -17,9 +17,11 @@
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
- "eslint": "^8",
+ "eslint": "^8.56.0",
"eslint-config-next": "14.0.4",
+ "eslint-config-prettier": "^9.1.0",
"postcss": "^8",
+ "prettier": "3.2.2",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
@@ -1548,6 +1550,18 @@
}
}
},
+ "node_modules/eslint-config-prettier": {
+ "version": "9.1.0",
+ "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz",
+ "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==",
+ "dev": true,
+ "bin": {
+ "eslint-config-prettier": "bin/cli.js"
+ },
+ "peerDependencies": {
+ "eslint": ">=7.0.0"
+ }
+ },
"node_modules/eslint-import-resolver-node": {
"version": "0.3.9",
"resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz",
@@ -3573,6 +3587,21 @@
"node": ">= 0.8.0"
}
},
+ "node_modules/prettier": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.2.tgz",
+ "integrity": "sha512-HTByuKZzw7utPiDO523Tt2pLtEyK7OibUD9suEJQrPUCYQqrHr74GGX6VidMrovbf/I50mPqr8j/II6oBAuc5A==",
+ "dev": true,
+ "bin": {
+ "prettier": "bin/prettier.cjs"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/prettier/prettier?sponsor=1"
+ }
+ },
"node_modules/prop-types": {
"version": "15.8.1",
"resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
diff --git a/mmp/package.json b/package.json
similarity index 68%
rename from mmp/package.json
rename to package.json
index a7b58a9..40674ec 100644
--- a/mmp/package.json
+++ b/package.json
@@ -9,19 +9,21 @@
"lint": "next lint"
},
"dependencies": {
+ "next": "14.0.4",
"react": "^18",
- "react-dom": "^18",
- "next": "14.0.4"
+ "react-dom": "^18"
},
"devDependencies": {
- "typescript": "^5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
+ "eslint": "^8.56.0",
+ "eslint-config-next": "14.0.4",
+ "eslint-config-prettier": "^9.1.0",
"postcss": "^8",
+ "prettier": "3.2.2",
"tailwindcss": "^3.3.0",
- "eslint": "^8",
- "eslint-config-next": "14.0.4"
+ "typescript": "^5"
}
}
diff --git a/mmp/postcss.config.js b/postcss.config.js
similarity index 100%
rename from mmp/postcss.config.js
rename to postcss.config.js
diff --git a/mmp/public/next.svg b/public/next.svg
similarity index 100%
rename from mmp/public/next.svg
rename to public/next.svg
diff --git a/mmp/public/vercel.svg b/public/vercel.svg
similarity index 100%
rename from mmp/public/vercel.svg
rename to public/vercel.svg
diff --git a/mmp/src/app/favicon.ico b/src/app/favicon.ico
similarity index 100%
rename from mmp/src/app/favicon.ico
rename to src/app/favicon.ico
diff --git a/mmp/src/app/globals.css b/src/app/globals.css
similarity index 100%
rename from mmp/src/app/globals.css
rename to src/app/globals.css
diff --git a/mmp/src/app/layout.tsx b/src/app/layout.tsx
similarity index 100%
rename from mmp/src/app/layout.tsx
rename to src/app/layout.tsx
diff --git a/mmp/src/app/page.tsx b/src/app/page.tsx
similarity index 100%
rename from mmp/src/app/page.tsx
rename to src/app/page.tsx
diff --git a/mmp/tailwind.config.ts b/tailwind.config.ts
similarity index 100%
rename from mmp/tailwind.config.ts
rename to tailwind.config.ts
diff --git a/mmp/tsconfig.json b/tsconfig.json
similarity index 100%
rename from mmp/tsconfig.json
rename to tsconfig.json
From 291c3fa53c387e0d30084720a118953e248fadeb Mon Sep 17 00:00:00 2001
From: Heather Yu <35639529+hetd54@users.noreply.github.com>
Date: Tue, 16 Jan 2024 15:55:19 -0500
Subject: [PATCH 4/6] chore: appease the linter, prettier on save
---
.eslintrc.js | 44 +++++++++++++++++++++++++-------------------
.eslintrc.json | 3 ---
.prettierrc | 1 +
src/app/layout.tsx | 18 +++++++-----------
4 files changed, 33 insertions(+), 33 deletions(-)
delete mode 100644 .eslintrc.json
diff --git a/.eslintrc.js b/.eslintrc.js
index 60ffe40..c0faa5e 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -1,36 +1,42 @@
-{}
module.exports = {
root: true,
env: {
browser: true,
es6: true,
- jest: true,
node: true,
},
extends: [
"eslint:recommended",
"plugin:react/recommended",
"plugin:import/recommended",
+ "plugin:import/warnings",
+ "plugin:import/typescript",
+ "plugin:@typescript-eslint/recommended",
"prettier",
+ "next/core-web-vitals"
],
- parserOptions: {
- sourceType: "module",
- ecmaVersion: 2023,
- },
- plugins: ["react"],
+ parser: "@typescript-eslint/parser",
+ ignorePatterns: [
+ "dist", // Ignore built files.
+ "out",
+ "build",
+ "node_modules",
+ ],
+ plugins: ["react", "@typescript-eslint", "import"],
rules: {
- "react/prop-types": "off", // TODO: These should be added so the rule can be removed
- "import/order": "warn",
- },
- settings: {
- react: {
- version: "detect",
- },
- "import/resolver": {
- node: {
- extensions: [".js", ".jsx"],
+ "import/no-unresolved": 0,
+ "import/order": [
+ "warn",
+ {
+ groups: [
+ "builtin",
+ "external",
+ "internal",
+ "parent",
+ "sibling",
+ "index",
+ ],
},
- },
+ ],
},
- overrides: [{ files: ["*.jsx", "*.js"] }],
};
diff --git a/.eslintrc.json b/.eslintrc.json
deleted file mode 100644
index bffb357..0000000
--- a/.eslintrc.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "extends": "next/core-web-vitals"
-}
diff --git a/.prettierrc b/.prettierrc
index 48e90e8..c49bb70 100644
--- a/.prettierrc
+++ b/.prettierrc
@@ -1,5 +1,6 @@
{
"endOfLine": "lf",
+ "printWidth": 100,
"semi": false,
"singleQuote": false,
"tabWidth": 2,
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 40e027f..94f123e 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,19 +1,15 @@
-import type { Metadata } from 'next'
-import { Inter } from 'next/font/google'
-import './globals.css'
+import type { Metadata } from "next"
+import { Inter } from "next/font/google"
+import "./globals.css"
-const inter = Inter({ subsets: ['latin'] })
+const inter = Inter({ subsets: ["latin"] })
export const metadata: Metadata = {
- title: 'Create Next App',
- description: 'Generated by create next app',
+ title: "Create Next App",
+ description: "Generated by create next app",
}
-export default function RootLayout({
- children,
-}: {
- children: React.ReactNode
-}) {
+export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
{children}
From 210be54a57735c4a548da40b189b0e64f6cb19ba Mon Sep 17 00:00:00 2001
From: Heather Yu <35639529+hetd54@users.noreply.github.com>
Date: Tue, 16 Jan 2024 16:00:29 -0500
Subject: [PATCH 5/6] chore: remove default svg and text
---
.gitignore | 2 +
public/next.svg | 1 -
public/vercel.svg | 1 -
src/app/page.tsx | 112 +---------------------------------------------
4 files changed, 3 insertions(+), 113 deletions(-)
delete mode 100644 public/next.svg
delete mode 100644 public/vercel.svg
diff --git a/.gitignore b/.gitignore
index c1773cb..ec93629 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,7 @@
# Dependencies
node_modules
Brewfile.lock.json
+.next
# Production
/build
@@ -25,3 +26,4 @@ Brewfile.lock.json
public
.env
.DS_Store
+next-env.d.ts
diff --git a/public/next.svg b/public/next.svg
deleted file mode 100644
index 5174b28..0000000
--- a/public/next.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/vercel.svg b/public/vercel.svg
deleted file mode 100644
index d2f8422..0000000
--- a/public/vercel.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index b973266..c9d2391 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,113 +1,3 @@
-import Image from 'next/image'
-
export default function Home() {
- return (
-
-
-
- Get started by editing
- src/app/page.tsx
-
-
-
-
-
-
-
-
-
-
- )
+ return
}
From 0c4b8645df0d85ffd11cae551144bf72c0698e73 Mon Sep 17 00:00:00 2001
From: Heather Yu <35639529+hetd54@users.noreply.github.com>
Date: Tue, 16 Jan 2024 16:50:21 -0500
Subject: [PATCH 6/6] chore: update lint and format run
---
package.json | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/package.json b/package.json
index 40674ec..0579567 100644
--- a/package.json
+++ b/package.json
@@ -6,7 +6,8 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
- "lint": "next lint"
+ "lint": "eslint .",
+ "format": "prettier --write ."
},
"dependencies": {
"next": "14.0.4",
|