aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/page.tsx')
-rw-r--r--src/app/page.tsx149
1 files changed, 148 insertions, 1 deletions
diff --git a/src/app/page.tsx b/src/app/page.tsx
index dedeb98..77dfed0 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,3 +1,150 @@
+import { Button } from '@/components/ui/button'
+import {
+ BarChartHorizontalBig,
+ CircleDollarSign,
+ Github,
+ List,
+ LucideIcon,
+ Share,
+ ShieldX,
+ Users,
+} from 'lucide-react'
+import Link from 'next/link'
+import { ReactNode } from 'react'
+
export default function HomePage() {
- return <main></main>
+ return (
+ <main>
+ <section className="py-16 md:py-24 lg:py-32">
+ <div className="container flex max-w-screen-md flex-col items-center gap-4 text-center">
+ <h1 className="!leading-none font-bold text-3xl sm:text-5xl md:text-6xl lg:text-7xl">
+ Share Expenses <br /> with Friends & Family
+ </h1>
+ <p className="max-w-[42rem] leading-normal text-muted-foreground sm:text-xl sm:leading-8">
+ No ads. No account. <br className="sm:hidden" /> Open Source.
+ Forever Free.
+ </p>
+ <div className="flex gap-2">
+ <Button asChild size="lg">
+ <Link
+ className="inline-flex items-center justify-center text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none ring-offset-background bg-primary text-primary-foreground hover:bg-primary/90 h-11 px-8 rounded-md"
+ href="/groups/create"
+ >
+ Create a group
+ </Link>
+ </Button>
+ <Button asChild variant="secondary" size="lg">
+ <a
+ target="_blank"
+ rel="noreferrer"
+ href="https://github.com/scastiel/spliit2"
+ >
+ <Github className="w-4 h-4 mr-2" />
+ GitHub
+ </a>
+ </Button>
+ </div>
+ </div>
+ </section>
+
+ <section className="bg-slate-50 dark:bg-slate-800 py-16 md:py-24 lg:py-32">
+ <div className="p-4 flex mx-auto max-w-screen-md flex-col items-center text-center">
+ <h2 className="font-bold text-3xl leading-[1.1] sm:text-3xl md:text-6xl">
+ Features
+ </h2>
+ <p
+ className="mt-2 md:mt-3 leading-normal text-muted-foreground sm:text-lg sm:leading-7"
+ style={{ textWrap: 'balance' } as any}
+ >
+ Spliit is a minimalist application to track and share expenses with
+ your friends and family.
+ </p>
+ <div className="mt-8 md:mt-6 w-full grid grid-cols-2 sm:grid-cols-3 gap-2 sm:gap-4 text-left">
+ <Feature
+ Icon={Users}
+ name="Groups"
+ description="Create a group for a travel, an event, a gift…"
+ />
+ <Feature
+ Icon={List}
+ name="Expenses"
+ description="Create and list expenses in your group."
+ />
+ <Feature
+ Icon={Share}
+ name="Share"
+ description="Send the group link to participants."
+ />
+ <Feature
+ Icon={BarChartHorizontalBig}
+ name="Balances"
+ description="Visualize how much each participant spent."
+ />
+ <Feature
+ Icon={CircleDollarSign}
+ name="Reimbursements"
+ description="Optimize money transfers between participants."
+ />
+ <Feature
+ Icon={ShieldX}
+ name="No ads"
+ description="No account. No limitation. No problem."
+ />
+ </div>
+ </div>
+ </section>
+
+ <section className="py-16 md:py-24 lg:py-32">
+ <div className="container flex max-w-screen-md flex-col items-center text-center">
+ <h2 className="font-bold text-3xl leading-[1.1] sm:text-3xl md:text-6xl">
+ Proudly Open Source
+ </h2>
+ <p
+ className="mt-2 leading-normal text-muted-foreground sm:text-lg sm:leading-7"
+ style={{ textWrap: 'balance' } as any}
+ >
+ Spliit is open source and powered by open source software. Feel free
+ to contribute!
+ </p>
+ <div className="mt-4 md:mt-6">
+ <Button asChild variant="secondary" size="lg">
+ <a
+ target="_blank"
+ rel="noreferrer"
+ href="https://github.com/scastiel/spliit2"
+ >
+ <Github className="w-4 h-4 mr-2" />
+ GitHub
+ </a>
+ </Button>
+ </div>
+ </div>
+ </section>
+ </main>
+ )
+}
+
+function Feature({
+ name,
+ Icon,
+ description,
+}: {
+ name: ReactNode
+ Icon: LucideIcon
+ description: ReactNode
+}) {
+ return (
+ <div className="bg-card border rounded-md p-4 flex flex-col gap-2">
+ <Icon className="w-8 h-8" />
+ <div>
+ <strong>{name}</strong>
+ </div>
+ <div
+ className="text-sm text-muted-foreground"
+ style={{ textWrap: 'balance' } as any}
+ >
+ {description}
+ </div>
+ </div>
+ )
}