Restructuring docker project

This commit is contained in:
DomySh
2022-06-12 22:28:16 +02:00
parent 67e5014d78
commit cff484a976
58 changed files with 357 additions and 407 deletions

View File

@@ -0,0 +1,9 @@
@use "../../vars" as *;
@use "../../index.scss" as *;
.footer{
height: 150px;
margin-top: 50px;
background-color: $primary_color;
@extend .center-flex;
}

View File

@@ -0,0 +1,12 @@
import React from 'react';
import style from "./Footer.module.scss";
function Footer() {
return <div id="footer" className={style.footer}>
Made by Pwnzer0tt1
</div>
}
export default Footer;