feat: add hero section

This commit is contained in:
MAZE
2023-10-05 18:08:52 +03:30
parent 05d68e4de6
commit dc33c2cf9c
9 changed files with 157 additions and 70 deletions

View File

@@ -0,0 +1,5 @@
.container {
width: 85%;
max-width: 550px;
margin: 0 auto;
}

View File

@@ -0,0 +1,9 @@
import styles from './container.module.css';
interface ContainerProps {
children: React.ReactNode;
}
export function Container({ children }: ContainerProps) {
return <div className={styles.container}>{children}</div>;
}

View File

@@ -0,0 +1 @@
export { Container } from './container';