small fix

This commit is contained in:
2025-12-06 21:03:13 -06:00
parent 63026da874
commit 9d2b6c4748

View File

@@ -67,7 +67,6 @@ export default function App() {
<header>
<h1>Keshavs Music Portfolio</h1>
<p style={{ marginTop: "20px", marginBottom: "20px" }}> </p>
<p style={{ marginTop: "20px", marginBottom: "20px" }}> </p>
</header>
@@ -76,6 +75,7 @@ export default function App() {
{featuredTracks.length > 0 && (
<section>
<h2>Featured</h2>
<p style={{ marginTop: "20px", marginBottom: "20px" }}> </p>
<div className="featured-container">
{featuredTracks.map(t => (
<TrackCard key={t.url} t={t} featured={true} />