All checks were successful
Deploy to Production / Build and Deploy (push) Successful in 2m6s
23 lines
676 B
TypeScript
23 lines
676 B
TypeScript
import { getAllNotes } from '@/app/actions/notes'
|
|
import { getAISettings } from '@/app/actions/ai-settings'
|
|
import { HomeClient } from '@/components/home-client'
|
|
|
|
export default async function HomePage() {
|
|
const [allNotes, settings] = await Promise.all([
|
|
getAllNotes(),
|
|
getAISettings(),
|
|
])
|
|
|
|
return (
|
|
<HomeClient
|
|
initialNotes={allNotes}
|
|
initialSettings={{
|
|
showRecentNotes: settings?.showRecentNotes !== false,
|
|
noteHistory: settings?.noteHistory === true,
|
|
noteHistoryMode: (settings?.noteHistoryMode ?? 'manual') as 'manual' | 'auto',
|
|
aiAssistantEnabled: settings?.paragraphRefactor !== false,
|
|
}}
|
|
/>
|
|
)
|
|
}
|