diff options
Diffstat (limited to 'src/app')
| -rw-r--r-- | src/app/layout.tsx | 2 | ||||
| -rw-r--r-- | src/app/page.tsx | 28 |
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> - ) -} |
