Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Landing page #30

Open
wants to merge 25 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
d0ec733
CHORE: Adding Cohort2 and updating CODEOWNERS
allaboutmike Jul 4, 2023
b2b6154
Update CODEOWNERS (#27)
clarktr1 Jul 5, 2023
a6ea013
DSD4-5 Origin/jonathan romain patch 1 (#28)
Jonathan-Romain Jul 5, 2023
e62a29c
[DSD4-1] Update CODEOWNERS (#31)
em-ess Jul 5, 2023
3a419ab
DSD4-2: Added github username to CODEOWNERS (#32)
ajmccraw Jul 6, 2023
9dc7f04
added folder strucutre for cohort2 (#33)
allaboutmike Jul 6, 2023
5159ed0
CHORE: deleting borked submodule (#34)
allaboutmike Jul 6, 2023
8063ea3
adds nextjs boiler directory (#35)
clarktr1 Jul 9, 2023
e459c1f
CHORE: removing redundant team-4 folder
allaboutmike Jul 12, 2023
3bc10cc
[DSD4-8] Express server backend starter (#37)
em-ess Jul 13, 2023
65cc61c
[DSD4-16] Added tRPC dependencies to client and server (#40)
Jonathan-Romain Jul 17, 2023
e6b6478
Origin/jonathan (#41)
Jonathan-Romain Jul 17, 2023
94b8653
[DSD4]- 15 Create Schema/Seeds (#39)
clarktr1 Jul 18, 2023
27b36be
Putting initial client structure in place (#42)
allaboutmike Jul 19, 2023
3475c61
CONVI-22 Create Sequelize Connection (#44)
clarktr1 Jul 20, 2023
303c0b4
Add LandingPage to components folder
ajmccraw Jul 20, 2023
5511a01
[CONVI-23] Create user and event models (#45)
em-ess Jul 20, 2023
90753eb
Add landing page to components folder
ajmccraw Jul 20, 2023
9a6f3f7
Add logo, h1, catch phrase to index.tsx
ajmccraw Jul 22, 2023
c0f4db6
[CONVI-23] Create user and event models (#45)
em-ess Jul 20, 2023
3a398d4
adds logo, heading, and catchphrase
ajmccraw Jul 22, 2023
0010e7f
removing LandingPage.tsx file in components folder and .vscode folder
ajmccraw Jul 22, 2023
a3507b9
[CONVI-20] tRPC init. Added trpc User management calls. (#46)
em-ess Jul 23, 2023
400a1b2
Merge branch 'main' into landing-page
allaboutmike Jul 23, 2023
5e7caf8
adds dashboard, profile, and login for index.tsx
ajmccraw Jul 24, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Adding code owners for team-4
/Cohort2/team4/ @allaboutmike @clarktr1 @Jonathan-Romain @em-ess @ajmccraw
1 change: 0 additions & 1 deletion 2023-Cohort-Projects
Submodule 2023-Cohort-Projects deleted from 218143
Empty file added Cohort2/team1/README.md
Empty file.
Empty file added Cohort2/team2/README.md
Empty file.
Empty file added Cohort2/team3/README.md
Empty file.
Empty file added Cohort2/team4/README.md
Empty file.
3 changes: 3 additions & 0 deletions Cohort2/team4/client/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "next/core-web-vitals"
}
35 changes: 35 additions & 0 deletions Cohort2/team4/client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# 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
34 changes: 34 additions & 0 deletions Cohort2/team4/client/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
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
```

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.
4 changes: 4 additions & 0 deletions Cohort2/team4/client/next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}

module.exports = nextConfig
Loading