A comprehensive networking app that helps you build and maintain professional relationships effortlessly.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema
│ │ └── queries.ts # Database operations
│ ├── routes/
│ │ ├── contacts.ts # Contact CRUD operations
│ │ ├── events.ts # Event management
│ │ └── static.ts # Static file serving
│ └── index.ts # Main Hono app
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main app component
│ │ ├── ContactForm.tsx # Add/edit contacts
│ │ ├── ContactList.tsx # Display contacts
│ │ ├── EventForm.tsx # Add/edit events
│ │ └── Dashboard.tsx # Overview dashboard
│ ├── index.html # Main HTML template
│ ├── index.tsx # React entry point
│ └── style.css # Custom styles
└── shared/
└── types.ts # Shared TypeScript types