Feedback button

This commit is contained in:
Sebastien Castiel
2024-01-09 15:32:19 -05:00
parent 5ce96aef30
commit 323b0ea128
14 changed files with 1459 additions and 17 deletions

View File

@@ -1,9 +1,13 @@
import { FeedbackButton } from '@/components/feedback-button/feedback-button'
import { PropsWithChildren } from 'react'
export default function GroupsLayout({ children }: PropsWithChildren<{}>) {
return (
<main className="flex-1 max-w-screen-md w-full mx-auto px-4 py-6 flex flex-col gap-6">
{children}
</main>
<>
<main className="flex-1 max-w-screen-md w-full mx-auto px-4 py-6 flex flex-col gap-6">
{children}
</main>
<FeedbackButton />
</>
)
}