mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-16 04:13:12 +00:00
chore: add more reference links
This commit is contained in:
parent
1fea5102cf
commit
24544be0e6
@ -76,7 +76,15 @@ const CollectionDashboard: React.FC = () => {
|
||||
) : filteredCollections.length === 0 ? (
|
||||
<div className="py-16 w-full flex flex-col justify-center items-center text-gray-400">
|
||||
<Icon.PackageOpen className="w-16 h-auto" strokeWidth="1" />
|
||||
<p className="mt-4">No collections found.</p>
|
||||
<p className="mt-2">No collections found.</p>
|
||||
<a
|
||||
className="text-blue-600 border-t text-sm hover:underline flex flex-row justify-center items-center mt-4 pt-2"
|
||||
href="https://github.com/yourselfhosted/slash/blob/main/docs/getting-started/collections.md"
|
||||
target="_blank"
|
||||
>
|
||||
<span>Learn more about collections.</span>
|
||||
<Icon.ExternalLink className="ml-1 w-4 h-auto inline" />
|
||||
</a>
|
||||
</div>
|
||||
) : (
|
||||
<div className="w-full flex flex-col justify-start items-start gap-3">
|
||||
|
@ -78,7 +78,15 @@ const ShortcutDashboard: React.FC = () => {
|
||||
) : orderedShortcutList.length === 0 ? (
|
||||
<div className="py-16 w-full flex flex-col justify-center items-center text-gray-400">
|
||||
<Icon.PackageOpen className="w-16 h-auto" strokeWidth="1" />
|
||||
<p className="mt-4">No shortcuts found.</p>
|
||||
<p className="mt-2">No shortcuts found.</p>
|
||||
<a
|
||||
className="text-blue-600 border-t text-sm hover:underline flex flex-row justify-center items-center mt-4 pt-2"
|
||||
href="https://github.com/yourselfhosted/slash/blob/main/docs/getting-started/shortcuts.md"
|
||||
target="_blank"
|
||||
>
|
||||
<span>Learn more about shortcuts.</span>
|
||||
<Icon.ExternalLink className="ml-1 w-4 h-auto inline" />
|
||||
</a>
|
||||
</div>
|
||||
) : (
|
||||
<ShortcutsContainer shortcutList={orderedShortcutList} />
|
||||
|
Loading…
x
Reference in New Issue
Block a user