Merge pull request #314 from mezotv/feat/sponsored-by-vercel

feat(hero): add sponsored by vercel to hero
This commit is contained in:
iza
2025-07-16 16:59:36 +03:00
committed by GitHub
3 changed files with 64 additions and 0 deletions
+14
View File
@@ -3,6 +3,8 @@
import { motion } from "motion/react";
import { Button } from "../ui/button";
import { Input } from "../ui/input";
import { SponsorButton } from "../ui/sponsor-button";
import { VercelIcon } from "../icons";
import { ArrowRight } from "lucide-react";
import { useState, useEffect } from "react";
import { toast } from "sonner";
@@ -113,6 +115,18 @@ export function Hero() {
transition={{ duration: 1 }}
className="max-w-3xl mx-auto w-full flex-1 flex flex-col justify-center"
>
<motion.div
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ delay: 0.6, duration: 0.8 }}
className="mb-4 flex justify-center"
>
<SponsorButton
href="https://vercel.com/?utm_source=opencut"
logo={VercelIcon}
companyName="Vercel"
/>
</motion.div>
<motion.div
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}