fix: vercel link to push you to home page not dashboard

This commit is contained in:
yassinehaimouch 2025-07-17 19:20:29 +01:00
parent f1b216848d
commit e487ca254e
1 changed files with 11 additions and 11 deletions

View File

@ -121,8 +121,8 @@ export function Hero() {
transition={{ delay: 0.6, duration: 0.8 }}
className="mb-8 flex justify-center"
>
<SponsorButton
href="https://vercel.com/?utm_source=opencut"
<SponsorButton
href="https://vercel.com/home?utm_source=opencut"
logo={VercelIcon}
companyName="Vercel"
/>
@ -181,15 +181,15 @@ export function Hero() {
</Button>
</form>
</motion.div>
<motion.div
initial={{ opacity: 0, y: 10 }}
animate={{ opacity: 1, y: 0 }}
transition={{ delay: 0.8, duration: 0.6 }}
className="mt-8 inline-flex items-center gap-2 text-sm text-muted-foreground justify-center"
>
<div className="w-2 h-2 bg-green-500 rounded-full animate-pulse" />
<span>50k+ people already joined</span>
</motion.div>
<motion.div
initial={{ opacity: 0, y: 10 }}
animate={{ opacity: 1, y: 0 }}
transition={{ delay: 0.8, duration: 0.6 }}
className="mt-8 inline-flex items-center gap-2 text-sm text-muted-foreground justify-center"
>
<div className="w-2 h-2 bg-green-500 rounded-full animate-pulse" />
<span>50k+ people already joined</span>
</motion.div>
</motion.div>
</div>
);