Skip to content

Commit

Permalink
chore: add link to resume
Browse files Browse the repository at this point in the history
Signed-off-by: Logan McAnsh <logan@mcan.sh>
  • Loading branch information
mcansh committed Jan 27, 2021
1 parent 55b7b29 commit 85a9774
Showing 1 changed file with 16 additions and 13 deletions.
29 changes: 16 additions & 13 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ import { motion } from 'framer-motion';
import { FunHoverLink } from '~/components/style/styled-link';

const Index: NextPage = () => (
<div className="h-full max-w-screen-md px-4 py-8 mx-auto">
<motion.div
className="flex flex-col items-center justify-center h-full"
initial={{ y: -80, opacity: 0 }}
animate={{ y: 0, opacity: 1 }}
transition={{
type: 'spring',
damping: 40,
stiffness: 200,
}}
>
<motion.div
className="flex flex-col items-center justify-center h-full max-w-screen-md px-4 py-8 mx-auto "
initial={{ y: -80, opacity: 0 }}
animate={{ y: 0, opacity: 1 }}
transition={{
type: 'spring',
damping: 40,
stiffness: 200,
}}
>
<div className="flex flex-col items-center justify-center flex-1">
<Image
src="/me.jpg"
alt="Why it's me, Logan McAnsh"
Expand All @@ -40,8 +40,11 @@ const Index: NextPage = () => (
<FunHoverLink>Powerley</FunHoverLink>
</Link>
</p>
</motion.div>
</div>
</div>
<Link href="https://resume.mcan.sh">
<FunHoverLink>Resume</FunHoverLink>
</Link>
</motion.div>
);

export default Index;

1 comment on commit 85a9774

@vercel
Copy link

@vercel vercel bot commented on 85a9774 Jan 27, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.