import React from 'react'; import { NavLink, useLocation, Link } from 'react-router-dom'; import { Plus } from 'lucide-react'; import { cn } from '@/lib/utils'; interface LayoutProps { children: React.ReactNode; } export function Layout({ children }: LayoutProps) { const location = useLocation(); const navItems = [ { path: '/', label: 'The Stream' }, { path: '/my-dissolves', label: 'My Dissolves' }, ]; return (
Dissolve
Share a Feeling
{children}
); }