mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
- **feat(did): add assertion type to DID spec** - **refactor: update build process to include assets generation** - **refactor: update import paths for to** - **feat: introduce new authentication state management** - **feat: add current account route** - **feat: implement global toasts with custom HTML** - **refactor: remove unused session code** - **feat: add config.json to embedded assets** - **refactor: remove unused dependency on gorilla/sessions** - **refactor: simplify session management and remove unnecessary fields** - **fix: remove unnecessary import for unused protobuf types** - **feat: introduce separate HTTP contexts for Highway and DWN** - **fix(keeper): Handle missing controller during initial sync** - **refactor: extract DWN configuration from DWNContext** - **feat: add view route** - **fix: update configuration file name in embed.go** - **feat: improve vaultindex page loading experience** - **feat(hway): add highway context to echo context** - **chore(deps): bump onsonr/crypto from 1.32.0 to 1.33.0** - **refactor: rename DWNSessionMiddleware to WebNodeSessionMiddleware** - **feat: rename client API to web node API** - **refactor: separate API and view routes** - **refactor: remove unused build targets in Makefile** - **feat: add Devbox integration to container** - **feat: add wasm support for dwn** - **refactor: update module proto import** - **feat: add default first and third party caveats** - **feat: Add target vault allocation mechanism** - **refactor: introduce standardized session cookie handling** - **fix: update service worker installation and ready states** - **feat: add worker handlers** - **feat: Enable SSH access to devcontainer** - **refactor: rename HighwayContext to HwayContext** - **feat: add block expiration calculation to sonr context** - **feat: remove config from cookie and header** - **feat(gen): Remove generated code for IPFS, Motr and Sonr** - **refactor: remove unused createMotrConfig function** - **feat: add project analytics with Repobeats** - **docs: Remove component details from README** - **refactor: rename SetConfig to injectConfig**
72 lines
3.3 KiB
Go
72 lines
3.3 KiB
Go
package marketing
|
|
|
|
import models "github.com/onsonr/sonr/internal/orm/marketing"
|
|
|
|
var hero = &models.Hero{
|
|
TitleFirst: "Simplified",
|
|
TitleEmphasis: "self-custody",
|
|
TitleSecond: "for everyone",
|
|
Subtitle: "Sonr is a modern re-imagination of online user identity, empowering users to take ownership of their digital footprint and unlocking a new era of self-sovereignty.",
|
|
PrimaryButton: &models.Button{Text: "Get Started", Href: "/register"},
|
|
SecondaryButton: &models.Button{Text: "Learn More", Href: "/about"},
|
|
Image: &models.Image{
|
|
Src: "https://cdn.sonr.id/img/hero-clipped.svg",
|
|
Width: "500",
|
|
Height: "500",
|
|
},
|
|
Stats: []*models.Stat{
|
|
{Value: "476", Label: "Assets packed with power beyond your imagination.", Denom: "K"},
|
|
{Value: "1.44", Label: "Assets packed with power beyond your imagination.", Denom: "K"},
|
|
{Value: "1.5", Label: "Assets packed with power beyond your imagination.", Denom: "M+"},
|
|
{Value: "750", Label: "Assets packed with power beyond your imagination.", Denom: "K"},
|
|
},
|
|
}
|
|
|
|
var highlights = &models.Highlights{
|
|
Heading: "The Internet Rebuilt for You",
|
|
Subtitle: "Sonr is a comprehensive system for Identity Management which proteects users across their digital personas while providing Developers a cost-effective solution for decentralized authentication.",
|
|
Features: []*models.Feature{
|
|
{
|
|
Title: "∞-Factor Auth",
|
|
Desc: "Sonr is designed to work across all platforms and devices, building a encrypted and anonymous identity layer for each user on the internet.",
|
|
Icon: nil,
|
|
},
|
|
{
|
|
Title: "Data Ownership",
|
|
Desc: "Sonr leverages advanced cryptography to permit facilitating Wallet Operations directly on-chain, without the need for a centralized server.",
|
|
Icon: nil,
|
|
},
|
|
{
|
|
Title: "Everyday Transactions",
|
|
Desc: "Sonr follows the latest specifications from W3C, DIF, and ICF to essentially have an Interchain-Connected, Smart Account System - seamlessly authenticated with PassKeys.",
|
|
Icon: nil,
|
|
},
|
|
{
|
|
Title: "Limitless Possibilities",
|
|
Desc: "Sonr is a proudly American Project which operates under the new Wyoming DUNA Legal Framework, ensuring the protection of your digital rights.",
|
|
Icon: nil,
|
|
},
|
|
},
|
|
}
|
|
|
|
var mission = &models.Mission{
|
|
Eyebrow: "L1 Blockchain",
|
|
Heading: "The Protocol for Decentralized Identity & Authentication",
|
|
Subtitle: "We're creating the Global Standard for Decentralized Identity. Authenticate users with PassKeys, Issue Crypto Wallets, Build Payment flows, Send Encrypted Messages - all on a single platform.",
|
|
Experience: &models.Feature{
|
|
Title: "Less is More",
|
|
Desc: "Sonr is a comprehensive system for Identity Management which proteects users across their digital personas while providing Developers a cost-effective solution for decentralized authentication.",
|
|
Icon: nil,
|
|
},
|
|
Compliance: &models.Feature{
|
|
Title: "Works where there's Internet",
|
|
Desc: "Sonr is designed to work across all platforms and devices, building a encrypted and anonymous identity layer for each user on the internet.",
|
|
Icon: nil,
|
|
},
|
|
Interoperability: &models.Feature{
|
|
Title: "American Made DUNA",
|
|
Desc: "Sonr follows the latest specifications from W3C, DIF, and ICF to essentially have an Interchain-Connected, Smart Account System - seamlessly authenticated with PassKeys.",
|
|
Icon: nil,
|
|
},
|
|
}
|