diff --git a/lib/components/Hero.tsx b/lib/components/Hero.tsx index dd253a5..b2d5fa4 100644 --- a/lib/components/Hero.tsx +++ b/lib/components/Hero.tsx @@ -1,19 +1,19 @@ 'use client' -import { track } from '@vercel/analytics/react' -import { motion } from 'framer-motion' -import { ChartNoAxesColumn } from 'lucide-react' +import {track} from '@vercel/analytics/react' +import {motion} from 'framer-motion' +import {ChartNoAxesColumn} from 'lucide-react' import Link from 'next/link' -import { META } from '~/constants/metadata' -import { TRACKING } from '~/constants/tracking' +import {META} from '~/constants/metadata' +import {TRACKING} from '~/constants/tracking' import SignInButton from './SignInButton' export default function Hero() { return ( + initial={{opacity: 0, scale: 1}} + animate={{opacity: 1, scale: 1}} + transition={{delay: 0.3, duration: 0.5}} + className='relative z-10 flex flex-col items-center justify-center rounded-lg border border-neutral-700 bg-black transition-all duration-300 sm:w-[450px]'>

Year in code -
+
 by 

- Look back on your 2024 coding journey with a personalized highlight reel and stats page. Visualize your contributions and see how you stack up against other devs around the world. + Look back on your 2024 coding journey with a personalized highlight reel + and stats page. Visualize your contributions and see how you stack up + against other devs around the world.
@@ -46,6 +48,23 @@ export default function Hero() { +
+ Note: We request{' '} + track('Disclaimer')} + target='_blank'> + repo:status + {' '} + access to count private repository contributions, but this will not grant us + access to your actual code.{' '} + track('Disclaimer Code')} + target='_blank'> + View our source code. + +
) }