---
import BaseLayout from './BaseLayout.astro';
import type { UserPublic } from '../lib/db';
interface Props {
title: string;
user: UserPublic;
}
const { title, user } = Astro.props;
const navLinks = [
{ href: '/pulse', label: 'Pulse' },
{ href: '/roadmap', label: 'Roadmap' },
];
const footerLinks = [
{ href: '/vision', label: 'Vision' },
];
const currentPath = Astro.url.pathname;
const year = new Date().getFullYear();
---