Files
home-automation/frontend/src/pages/HomePage.tsx
T

20 lines
476 B
TypeScript
Raw Normal View History

/**
* HomePage — placeholder for M2-T09.
*
* T09 replaces this with the real home view: Leaflet map, heatmap layer,
* time-range selector, scatter-point layer, and poo overlay.
*/
import { Container, Title, Text } from '@mantine/core'
export function HomePage() {
return (
<Container pt="xl">
<Title order={2}>Home</Title>
<Text c="dimmed" mt="sm">
Map / heatmap visualisation implemented in M2-T09.
</Text>
</Container>
)
}