more detail for pages, navigation flow

This commit is contained in:
2023-05-30 18:00:44 -05:00
parent a231e0ec58
commit e19c239e46
23 changed files with 170 additions and 2 deletions

19
app/about/music/page.tsx Normal file
View File

@@ -0,0 +1,19 @@
import Link from 'next/link';
export default function MusicPage() {
return (
<div>
<Link href="/about/music/projects">
<p>Projects</p>
</Link>
<Link href="/about/music/works">
<p>Works</p>
</Link>
<Link href="/about/music/stream">
<p>Stream</p>
</Link>
</div>
)
}