fix: add header, footer components

This commit is contained in:
2025-06-23 16:29:58 +03:00
parent 101a4f4228
commit cbd1f97eba
4 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
.Footer {
}

View File

@@ -0,0 +1,5 @@
import s from './styles.module.scss';
export default function Footer() {
return <footer className={s.Footer}>footer</footer>;
}

View File

@@ -0,0 +1,2 @@
.Header {
}

View File

@@ -0,0 +1,5 @@
import s from './styles.module.scss';
export default function Header() {
return <header className={s.Header}>header</header>;
}