removed uncessary elements

This commit is contained in:
Polaris 2024-07-23 16:32:43 -04:00
parent c765df7662
commit 306ee6cc26

View File

@ -45,7 +45,7 @@ export default async function Share({
<div className="w-full p-4 bg-white dark:text-black rounded-sm">
{chunithm.map((song) => (
<div key={song.id} className="w-full">
<span className="text-black text-center font-bold text-xl">
<span className="text-black text-center font-bold text-xl pr-2">
{song.isNewRecord && "NEW RECORD!!"}
</span>
<span className="text-black text-center font-bold text-xl">
@ -58,9 +58,6 @@ export default async function Share({
<div className="w-full p-4 bg-white dark:text-black rounded-sm">
{chunithm.map((song) => (
<div key={song.id} className="w-full">
<span className="text-black text-center font-bold text-xl">
{song.isNewRecord && "NEW RECORD!!"}
</span>
<span className="text-black text-center font-bold text-xl">
Artist: {song.artist}
</span>
@ -71,9 +68,6 @@ export default async function Share({
<div className="w-full p-4 bg-white dark:text-black rounded-sm">
{chunithm.map((song) => (
<div key={song.id} className="w-full">
<span className="text-black text-center font-bold text-xl">
{song.isNewRecord && "NEW RECORD!!"}
</span>
<span className="text-black text-center font-bold text-xl">
Score: {song.score?.toLocaleString()}
</span>