Changeset f5bc95e for frontend/src/pages/LandingPage.tsx
- Timestamp:
- 02/12/26 22:27:24 (5 months ago)
- Branches:
- main
- Children:
- 85512ff
- Parents:
- d85e8e3
- File:
-
- 1 edited
-
frontend/src/pages/LandingPage.tsx (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
frontend/src/pages/LandingPage.tsx
rd85e8e3 rf5bc95e 1 1 import { useEffect, useRef, useState } from "react"; 2 2 import { useNavigate } from "react-router-dom"; 3 import axiosInstance from "../api/axiosInstance";3 import axiosInstance, { baseURL } from "../api/axiosInstance"; 4 4 import AlbumResult from "../components/search/AlbumResult"; 5 5 import SongResult from "../components/search/SongResult"; … … 337 337 <div className="relative w-full pt-[100%] overflow-hidden bg-[#181818]"> 338 338 <img 339 src={song.cover || "/favicon.png"} 339 src={ 340 song.cover 341 ? `${baseURL}/${song.cover}` 342 : "/favicon.png" 343 } 340 344 alt={song.title} 341 345 className="absolute top-0 left-0 w-full h-full object-cover"
Note:
See TracChangeset
for help on using the changeset viewer.
