Skip to content

Commit 24fc5bd

Browse files
committed
Move app links on landing homepage
1 parent 2a7e299 commit 24fc5bd

1 file changed

Lines changed: 26 additions & 24 deletions

File tree

  • apps/landing/src/components/landing

apps/landing/src/components/landing/hero.tsx

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ export function Hero() {
232232
</Link>
233233
</motion.div>
234234

235-
{/* Hosting Options & Apps */}
235+
{/* Hosting Options */}
236236
<motion.div variants={item} className="flex flex-col gap-6 w-full mt-4">
237237
<div className="flex flex-col gap-3">
238238
<p className="text-sm font-semibold text-foreground/90 uppercase tracking-wider">
@@ -259,28 +259,6 @@ export function Hero() {
259259
</li>
260260
</ul>
261261
</div>
262-
263-
<div className="flex flex-col sm:flex-row items-start sm:items-center gap-4 pt-4 border-t border-border/60 mt-2">
264-
<span className="text-sm font-medium text-foreground/80 whitespace-nowrap">
265-
Manage inbox on the go:
266-
</span>
267-
<div className="flex items-center gap-3">
268-
<Link
269-
href="https://apps.apple.com/us/app/opencom/id6759488331"
270-
target="_blank"
271-
className="transition-transform hover:scale-105 active:scale-95"
272-
>
273-
<img src="/app-store-badge.svg" alt="Download on the App Store" className="h-[40px] w-auto" />
274-
</Link>
275-
<Link
276-
href="https://play.google.com/store/apps/details?id=com.opencom.app"
277-
target="_blank"
278-
className="transition-transform hover:scale-105 active:scale-95"
279-
>
280-
<img src="/google-play-badge.png" alt="Get it on Google Play" className="h-[58px] w-auto -ml-2" />
281-
</Link>
282-
</div>
283-
</div>
284262
</motion.div>
285263
</motion.div>
286264

@@ -293,7 +271,7 @@ export function Hero() {
293271
>
294272
{/* Diffusion Shadow Backdrop */}
295273
<div className="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-[120%] h-[120%] bg-primary/10 dark:bg-primary/5 blur-[120px] rounded-full pointer-events-none" />
296-
274+
297275
{/* Bento Cluster Container */}
298276
<div className="relative w-full max-w-md mx-auto z-10">
299277
{/* The Intelligent List Card */}
@@ -305,6 +283,30 @@ export function Hero() {
305283
<div className="relative z-20 -mt-8 ml-8 mr-[-2rem]">
306284
<CommandInput />
307285
</div>
286+
287+
{/* App Store Links */}
288+
<div className="mt-12 flex flex-col items-center justify-center gap-3 w-full">
289+
<span className="text-sm font-medium text-muted-foreground whitespace-nowrap">
290+
Manage inbox on the go
291+
</span>
292+
<div className="flex items-center justify-center gap-3 bg-white/50 dark:bg-card/50 backdrop-blur-md px-6 py-4 rounded-2xl border border-border/50 shadow-sm">
293+
<Link
294+
href="https://apps.apple.com/us/app/opencom/id6759488331"
295+
target="_blank"
296+
className="transition-transform hover:scale-105 active:scale-95"
297+
>
298+
<img src="/app-store-badge.svg" alt="Download on the App Store" className="h-[40px] w-auto" />
299+
</Link>
300+
<div className="w-px h-8 bg-border/80 mx-1" />
301+
<Link
302+
href="https://play.google.com/store/apps/details?id=com.opencom.app"
303+
target="_blank"
304+
className="transition-transform hover:scale-105 active:scale-95"
305+
>
306+
<img src="/google-play-badge.png" alt="Get it on Google Play" className="h-[58px] w-auto -ml-1" />
307+
</Link>
308+
</div>
309+
</div>
308310
</div>
309311
</motion.div>
310312
</div>

0 commit comments

Comments
 (0)