Files
Athou_commafeed/commafeed-client/src/pages/PageTitle.tsx

14 lines
312 B
TypeScript
Raw Normal View History

import { Center, Title } from "@mantine/core"
import { Logo } from "../components/Logo"
export function PageTitle() {
return (
<Center my="xl">
<Logo size={48} />
<Title order={1} ml="md">
CommaFeed
</Title>
</Center>
)
}