Skip to content

Commit

Permalink
Scaffold SiteFooter
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Fusco <[email protected]>
  • Loading branch information
josephfusco committed Oct 11, 2023
1 parent 27ad111 commit 04f4a35
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions components/SiteFooter.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import clsx from 'clsx'

export function SiteFooter({ navigation }) {
return (
<footer className={clsx('flex flex-wrap items-center justify-between bg-white px-4 py-5 shadow-md shadow-slate-900/5 transition duration-500 dark:shadow-none sm:px-6 lg:px-8')}>
<p>Footer</p>
</footer>
)
}

0 comments on commit 04f4a35

Please sign in to comment.