Dev #1

Merged
redrockjs merged 66 commits from dev into main 2025-12-11 08:37:11 +00:00
4 changed files with 15 additions and 0 deletions
Showing only changes of commit cbd1f97eba - Show all commits

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>;
}