package com.suno.android.preview import com.suno.android.common_data.mappers.promos.DomainModalsGraphic import kotlinx.collections.immutable.persistentListOf private const val OCTOPUS = "https://images.pdimagearchive.org/collections/verany-cephalopods/mollusques-0175.jpg?wid" + "th=1580&height=800" private const val HALLOWEEN = "https://images.pdimagearchive.org/collections/halloween-postcards/halloween-card-59.jp" + "g?width=1580&height=800" private const val BASEBALL = "https://images.pdimagearchive.org/collections/posed-portraits-of-19th-century-baseball-" + "stars/4051203290_f0d9651162_z.jpg?zz=1?width=435&height=800" object FakeModalsGraphic { val banners3 = persistentListOf( DomainModalsGraphic( id = "1", order = 1, backgroundImageUrl = OCTOPUS, backgroundImageUrlMobile = OCTOPUS, backgroundColor = "141E47", tagText = "New Model", tagBackgroundColor = "FD429C", tagTextColor = "0E0808", title = "4.5-all.\nMade for everyone", titleColor = "000000", subtitle = "Can you generate the background of this poster without the text and buttons? Just keep the " + "doodles, graphics.", subtitleColor = "0F0F0F", ctaLabel = "Create with v4.5-all", ctaBackgroundColor = "000000", ctaTextColor = "FFFFFF", ctaUrl = "https://suno.com/account", ), DomainModalsGraphic( id = "2", order = 2, backgroundImageUrl = HALLOWEEN, backgroundImageUrlMobile = HALLOWEEN, backgroundColor = "#2C1E47", tagText = null, tagBackgroundColor = null, tagTextColor = null, title = "Create longer songs with extended mode.", titleColor = "#FFFFFF", subtitle = "Now available for Pro subscribers", subtitleColor = "#FFFFFF", ctaLabel = "Create Now!", ctaBackgroundColor = null, ctaTextColor = null, ctaUrl = "https://suno.com/create", ), DomainModalsGraphic( id = "3", order = 3, backgroundImageUrl = BASEBALL, backgroundImageUrlMobile = BASEBALL, backgroundColor = "#471E1E", tagText = "PREMIUM REALLY REALLY REALLY REALLY LONG TEXT", tagBackgroundColor = "#FDAA42", tagTextColor = "#101012", title = "Upgrade to unlock all features.", titleColor = "#FFFFFF", subtitle = null, subtitleColor = null, ctaLabel = "Upgrade now", ctaBackgroundColor = "#E8EAEE", ctaTextColor = "#101012", ctaUrl = "https://suno.com/song/49f22026-9815-4fab-be07-c350be20a3c0", ), ) }