Add files via upload

This commit is contained in:
2024-07-17 14:41:27 +05:00
committed by GitHub
parent 3fef1624db
commit 0cb207bd7c
60 changed files with 2325 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
.contentWrapper {
max-width: var(--full-hd-width-screen);
width: 100%;
margin: 0 auto;
padding: 0rem 4rem;
}
@media (max-width: 850px) {
.contentWrapper {
max-width: var(--full-hd-width-screen);
width: 100%;
margin: 0 auto;
padding: 0rem 2rem;
}
}
@media (max-width: 600px) {
.contentWrapper {
padding: 5px;
}
}

View File

@@ -0,0 +1,15 @@
import { FC, ReactNode } from 'react';
import style from './ContentLayout.module.css';
type ContentLayoutProps = {
children: ReactNode;
};
const ContentLayout: FC<ContentLayoutProps> = ({ children }) => (
<main className={style.contentWrapper}>
{children}
</main>
);
export default ContentLayout;

View File

@@ -0,0 +1 @@
export { default } from './ContentLayout';

View File

@@ -0,0 +1,13 @@
import { FC, ReactNode } from 'react';
type MainLayout = {
children: ReactNode;
};
const RootLayout: FC<MainLayout> = ({ children }) => (
<>
{children}
</>
);
export default RootLayout;

View File

@@ -0,0 +1 @@
export { default } from './RootLayout';