Clean project from marketing content (#50)

* Clean project from marketing content

* Remove some dependencies
This commit is contained in:
Sebastien Castiel
2024-01-19 11:28:25 -05:00
committed by GitHub
parent f9040f8bed
commit 23524cb943
12 changed files with 25 additions and 1327 deletions

View File

@@ -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>
</>
)
}