diff --git a/pages/ai-tool.tsx b/pages/ai-tool.tsx
new file mode 100644
index 0000000..7eb8f1f
--- /dev/null
+++ b/pages/ai-tool.tsx
@@ -0,0 +1,56 @@
+import type { NextPage } from 'next'
+import { useState } from 'react'
+import Headline from '../components/Headline'
+import Section from '../components/Section'
+import Button from '../components/Button'
+
+const AIToolPage: NextPage = () => {
+ const [projectDescription, setProjectDescription] = useState('')
+ const [generatedPlan, setGeneratedPlan] = useState('')
+
+ const handleGeneratePlan = () => {
+ // This is where you'd integrate with your AI tool
+ // For now, we'll just set a placeholder response
+ setGeneratedPlan('Your AI-generated project plan will appear here.')
+ }
+
+ return (
+
+
+
+
+ AI-Driven Project Start
+
+
+
+ Describe Your Project
+
+ {generatedPlan && (
+
+ Your AI-Generated Project Plan
+
+
+ )}
+
+
+ )
+}
+
+export default AIToolPage
\ No newline at end of file
diff --git a/pages/consultation/index.tsx b/pages/consultation/index.tsx
index 43e0dd2..301820a 100644
--- a/pages/consultation/index.tsx
+++ b/pages/consultation/index.tsx
@@ -106,7 +106,7 @@ const ConsultationPage: NextPage = () => {
if (error) throw error
createConsultation()
sendMessage(contactInformation, budget, serviceInformation, projectGoals, constraints)
- router.push('/consultation/thanks')
+ router.push('/consultation/next-steps')
} catch (error) {
console.log(error)
}
@@ -157,4 +157,4 @@ const ConsultationPage: NextPage = () => {
)
}
-export default ConsultationPage
+export default ConsultationPage
\ No newline at end of file
diff --git a/pages/consultation/next-steps.tsx b/pages/consultation/next-steps.tsx
new file mode 100644
index 0000000..cacd23e
--- /dev/null
+++ b/pages/consultation/next-steps.tsx
@@ -0,0 +1,66 @@
+import type { NextPage } from 'next'
+import { useRouter } from 'next/router'
+import Link from 'next/link'
+
+import Section from '../../components/Section'
+import Headline from '../../components/Headline'
+import Button from '../../components/Button'
+
+const NextStepsPage: NextPage = () => {
+ const router = useRouter()
+
+ const handleProceed = () => {
+ router.push('/ai-tool')
+ }
+
+ return (
+
+
+
+
+ Next Steps for Your Project
+
+
+
+ Project Start Options
+
+
+
1. Human Consultation
+
Wait for human engagement and negotiate a series of paid consultations.
+
Cost: $500 - $3,000
+
+
+
2. AI-Driven Tool
+
Start your project immediately with our AI-driven tool.
+
Cost: $20 upfront
+
+
+
+
+ Sample Projects
+ Check out our sample projects on GitHub:
+
+
+
+ Ready to Start?
+
+
+
+
+
+
+
+
+ )
+}
+
+export default NextStepsPage
\ No newline at end of file