@@ -117,20 +117,58 @@ export default function Home() {
117117
118118 { /* Quick Start Section */ }
119119 < section id = "install" class = "py-20 px-4 bg-base" >
120- < div class = "container mx-auto text-center" >
121- < h2 class = "text-4xl font-bold mb-8 text-text" > Quick Start</ h2 >
122- < p class = "text-xl text-subtext1 mb-12" >
120+ < div class = "container mx-auto" >
121+ < h2 class = "text-4xl font-bold mb-8 text-text text-center" >
122+ Quick Start
123+ </ h2 >
124+ < p class = "text-xl text-subtext1 mb-12 text-center max-w-3xl mx-auto" >
123125 Get productive with Andromeda in seconds
124126 </ p >
125- < div class = "max-w-2xl mx-auto" >
126- < div class = "text-left" >
127- < pre class = "bg-black text-green-400 p-6 rounded-lg overflow-x-auto border border-surface1" >
128- < code > { `# Install Andromeda
127+
128+ < div class = "w-full max-w-2xl mx-auto" >
129+ < div class = "bg-mantle rounded-xl border border-surface1 overflow-hidden" >
130+ { /* Header with actions */ }
131+ < div class = "flex flex-col sm:flex-row sm:items-center sm:justify-between gap-3 p-4 bg-surface0 border-b border-surface1" >
132+ < h4
133+ class = "text-sm sm:text-base font-semibold flex items-center gap-2"
134+ style = { { color : "var(--color-text)" } }
135+ >
136+ Installation & Usage
137+ </ h4 >
138+ < div class = "flex gap-2" >
139+ </ div >
140+ </ div >
141+ { /* Command display */ }
142+ < div class = "p-4" >
143+ < pre
144+ class = "text-sm sm:text-base font-mono leading-relaxed overflow-x-auto"
145+ style = { { color : "var(--color-text)" } }
146+ >
147+ < code > { `# Install Andromeda
129148cargo install --git https://github.com/tryandromeda/andromeda
130149
131150# Run your TypeScript/JavaScript files
132151andromeda run app.ts` } </ code >
133- </ pre >
152+ </ pre >
153+ </ div >
154+ </ div >
155+
156+ { /* Info note */ }
157+ < div class = "mt-4 bg-surface0/50 rounded-lg border border-surface1/50 p-4" >
158+ < p
159+ class = "text-xs sm:text-sm leading-relaxed"
160+ style = { { color : "var(--color-subtext1)" } }
161+ >
162+ < span
163+ class = "font-semibold"
164+ style = { { color : "var(--color-text)" } }
165+ >
166+ Note:
167+ </ span > { " " }
168+ You'll need Rust installed to use the cargo command. For
169+ pre-built binaries and alternative installation methods, see the
170+ installation section above.
171+ </ p >
134172 </ div >
135173 </ div >
136174 </ div >
0 commit comments