feat(SW-185): basic setup for new footer with mocked data

This commit is contained in:
Pontus Dreij
2024-08-20 10:24:44 +02:00
parent a476e20eaf
commit 5277f3c786
10 changed files with 293 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import FooterDetails from "./Details"
import FooterNavigation from "./Navigation"
export default async function Footer() {
return (
<footer>
<FooterNavigation />
<FooterDetails />
</footer>
)
}