/purdueprosthetics-3dprint-site

Source code for Purdue 3d Printed Prosthetics Club website

Primary LanguageTypeScript

Purdue 3D Printed Prosthetics Site

Table of Contents-

About

The code in this repository is hosted here.

Created by-

  • Created by links

Technologies

  • Next.js
  • React
  • Typescript
  • Postgres
  • Clerk

Hosted with Heroku

Code

React Buffoonery

Collaboration

FAQ

File Map

├── components
│   ├── adminMemberView.tsx
│   ├── adminRequestView.tsx
│   ├── formConrolInvalid.tsx
│   ├── header.tsx
│   ├── hiddenInput.tsx
│   ├── requestForm.tsx
│   └── requestView.tsx
├── dbconfig
│   ├── dbconfig.ts
│   ├── db_members.ts
│   ├── db_requests.ts
│   ├── mock
│   └── models.ts
└── pages
    ├── about.tsx
    ├── api
    │   ├── members
    │   │   ├── delete.ts
    │   │   ├── getAll.ts
    │   │   ├── get.ts
    │   │   ├── idFromEmail.ts
    │   │   ├── isAdmin.ts
    │   │   ├── new.ts
    │   │   └── update.ts
    │   └── requests
    │       ├── delete.ts
    │       ├── get
    │       │   ├── byId.ts
    │       │   └── byMember.ts
    │       ├── getAll.ts
    │       ├── new.ts
    │       └── update.ts
    ├── _app.tsx
    ├── form.tsx
    ├── homepage.tsx
    ├── index.tsx
    ├── managers
    │   ├── admin.tsx
    │   ├── dashboard.tsx
    │   ├── viewRequest
    │   │   └── [query].tsx
    │   └── viewUser
    │       └── [query].tsx
    └── viewRequest
        └── [query].tsx

17 directories, 48 files