mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-04 02:11:40 +00:00
feature/1126 implement pkl config (#1161)
- **refactor: move marketing pages to** - **feat: add role select input**
This commit is contained in:
@@ -0,0 +1,70 @@
|
||||
package global
|
||||
|
||||
import "fmt"
|
||||
|
||||
// ╭───────────────────────────────────────────────────────────╮
|
||||
// │ Avatar Image Components │
|
||||
// ╰───────────────────────────────────────────────────────────╯
|
||||
|
||||
type Avatar string
|
||||
|
||||
const (
|
||||
Avatar0xDesigner Avatar = "0xdesigner.jpg"
|
||||
AvatarAccountless Avatar = "accountless.jpg"
|
||||
AvatarAlexRecouso Avatar = "alexrecouso.jpg"
|
||||
AvatarChjango Avatar = "chjango.jpg"
|
||||
AvatarGwart Avatar = "gwart.jpg"
|
||||
AvatarHTMXOrg Avatar = "htmx_org.jpg"
|
||||
AvatarJelenaNoble Avatar = "jelena_noble.jpg"
|
||||
AvatarSonr Avatar = "sonr.svg"
|
||||
AvatarTanishqXYZ Avatar = "tanishqxyz.jpg"
|
||||
AvatarUnusualWhales Avatar = "unusual_whales.png"
|
||||
AvatarWinnieLaux Avatar = "winnielaux_.jpg"
|
||||
)
|
||||
|
||||
func (a Avatar) Src() string {
|
||||
return fmt.Sprintf("https://cdn.sonr.id/img/avatars/%s", string(a))
|
||||
}
|
||||
|
||||
// ╭───────────────────────────────────────────────────────────╮
|
||||
// │ SVG CDN Illustrations │
|
||||
// ╰───────────────────────────────────────────────────────────╯
|
||||
|
||||
type Illustration string
|
||||
|
||||
const (
|
||||
BlockchainExplorer Illustration = "blockchain-explorer"
|
||||
BlockchainStructure Illustration = "blockchain-structure"
|
||||
CrossChainBridge Illustration = "cross-chain-bridge"
|
||||
CrossChainTransfer Illustration = "cross-chain-transfer"
|
||||
CryptoAirdrop Illustration = "crypto-airdrop"
|
||||
CryptoCard Illustration = "crypto-card"
|
||||
CryptoExchange Illustration = "crypto-exchange"
|
||||
CryptoMining Illustration = "crypto-mining"
|
||||
CryptoPayments Illustration = "crypto-payments"
|
||||
CryptoSecurity Illustration = "crypto-security"
|
||||
CryptoStaking Illustration = "crypto-staking"
|
||||
CryptoYield Illustration = "crypto-yield"
|
||||
CurrencyConversion Illustration = "currency-conversion"
|
||||
DecentralizedNetwork Illustration = "decentralized-network"
|
||||
DecentralizedWebNode Illustration = "decentralized-web-node"
|
||||
DefiDashboard Illustration = "defi-dashboard"
|
||||
GovernanceToken Illustration = "governance-token"
|
||||
HardwareWallet Illustration = "hardware-wallet"
|
||||
InitialCoinOffering Illustration = "initial-coin-offering"
|
||||
LiquidityPool Illustration = "liquidity-pool"
|
||||
MarketAnalysis Illustration = "market-analysis"
|
||||
MarketVolatility Illustration = "market-volatility"
|
||||
MultiCoinWallet Illustration = "multi-coin-wallet"
|
||||
NetworkLatency Illustration = "network-latency"
|
||||
PortfolioBalance Illustration = "portfolio-balance"
|
||||
PrivateKey Illustration = "private-key"
|
||||
ProofOfStake Illustration = "proof-of-stake"
|
||||
TokenFractioning Illustration = "token-fractioning"
|
||||
TokenMinting Illustration = "token-minting"
|
||||
TokenSwap Illustration = "token-swap"
|
||||
)
|
||||
|
||||
func (i Illustration) Src() string {
|
||||
return fmt.Sprintf("https://cdn.sonr.id/img/illustrations/%s.svg", string(i))
|
||||
}
|
||||
Reference in New Issue
Block a user