diff --git a/app/page.tsx b/app/page.tsx
index b95cb76..2261ff1 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -127,6 +127,12 @@ export default async function LandingPage({
The technique is based on "greasing the groove": practice good form, frequently, at submaximal intensity to build neuromuscular efficiency.
>
+
+ Open the mobile app, view your profile and click the "delete my account" button. This cannot be undone, you'll lose the memories...but not those gains.
+
Hi, I'm Justin and love making fun products.
diff --git a/src/components/ui/accordion.tsx b/src/components/ui/accordion.tsx
index 6e97f0d..5879a5f 100644
--- a/src/components/ui/accordion.tsx
+++ b/src/components/ui/accordion.tsx
@@ -5,12 +5,13 @@ import { cn } from '@/lib/utils'
type AccordionItemProps = {
title: string
children: React.ReactNode
+ id?: string
}
-export function AccordionItem({ title, children }: AccordionItemProps) {
+export function AccordionItem({ title, children, id }: AccordionItemProps) {
const [open, setOpen] = React.useState(true)
return (
-