Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions src/app/components/dashboard/dashboard.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,6 @@ header {
padding-bottom: 20px;
}

nav {
display: flex;
align-items: center;
gap: 20px;
}

.workspace-card-link {
text-decoration: none;
color: inherit;
}

.logout-btn {
background-color: #f44336;
color: white;
Expand Down
14 changes: 6 additions & 8 deletions src/app/components/dashboard/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,13 @@ <h2>Your Workspaces</h2>
</div>

<div class="workspace-list">
<a *ngFor="let ws of workspaces" [routerLink]="['/workspaces', ws.id]" class="workspace-card-link">
<div class="workspace-card">
<h3>{{ ws.name }}</h3>
<p>{{ ws.description }}</p>
<small>Created: {{ ws.createdDate | date }}</small>
</div>
</a>
<div *ngFor="let ws of workspaces" class="workspace-card">
<h3>{{ ws.name }}</h3>
<p>{{ ws.description }}</p>
<small>Created: {{ ws.createdDate | date }}</small>
</div>
</div>

<div *ngIf="workspaces.length === 0" class="empty-state">
<p>No workspaces found. Create one to get started!</p>
</div>
Expand Down
67 changes: 0 additions & 67 deletions src/app/components/decision-form/decision-form.component.css

This file was deleted.

36 changes: 0 additions & 36 deletions src/app/components/decision-form/decision-form.component.html

This file was deleted.

88 changes: 0 additions & 88 deletions src/app/components/decision-form/decision-form.component.ts

This file was deleted.

Empty file.
1 change: 0 additions & 1 deletion src/app/components/decision-form/decision-form.html

This file was deleted.

11 changes: 0 additions & 11 deletions src/app/components/decision-form/decision-form.ts

This file was deleted.

87 changes: 0 additions & 87 deletions src/app/components/decision-list/decision-list.component.css

This file was deleted.

27 changes: 0 additions & 27 deletions src/app/components/decision-list/decision-list.component.html

This file was deleted.

Loading