the build tree for the netpin site currently looks like this

├── app
│   ├── api
│   │   ├── createnote
│   │   │   └── route.ts
│   │   ├── createuser
│   │   │   └── route.ts
│   │   └── getuser
│   │       └── route.ts
│   ├── createnote
│   │   └── page.tsx
│   ├── createuser
│   │   └── page.tsx
│   ├── displayuser
│   │   └── page.tsx
│   ├── favicon.ico
│   ├── globals.css
│   ├── header
│   │   ├── ButtonGroup.tsx
│   │   ├── Info.tsx
│   │   ├── Logo.tsx
│   │   ├── page.tsx
│   │   └── Search.tsx
│   ├── instruction
│   │   └── page.tsx
│   ├── layout.tsx
│   ├── note
│   │   └── [link]
│   │       └── page.tsx
│   ├── page.tsx
│   └── usernotes
│       └── page.tsx
├── next.config.js
├── next-env.d.ts
├── package.json
├── package-lock.json
├── postcss.config.js
├── prisma
│   └── schema.prisma
├── public
│   └── netpin4.png
├── README.md
├── tailwind.config.js
└── tsconfig.json

(this was generated in a linux terminal with the command: tree -I '.*|node_modules')


Backlinks