Skip to content

Commit

Permalink
Merge pull request #74 from lukso-network/add-asset-sending-video
Browse files Browse the repository at this point in the history
embedded loom video showing users how to send assets from their up
  • Loading branch information
fhildeb authored Apr 24, 2024
2 parents 7f387bc + 961d551 commit 754b9d9
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 6 deletions.
11 changes: 5 additions & 6 deletions docs/general/universal-profiles.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ sidebar_position: 5
description: Support Page for Universal Profiles
---

import React from 'react'
import LoomVideo from '../../src/components/LoomVideo'

# Universal Profiles

## Where can I see my Universal Profile ?
Expand All @@ -12,15 +15,11 @@ You can find your Universal Profile on the Universal Profile Explorer at [univer

![Universal Profile Explorer](../../static/img/general/up-cloud.png)

## Where can I send assets of my Universal Profile?
## How can I send assets from my Universal Profile?

The Universal Profile Extension **does not directly manage token information**. Instead, it is designed to work with various decentralized applications (dApps) that can seamlessly integrate with your Universal Profile and interact with its information and controllers. You can connect your Universal Profile to [wallet.universalprofile.cloud](https://wallet.universalprofile.cloud/) to send token transactions.

![Universal Profile Wallet](../../static/img/general/up-wallet.png)

If you are logged in, you will also be able to transfer assets:

![Asset Transfer](../../static/img/general/asset-transfer.png)
<LoomVideo src="https://www.loom.com/embed/47b4f4e671b248219cac48726358a791?sid=a88bd596-8860-4677-83c9-33384ccfdcb1" />

## Where can I manage my Universal Profile?

Expand Down
Empty file.
20 changes: 20 additions & 0 deletions src/components/LoomVideo/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import React from 'react';

export default function LoomVideo({ src }) {
return (
<div style={{ position: 'relative', paddingBottom: '56.25%', height: 0 }}>
<iframe
src={src}
frameBorder="0"
allowFullScreen
style={{
position: 'absolute',
top: 0,
left: 0,
width: '100%',
height: '100%',
}}
></iframe>
</div>
);
}

0 comments on commit 754b9d9

Please sign in to comment.