import { Button } from '@/components/ui/button' import { BarChartHorizontalBig, CircleDollarSign, Github, List, LucideIcon, Share, ShieldX, Users, } from 'lucide-react' import Image from 'next/image' 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

No ads. No account.
Open Source. Forever Free.

Features

Spliit is a minimalist application to track and share expenses with your friends and family.

Proudly Open Source

Spliit is open source and lives thanks to amazing{' '} contributors !

    {[ { avatar: 'https://avatars.githubusercontent.com/u/301948?s=120&v=4', user: 'scastiel', name: 'Sebastien Castiel', }, { avatar: 'https://avatars.githubusercontent.com/u/3932568?s=120&v=4', user: 'ChristopherJohnston', name: 'Chris Johnston', }, { avatar: 'https://avatars.githubusercontent.com/u/10518723?s=120&v=4', user: 'ankitbahl', name: 'Ankit Bahl', }, { avatar: 'https://avatars.githubusercontent.com/u/13032812?s=120&v=4', user: '174n', name: 'Ivan Alexandrov', }, ].map((contributor) => (
  • {contributor.user}
  • ))}
) } function Feature({ name, Icon, description, }: { name: ReactNode Icon: LucideIcon description: ReactNode }) { return (
{name}
{description}
) }