removed text gradient
This commit is contained in:
parent
f593b95d50
commit
e264ef1f97
|
@ -60,7 +60,7 @@ export default function Index() {
|
|||
style={{ color: activeCollection?.color }}
|
||||
className="sm:w-8 sm:h-8 w-6 h-6 mt-3 drop-shadow"
|
||||
/>
|
||||
<p className="sm:text-4xl text-3xl capitalize bg-gradient-to-tr from-sky-500 to-slate-400 bg-clip-text text-transparent font-bold w-full py-1 break-words hyphens-auto">
|
||||
<p className="sm:text-4xl text-3xl capitalize text-sky-500 font-bold w-full py-1 break-words hyphens-auto">
|
||||
{activeCollection?.name}
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
@ -39,7 +39,7 @@ export default function Collections() {
|
|||
icon={faFolder}
|
||||
className="sm:w-8 sm:h-8 w-6 h-6 mt-2 text-sky-500 drop-shadow"
|
||||
/>
|
||||
<p className="sm:text-4xl text-3xl capitalize bg-gradient-to-tr from-sky-500 to-slate-400 bg-clip-text text-transparent font-bold">
|
||||
<p className="sm:text-4xl text-3xl capitalize text-sky-500 font-bold">
|
||||
All Collections
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
@ -85,7 +85,7 @@ export default function Dashboard() {
|
|||
icon={faChartSimple}
|
||||
className="sm:w-8 sm:h-8 w-6 h-6 mt-2 text-sky-500 drop-shadow"
|
||||
/>
|
||||
<p className="sm:text-4xl text-3xl capitalize bg-gradient-to-tr from-sky-500 to-slate-400 bg-clip-text text-transparent font-bold">
|
||||
<p className="sm:text-4xl text-3xl capitalize text-sky-500 font-bold">
|
||||
Dashboard
|
||||
</p>
|
||||
</div>
|
||||
|
@ -95,16 +95,14 @@ export default function Dashboard() {
|
|||
|
||||
<div className="flex flex-col md:flex-row md:items-center justify-evenly gap-2 mb-10">
|
||||
<div className="flex items-baseline gap-2">
|
||||
<p className="font-bold text-6xl bg-gradient-to-tr from-sky-500 to-slate-400 bg-clip-text text-transparent">
|
||||
{numberOfLinks}
|
||||
</p>
|
||||
<p className="font-bold text-6xl text-sky-500">{numberOfLinks}</p>
|
||||
<p className="text-sky-900 text-xl">
|
||||
{numberOfLinks === 1 ? "Link" : "Links"}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div className="flex items-baseline gap-2">
|
||||
<p className="font-bold text-6xl bg-gradient-to-tr from-sky-500 to-slate-400 bg-clip-text text-transparent">
|
||||
<p className="font-bold text-6xl text-sky-500">
|
||||
{collections.length}
|
||||
</p>
|
||||
<p className="text-sky-900 text-xl">
|
||||
|
@ -113,9 +111,7 @@ export default function Dashboard() {
|
|||
</div>
|
||||
|
||||
<div className="flex items-baseline gap-2">
|
||||
<p className="font-bold text-6xl bg-gradient-to-tr from-sky-500 to-slate-400 bg-clip-text text-transparent">
|
||||
{tags.length}
|
||||
</p>
|
||||
<p className="font-bold text-6xl text-sky-500">{tags.length}</p>
|
||||
<p className="text-sky-900 text-xl">
|
||||
{tags.length === 1 ? "Tag" : "Tags"}
|
||||
</p>
|
||||
|
|
|
@ -26,7 +26,7 @@ export default function Links() {
|
|||
icon={faLink}
|
||||
className="sm:w-8 sm:h-8 w-6 h-6 mt-2 text-sky-500 drop-shadow"
|
||||
/>
|
||||
<p className="sm:text-4xl text-3xl capitalize bg-gradient-to-tr from-sky-500 to-slate-400 bg-clip-text text-transparent font-bold">
|
||||
<p className="sm:text-4xl text-3xl capitalize text-sky-500 font-bold">
|
||||
All Links
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
@ -45,7 +45,7 @@ export default function PublicCollections() {
|
|||
<div
|
||||
className={`text-center bg-gradient-to-tr from-sky-100 from-10% via-gray-100 via-20% rounded-3xl shadow-lg p-5`}
|
||||
>
|
||||
<p className="text-5xl bg-gradient-to-tr from-sky-500 to-slate-400 bg-clip-text text-transparent font-bold mb-5 capitalize">
|
||||
<p className="text-5xl text-sky-500 font-bold mb-5 capitalize">
|
||||
{data.name}
|
||||
</p>
|
||||
|
||||
|
|
|
@ -42,7 +42,7 @@ export default function Links() {
|
|||
icon={faSearch}
|
||||
className="sm:w-8 sm:h-8 w-6 h-6 mt-2 text-sky-500 drop-shadow"
|
||||
/>
|
||||
<p className="sm:text-4xl text-3xl capitalize bg-gradient-to-tr from-sky-500 to-slate-400 bg-clip-text text-transparent font-bold">
|
||||
<p className="sm:text-4xl text-3xl capitalize text-sky-500 font-bold">
|
||||
Search Results
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
@ -38,7 +38,7 @@ export default function Index() {
|
|||
icon={faHashtag}
|
||||
className="sm:w-8 sm:h-8 w-6 h-6 mt-2 text-sky-500"
|
||||
/>
|
||||
<p className="sm:text-4xl text-3xl capitalize bg-gradient-to-tr from-sky-500 to-slate-400 bg-clip-text text-transparent font-bold">
|
||||
<p className="sm:text-4xl text-3xl capitalize text-sky-500 font-bold">
|
||||
{activeTag?.name}
|
||||
</p>
|
||||
</div>
|
||||
|
|
Ŝarĝante…
Reference in New Issue