introduced Record page and /record route, updated Navbar with new microphone button redirecting to Record, and commented out unused DreamRecord in Home for cleaner structure

Signed-off-by: Matthias Puchstein <matthias@puchstein.bayern>
This commit is contained in:
2025-07-12 16:15:27 +02:00
parent d6e6b1ccb4
commit 36bb04cfa9
3 changed files with 14 additions and 6 deletions

View File

@@ -4,7 +4,6 @@ import {getSortedDreamsByDate} from '../utils/DreamUtils.ts';
import {getBackgroundStyle, getCardStyle, getTextStyle} from '../styles/StyleUtils';
import {formatDateFull} from '../utils/DateUtils';
import {NavLink} from 'react-router-dom';
import {DreamRecord} from "../components/DreamRecord.tsx";
import {DreamCardCompact} from "../components/DreamCardCompact.tsx";
import {DailyHighlights} from "../components/DailyHighlights.tsx";
import {ChipCard} from "../components/ChipCard.tsx";
@@ -53,7 +52,7 @@ export default function Home() {
</div>
</div>
<DreamRecord/>
{/*<DreamRecord/>*/}
{/* Personal Feed */}
<NavLink to='/feed'
@@ -101,7 +100,7 @@ export default function Home() {
</NavLink>
{/* Daily Highlights */}
<NavLink to='/archive'>
<NavLink to='/dreamarchive/user-dreams'>
<DailyHighlights/>
</NavLink>