11import { getRoadmap } from '@/lib/content/loader' ;
2- import MarkdownContent from '@/components/MarkdownContent' ;
2+
33import type { Metadata } from 'next' ;
44
55const siteUrl = process . env . NEXT_PUBLIC_SITE_URL || 'https://ai-devkit.com' ;
@@ -68,7 +68,7 @@ export default function RoadmapPage() {
6868 < h1 className = "text-4xl md:text-5xl font-bold mb-4" > Roadmap</ h1 >
6969
7070 < p className = "text-xl text-gray-600 mb-12" >
71- Our development roadmap shows what we're working on and what's coming next for AI DevKit.
71+ { ` Our development roadmap shows what we're working on and what's coming next for AI DevKit.` }
7272 </ p >
7373
7474 { roadmapItems . length === 0 ? (
@@ -127,7 +127,7 @@ export default function RoadmapPage() {
127127 < div className = "bg-gray-50 p-8 rounded-lg border border-gray-200" >
128128 < h2 className = "text-2xl font-bold mb-4" > Have ideas?</ h2 >
129129 < p className = "text-gray-600 mb-6" >
130- We'd love to hear your suggestions for AI DevKit. Open an issue or discussion on GitHub to share your thoughts.
130+ { ` We'd love to hear your suggestions for AI DevKit. Open an issue or discussion on GitHub to share your thoughts.` }
131131 </ p >
132132 < div className = "flex flex-col sm:flex-row gap-4" >
133133 < a
@@ -154,7 +154,7 @@ export default function RoadmapPage() {
154154 ) ;
155155}
156156
157- function RoadmapItem ( { item } : { item : { metadata : any ; content : string } } ) {
157+ function RoadmapItem ( { item } : { item : { metadata : Record < string , string > ; content : string } } ) {
158158 const statusColor = statusColors [ item . metadata . status as keyof typeof statusColors ] || statusColors . planned ;
159159 const statusLabel = statusLabels [ item . metadata . status as keyof typeof statusLabels ] || 'Unknown' ;
160160
0 commit comments