feat: services page
This commit is contained in:
19
components/TitleWithLines/TitleWithLines.tsx
Normal file
19
components/TitleWithLines/TitleWithLines.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { Divider, Flex, Text } from "@mantine/core";
|
||||
|
||||
type Props = {
|
||||
title: string;
|
||||
}
|
||||
|
||||
const TitleWithLines = ({ title }: Props) => {
|
||||
return (
|
||||
<Flex
|
||||
align="center"
|
||||
gap="xs">
|
||||
<Divider style={{ flex: 1 }} />
|
||||
<Text>{title}</Text>
|
||||
<Divider style={{ flex: 1 }} />
|
||||
</Flex>
|
||||
);
|
||||
};
|
||||
|
||||
export default TitleWithLines;
|
||||
Reference in New Issue
Block a user