mirror of
https://github.com/hexolan/panels.git
synced 2026-05-20 11:39:22 +01:00
init frontend
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import { Container, Title, Stack, Divider } from '@mantine/core'
|
||||
|
||||
import HomePostFeed from '../components/HomePostFeed'
|
||||
|
||||
const Homepage = () => {
|
||||
return (
|
||||
<Container mt='xl'>
|
||||
<Title>Feed</Title>
|
||||
<Divider my='md' variant='dotted' />
|
||||
<Stack my='lg' spacing='md'>
|
||||
<HomePostFeed />
|
||||
</Stack>
|
||||
</Container>
|
||||
)
|
||||
}
|
||||
|
||||
export default Homepage
|
||||
Reference in New Issue
Block a user