add Landing page (#7)

This commit is contained in:
RustamRu
2024-11-10 02:45:54 +03:00
parent 7ff8a99505
commit 1930333d64
44 changed files with 639 additions and 11 deletions

View File

@@ -0,0 +1,12 @@
import React, { FC, PropsWithChildren } from 'react';
import { StackProps, VStack } from '@chakra-ui/react';
type PageSectionProps = StackProps & PropsWithChildren;
export const PageSection: FC<PageSectionProps> = ({ children, ...restProps }) => {
return (
<VStack as='section' w='full' px={5} py={5} spacing={6} alignItems='flex-start' {...restProps}>
{children}
</VStack>
);
};