Restructuring docker project
This commit is contained in:
9
frontend/src/components/Footer/Footer.module.scss
Executable file
9
frontend/src/components/Footer/Footer.module.scss
Executable 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;
|
||||
}
|
||||
12
frontend/src/components/Footer/index.tsx
Executable file
12
frontend/src/components/Footer/index.tsx
Executable 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;
|
||||
Reference in New Issue
Block a user