mirror of
https://github.com/aljazceru/landscape-template.git
synced 2025-12-30 04:24:26 +01:00
fix: twitter link, project-card-skeleton
This commit is contained in:
@@ -44,7 +44,7 @@ export default function AboutCard({ user, isOwner }: Props) {
|
||||
text: user.twitter,
|
||||
icon: FiTwitter,
|
||||
colors: "bg-blue-100 text-blue-500",
|
||||
url: `https://twitter.com/@${user.twitter}`
|
||||
url: `https://twitter.com/${user.twitter}`
|
||||
},
|
||||
{
|
||||
hasValue: user.github,
|
||||
|
||||
@@ -25,7 +25,7 @@ export default function LinkingAccountModal({ onClose, direction, maker, ...prop
|
||||
hasValue: maker.twitter,
|
||||
text: maker.twitter,
|
||||
icon: FiTwitter,
|
||||
url: `https://twitter.com/@${maker.twitter}`
|
||||
url: `https://twitter.com/${maker.twitter}`
|
||||
},
|
||||
{
|
||||
hasValue: maker.github,
|
||||
|
||||
@@ -16,9 +16,6 @@ export default function ProjectCardSkeleton() {
|
||||
<p className="text-body2 text-gray-900 font-bold"><Skeleton width={"15ch"} /> </p>
|
||||
<p className="text-body4 text-gray-600 font-medium"><Skeleton width={"8ch"} /> </p>
|
||||
<p className="text-body5 text-gray-600 font-medium"><Skeleton width={"35ch"} /> </p>
|
||||
<ul className="hidden md:flex flex-wrap gap-8 mt-4">
|
||||
{Array(3).fill(0).map((_, idx) => <li key={idx}><Badge size='sm' className='!text-body5'> <span className="opacity-0">Loading role</span> </Badge> </li>)}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<hr className="hidden md:block bg-gray-200 mt-24"></hr>
|
||||
|
||||
Reference in New Issue
Block a user