2 Commits

2 changed files with 3 additions and 1 deletions

View File

@@ -2,6 +2,8 @@
Bikelane is a full-stack web application for managing users and administration tasks for a bike lane system. It features a React-based admin panel, a user-facing frontend, and an Express.js backend with a MySQL database.
**Bikelane is currently WIP - later iterations will focus on improving user experience and adding more features. - and will be a fully hosted web app and not a local one**
## Project Structure
```

View File

@@ -71,7 +71,7 @@ const UserTable: React.FC<UserTableProps> = ({ users }) => {
</th>
</tr>
</thead>
<tbody className="bg-white divide-y divide-gray-100">
<tbody className="bg-white dark:bg-black divide-y divide-gray-100">
{userList.map((user) => (
<tr key={user.id} className="hover:bg-blue-50 transition">
<td className="px-4 py-2 whitespace-nowrap">{user.id}</td>