+
+
Get Started for Free
+
+ No credit card required. Sign up and start managing your tasks in minutes.
+
+
- Register
+ Sign up now
- >
- )}
-
-

-
-
-
-

-
-
-
-
-
Breakdown New Projects with AI
-
- Try out our simple task management today by registering for free
-
-

+
+ {/* FAQ Section */}
+
+
+
+
+ Frequently asked questions
+
+
+ {faqs.map((faq, index) => (
+
+
-
+
+
+
-
+
+
+
+ ))}
+
+
+
-
+
);
}
diff --git a/src/resources/js/types/index.d.ts b/src/resources/js/types/index.d.ts
index f9d0a01..2989559 100755
--- a/src/resources/js/types/index.d.ts
+++ b/src/resources/js/types/index.d.ts
@@ -1,5 +1,5 @@
import { LucideIcon } from 'lucide-react';
-import type { Config } from 'ziggy-js';
+import type { Config, Router } from 'ziggy-js';
export interface Auth {
user: User;
@@ -7,7 +7,7 @@ export interface Auth {
export interface BreadcrumbItem {
title: string;
- href: string;
+ href: string | Router;
}
export interface NavGroup {
diff --git a/src/vite.config.ts b/src/vite.config.ts
index 3e8d658..6f41f49 100755
--- a/src/vite.config.ts
+++ b/src/vite.config.ts
@@ -7,14 +7,6 @@ import tailwindcss from '@tailwindcss/vite';
import { resolve } from 'node:path';
export default defineConfig({
- server: {
- host: '0.0.0.0',
- port: 3000,
- hmr: {
- host: '0.0.0.0',
- port: 3000,
- },
- },
plugins: [
laravel({
input: ['resources/js/app.tsx'],