aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/groups/layout.tsx
diff options
context:
space:
mode:
authorSebastien Castiel <sebastien@castiel.me>2024-01-19 11:28:25 -0500
committerGitHub <noreply@github.com>2024-01-19 11:28:25 -0500
commit23524cb94314fd50476ccffe654841d980c713d7 (patch)
tree6546d4d8675c1e4bc9d30f6bf526e08eef9b4eaf /src/app/groups/layout.tsx
parentf9040f8beda10b3969572cf8764e49f9b24b222a (diff)
Clean project from marketing content (#50)
* Clean project from marketing content * Remove some dependencies
Diffstat (limited to 'src/app/groups/layout.tsx')
-rw-r--r--src/app/groups/layout.tsx8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/app/groups/layout.tsx b/src/app/groups/layout.tsx
index 75128c8..3b8b10e 100644
--- a/src/app/groups/layout.tsx
+++ b/src/app/groups/layout.tsx
@@ -1,8 +1,3 @@
-import {
- FeedbackButton,
- FeedbackModal,
-} from '@/components/feedback-button/feedback-button'
-import { env } from '@/lib/env'
import { PropsWithChildren } from 'react'
export default function GroupsLayout({ children }: PropsWithChildren<{}>) {
@@ -11,9 +6,6 @@ export default function GroupsLayout({ children }: PropsWithChildren<{}>) {
<main className="flex-1 max-w-screen-md w-full mx-auto px-4 py-6 flex flex-col gap-6">
{children}
</main>
- <FeedbackModal donationUrl={env.STRIPE_DONATION_LINK}>
- <FeedbackButton />
- </FeedbackModal>
</>
)
}