@@ -39,10 +39,6 @@ export default function MarketingPage() {
3939 < br />
4040 everywhere.
4141 </ h1 >
42- < p className = "app-lede" >
43- Voice, chat, connectors, automations. Eliza is the companion app for
44- your agent — on your desktop, your phone, and your watch.
45- </ p >
4642 < div className = "app-cta-row" >
4743 < a href = "#download" className = "app-cta app-cta--dark" >
4844 Download for macOS
@@ -62,33 +58,15 @@ export default function MarketingPage() {
6258 < Feature
6359 icon = { < MessageCircle /> }
6460 title = "Chat with Eliza"
65- body = "Threaded conversations, attachments, memory, and skills. Switch between your local agent and your cloud agent without changing chat history."
66- />
67- < Feature
68- icon = { < Mic /> }
69- title = "Voice that listens"
70- body = "Push-to-talk and always-on voice modes. Speak naturally — Eliza takes notes, runs tasks, and answers in your voice of choice."
71- />
72- < Feature
73- icon = { < Cloud /> }
74- title = "Connectors built in"
75- body = "iMessage, Slack, Discord, Notion, Obsidian, Calendar, Reminders. Eliza plugs into the tools you already use."
76- />
77- < Feature
78- icon = { < Cpu /> }
79- title = "Local or cloud"
80- body = "Run inference on-device for privacy, or route to your Eliza Cloud agent for heavy lifting. Eliza picks the right one automatically."
81- />
82- < Feature
83- icon = { < Smartphone /> }
84- title = "Mobile native"
85- body = "True native apps for iOS and Android. Notifications, widgets, share extensions, shortcuts — feels at home on the platform."
8661 />
62+ < Feature icon = { < Mic /> } title = "Voice" />
8763 < Feature
8864 icon = { < Cloud /> }
89- title = "Open source"
90- body = "Powered by elizaOS. Inspect, fork, self-host. The agent app you can audit and own."
65+ title = "Connectors"
9166 />
67+ < Feature icon = { < Cpu /> } title = "Local or cloud" />
68+ < Feature icon = { < Smartphone /> } title = "Mobile" />
69+ < Feature icon = { < Cloud /> } title = "Open source" />
9270 </ div >
9371 </ div >
9472 </ section >
@@ -136,10 +114,6 @@ export default function MarketingPage() {
136114 < div className = "app-narrow app-split" >
137115 < div >
138116 < h2 className = "app-h2 app-h2--invert" > Powered by elizaOS.</ h2 >
139- < p className = "app-paragraph" >
140- The open-source runtime that does the actual thinking. Eliza the
141- app is just the face — the OS is what makes it tick.
142- </ p >
143117 </ div >
144118 < a href = { osUrl } className = "app-cta app-cta--white" >
145119 Install elizaOS
@@ -152,10 +126,6 @@ export default function MarketingPage() {
152126 < div className = "app-narrow app-split" >
153127 < div >
154128 < h2 className = "app-h2" > Or skip install. Open the cloud.</ h2 >
155- < p className = "app-paragraph app-paragraph--dark" >
156- Eliza Cloud is the same agent, running in our managed cloud. Sign
157- in from any browser.
158- </ p >
159129 </ div >
160130 < a href = { cloudUrl } className = "app-cta app-cta--dark" >
161131 < Cloud className = "app-icon" /> Open Eliza Cloud
@@ -187,19 +157,16 @@ export default function MarketingPage() {
187157function Feature ( {
188158 icon,
189159 title,
190- body,
191160} : {
192161 icon : React . ReactNode ;
193162 title : string ;
194- body : string ;
195163} ) {
196164 return (
197165 < article className = "app-feature-tile" >
198166 < span className = "app-feature-icon" aria-hidden = "true" >
199167 { icon }
200168 </ span >
201169 < h3 > { title } </ h3 >
202- < p > { body } </ p >
203170 </ article >
204171 ) ;
205172}
0 commit comments