package marketing import ( models "github.com/onsonr/sonr/internal/orm/marketing" "github.com/onsonr/sonr/pkg/nebula/global" ) // ╭───────────────────────────────────────────────────────────╮ // │ Data Model │ // ╰───────────────────────────────────────────────────────────╯ // architecture is the (4th) home page architecture section var arch = &models.Architecture{ Heading: "Onchain Security with Offchain Privacy", Subtitle: "Whenever you are ready, just hit publish to turn your site sketches into an actual designs. No creating, no skills, no reshaping.", Primary: &models.Technology{ Title: "Decentralized Identity", Desc: "Sonr leverages the latest specifications from W3C, DIF, and ICF to essentially have an Interchain-Connected, Smart Account System - seamlessly authenticated with PassKeys.", Image: &models.Image{ Src: global.HardwareWallet.Src(), Width: "721", Height: "280", }, }, Secondary: &models.Technology{ Title: "IPFS Vaults", Desc: "Completely distributed, encrypted, and decentralized storage for your data.", Image: &models.Image{ Src: global.DecentralizedNetwork.Src(), Width: "342", Height: "280", }, }, Tertiary: &models.Technology{ Title: "Service Records", Desc: "On-chain validated services created by Developers for secure transmission of user data.", Image: &models.Image{ Src: global.DefiDashboard.Src(), Width: "342", Height: "280", }, }, Quaternary: &models.Technology{ Title: "Authentication & Authorization", Desc: "Sonr leverages decentralized Macaroons and Multi-Party Computation to provide a secure and decentralized authentication and authorization system.", Image: &models.Image{ Src: global.PrivateKey.Src(), Width: "342", Height: "280", }, }, Quinary: &models.Technology{ Title: "First-Class Exchange", Desc: "Sonr integrates with the IBC protocol allowing for seamless integration with popular exchanges such as OKX, Binance, and Osmosis.", Image: &models.Image{ Src: global.CrossChainBridge.Src(), Width: "342", Height: "280", }, }, } // ╭───────────────────────────────────────────────────────────╮ // │ Render Section View │ // ╰───────────────────────────────────────────────────────────╯ // Architecture is the (4th) home page architecture section templ Architecture() {

{ arch.Heading }

{ arch.Subtitle }

{ arch.Primary.Title }

{ arch.Primary.Desc }

Feature Post 01

{ arch.Secondary.Title }

{ arch.Secondary.Desc }

Feature Post 02

{ arch.Tertiary.Title }

{ arch.Tertiary.Desc }

Feature Post 03

{ arch.Quaternary.Title }

{ arch.Quaternary.Desc }

Feature Post 04

{ arch.Quinary.Title }

{ arch.Quinary.Desc }

Feature Post 05
}