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