Update GitHub repository URL

This commit is contained in:
Sebastien Castiel
2024-01-19 16:13:02 -05:00
parent 1b1ebf015e
commit 3735509fea
3 changed files with 9 additions and 35 deletions

View File

@@ -129,7 +129,7 @@ export default function RootLayout({
</a>{' '}
and{' '}
<a
href="https://github.com/scastiel/spliit2/graphs/contributors"
href="https://github.com/spliit-app/spliit/graphs/contributors"
target="_blank"
rel="noopener"
>

View File

@@ -1,7 +1,6 @@
import { Button } from '@/components/ui/button'
import { Github, LucideIcon } from 'lucide-react'
import { Github } 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'
@@ -35,28 +34,3 @@ export default function HomePage() {
</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>
)
}