Initial commit: Tapalka monorepo (bot, front, strapi)

This commit is contained in:
2026-05-21 11:54:44 +07:00
commit 9ec9485940
208 changed files with 58314 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
.wrapper {
max-width: 100%;
min-height: 100vh;
position: relative;
overflow-y: hidden;
}

View File

@@ -0,0 +1,12 @@
import {PropsWithChildren} from "react";
import styles from './Wrapper.module.css'
const Wrapper = ({ children } : PropsWithChildren) => {
return(
<div className={styles.wrapper}>
{children}
</div>
);
};
export default Wrapper;