import { Button } from '@/components/ui/button' import { Github, LucideIcon } from 'lucide-react' import Link from 'next/link' import { ReactNode } from 'react' // FIX for https://github.com/vercel/next.js/issues/58615 export const dynamic = 'force-dynamic' export default function HomePage() { return (

Share Expenses
with Friends{' '} & Family

Welcome to your new Spliit instance!
Customize this page by editing src/app/page.tsx.

) } function Feature({ name, Icon, description, }: { name: ReactNode Icon: LucideIcon description: ReactNode }) { return (
{name}
{description}
) }