diff --git a/apps/web/app/app/(dashboard)/not-found/page.tsx b/apps/web/app/app/(dashboard)/not-found/page.tsx new file mode 100644 index 0000000..9f4a9b5 --- /dev/null +++ b/apps/web/app/app/(dashboard)/not-found/page.tsx @@ -0,0 +1,19 @@ +import Link from 'next/link'; +import { Button } from '@saasfy/ui/button'; + +export default function Component() { + return ( +
+
+

404

+

Page not found

+

+ Unfortunately, the page you are looking for does not exist. +

+ +
+
+ ); +} diff --git a/apps/web/app/home/page.tsx b/apps/web/app/home/page.tsx index e63e4ef..38ab41a 100644 --- a/apps/web/app/home/page.tsx +++ b/apps/web/app/home/page.tsx @@ -1,7 +1,14 @@ import Link from 'next/link'; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@saasfy/ui/card'; import { Button } from '@saasfy/ui/button'; -import { ArrowUpRightIcon, CloudIcon, CloudyIcon, HelpCircleIcon, UploadIcon } from 'lucide-react'; +import { + ArrowUpRightIcon, + CloudIcon, + CloudyIcon, + GithubIcon, + HelpCircleIcon, + UploadIcon, +} from 'lucide-react'; import { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from '@saasfy/ui/accordion'; import { ThemeModeToggle } from '@saasfy/components'; import { Tabs, TabsContent, TabsList, TabsTrigger } from '@saasfy/ui/tabs'; @@ -23,7 +30,7 @@ export default function Component() { Saasfy -