Create a frontend wireframe. (#7)

Sets up API methods and types.
Sets up a colorscheme.
Sets up a homepage.

Removes tailwind in favor of mui for now.

Reviewed-on: #7
Co-authored-by: Drew Galbraith <drew@tiramisu.one>
Co-committed-by: Drew Galbraith <drew@tiramisu.one>
This commit is contained in:
Drew 2025-09-23 04:08:45 +00:00 committed by Drew
parent 7d2b7fc90c
commit d60d834f38
27 changed files with 3114 additions and 977 deletions

View file

@ -3,8 +3,14 @@ import { describe, it, expect } from 'vitest'
import Home from './home'
describe('Home component', () => {
it('should render welcome component', () => {
it('should render task management interface', () => {
render(<Home />)
expect(screen.getByText(/React Router/i)).toBeInTheDocument()
expect(screen.getByText(/Tasks/i)).toBeInTheDocument()
expect(
screen.getByText(/GTD-inspired task management system/i)
).toBeInTheDocument()
expect(
screen.getByText(/Task Management Interface Coming Soon/i)
).toBeInTheDocument()
})
})