Skip to content

Commit

Permalink
Chnaged header text
Browse files Browse the repository at this point in the history
  • Loading branch information
Ifechukwudaniel committed Dec 16, 2023
1 parent 6463d99 commit 8220708
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/nextjs/pages/artist/[artistId].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default function SingleArtist({
isArtistLiked();
return (
<DashboardLayout>
<Layout title={`Spotify - ${artist?.name}`}>
<Layout title={`Beat Bridge - ${artist?.name}`}>
<div className="bg-[#00011e] rounded-lg w-full text-[#A0AEC0] p-6 relative mt-16">
<div className="top-0 absolute left-[50%] transform translate-x-[-50%] translate-y-[-50%]">
{artist.images && artist.images?.length > 0 ? (
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/pages/dashboard/artists.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ interface IProps {

export default function FollowedArtists({ followedArtists }: IProps) {
return (
<Layout title="Spotify - Your Library">
<Layout title="Beat Bridge - Your Library">
<DashboardLayout>
<Heading text="Your Artists" />
<ArtistList artists={followedArtists} />
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/pages/genre/[category].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default function CategoryPlaylists({ categoryName, playlists }: IProps) {

return (
<DashboardLayout>
<Layout title={`Spotify - ${capitalizedCategory}`}>
<Layout title={`Beat Bridge - ${capitalizedCategory}`}>
<Heading text={categoryName || ""} className="capitalize" />
<PlaylistList playlists={playlists?.items} />
</Layout>
Expand Down

0 comments on commit 8220708

Please sign in to comment.