├── .gitignore ├── README.md ├── app ├── client.ts ├── components │ ├── Footer.tsx │ └── Nav.tsx ├── db.ts ├── global.d.ts ├── islands │ └── form.tsx ├── routes │ ├── _404.tsx │ ├── _error.tsx │ ├── _renderer.tsx │ ├── admin │ │ ├── _middleware.ts │ │ ├── create.tsx │ │ └── index.tsx │ ├── employee │ │ └── [id].tsx │ └── index.tsx ├── server.ts ├── style.css └── utils │ ├── formData.tsx │ └── formatDate.tsx ├── demo.gif ├── package.json ├── postcss.config.js ├── schema.sql ├── tailwind.config.js ├── tsconfig.json ├── vite.config.ts └── wrangler.example.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/README.md -------------------------------------------------------------------------------- /app/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/app/client.ts -------------------------------------------------------------------------------- /app/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/app/components/Footer.tsx -------------------------------------------------------------------------------- /app/components/Nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/app/components/Nav.tsx -------------------------------------------------------------------------------- /app/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/app/db.ts -------------------------------------------------------------------------------- /app/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/app/global.d.ts -------------------------------------------------------------------------------- /app/islands/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/app/islands/form.tsx -------------------------------------------------------------------------------- /app/routes/_404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/app/routes/_404.tsx -------------------------------------------------------------------------------- /app/routes/_error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/app/routes/_error.tsx -------------------------------------------------------------------------------- /app/routes/_renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/app/routes/_renderer.tsx -------------------------------------------------------------------------------- /app/routes/admin/_middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/app/routes/admin/_middleware.ts -------------------------------------------------------------------------------- /app/routes/admin/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/app/routes/admin/create.tsx -------------------------------------------------------------------------------- /app/routes/admin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/app/routes/admin/index.tsx -------------------------------------------------------------------------------- /app/routes/employee/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/app/routes/employee/[id].tsx -------------------------------------------------------------------------------- /app/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/app/routes/index.tsx -------------------------------------------------------------------------------- /app/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/app/server.ts -------------------------------------------------------------------------------- /app/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/app/style.css -------------------------------------------------------------------------------- /app/utils/formData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/app/utils/formData.tsx -------------------------------------------------------------------------------- /app/utils/formatDate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/app/utils/formatDate.tsx -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/demo.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/postcss.config.js -------------------------------------------------------------------------------- /schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/schema.sql -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/vite.config.ts -------------------------------------------------------------------------------- /wrangler.example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauragift21/staff-directory/HEAD/wrangler.example.toml --------------------------------------------------------------------------------