aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSebastien Castiel <sebastien@castiel.me>2024-01-19 16:13:02 -0500
committerSebastien Castiel <sebastien@castiel.me>2024-01-19 16:13:02 -0500
commit3735509fea74afddb3d5bc0eab57c3f03a239354 (patch)
tree285f4490850ead55aa8f829250ca8b574cda269e /src
parent1b1ebf015e0ad00c10d35eb7e7ba50288aea0c13 (diff)
Update GitHub repository URL
Diffstat (limited to 'src')
-rw-r--r--src/app/layout.tsx2
-rw-r--r--src/app/page.tsx28
2 files changed, 2 insertions, 28 deletions
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 7d95d6e..53b45b2 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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"
>
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 4f43c4a..eb0e09d 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -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>
- )
-}