design: remove emoji icons from product archetype onboarding tiles
This commit is contained in:
@@ -113,37 +113,31 @@ export function EntrepIdea({ value, onChange }) {
|
|||||||
const ARCHETYPES = [
|
const ARCHETYPES = [
|
||||||
{
|
{
|
||||||
id: "saas",
|
id: "saas",
|
||||||
icon: "💻",
|
|
||||||
label: "Web App / SaaS",
|
label: "Web App / SaaS",
|
||||||
desc: "Dashboards, tools, interactive portals",
|
desc: "Dashboards, tools, interactive portals",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "marketplace",
|
id: "marketplace",
|
||||||
icon: "🤝",
|
|
||||||
label: "Marketplace",
|
label: "Marketplace",
|
||||||
desc: "Directories, bookings, listings",
|
desc: "Directories, bookings, listings",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "marketing",
|
id: "marketing",
|
||||||
icon: "✨",
|
|
||||||
label: "Marketing Site",
|
label: "Marketing Site",
|
||||||
desc: "Portfolios, lead capture, landing pages",
|
desc: "Portfolios, lead capture, landing pages",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "ecommerce",
|
id: "ecommerce",
|
||||||
icon: "🛒",
|
|
||||||
label: "Online Store",
|
label: "Online Store",
|
||||||
desc: "Carts, checkouts, selling physical/digital goods",
|
desc: "Carts, checkouts, selling physical/digital goods",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "mobile",
|
id: "mobile",
|
||||||
icon: "📱",
|
|
||||||
label: "Mobile App",
|
label: "Mobile App",
|
||||||
desc: "iOS and Android mobile applications",
|
desc: "iOS and Android mobile applications",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "blog",
|
id: "blog",
|
||||||
icon: "✍️",
|
|
||||||
label: "Blog / Publication",
|
label: "Blog / Publication",
|
||||||
desc: "Newsletters, articles, content hubs",
|
desc: "Newsletters, articles, content hubs",
|
||||||
},
|
},
|
||||||
@@ -161,7 +155,7 @@ function EntrepType({ value, onChange }) {
|
|||||||
id: a.id,
|
id: a.id,
|
||||||
label: a.label,
|
label: a.label,
|
||||||
desc: a.desc,
|
desc: a.desc,
|
||||||
icon: <span style={{ fontSize: 14 }}>{a.icon}</span>,
|
icon: undefined,
|
||||||
}))}
|
}))}
|
||||||
value={value}
|
value={value}
|
||||||
onChange={onChange}
|
onChange={onChange}
|
||||||
|
|||||||
Reference in New Issue
Block a user