20 lines
476 B
TypeScript
20 lines
476 B
TypeScript
|
|
/**
|
||
|
|
* 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>
|
||
|
|
)
|
||
|
|
}
|