Files
Momento/memento-note/app/(main)/page.tsx
Antigravity f6880bd0e1
All checks were successful
Deploy to Production / Build and Deploy (push) Successful in 2m6s
feat: consolidate to single Architectural Grid view and remove all notesViewMode logic
2026-05-10 14:05:12 +00:00

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,
}}
/>
)
}