Moduled Firegex, Merging pt1 (not finished and not working yet)

This commit is contained in:
DomySh
2022-07-21 20:25:39 +02:00
parent 3143f6e474
commit 63ba0e94e7
42 changed files with 2832 additions and 577 deletions

View File

@@ -2,7 +2,6 @@
@use "../../index.scss" as *;
.footer{
height: 150px;
margin-top: 50px;
background-color: $primary_color;
@extend .center-flex;

View File

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