Skip to content

Commit

Permalink
chore(v1): fix transition & change description
Browse files Browse the repository at this point in the history
  • Loading branch information
hendraaagil committed Jun 2, 2021
1 parent 5ef243f commit eb475fa
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion components/about/Card.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ const Card = ({ title, skills }) => (
lineHeight="tall"
rounded="md"
shadow="md"
transition="all 0.2s ease-in-out"
_hover={{
bg: 'gray.200',
transform: 'translateY(-3px);',
transition: 'all 0.2s ease-in-out',
}}
>
<Heading as="h3" size="md" mb={2} fontWeight="600">
Expand Down
3 changes: 1 addition & 2 deletions components/about/SocialButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,14 @@ const SocialButton = ({ name, url }) => {
py={{ base: 6, lg: 4 }}
bg={color}
color="brand.light"
transition="all 0.2s ease-in-out"
_focus={{
bg: 'brand.light',
color,
transform: 'translateY(-3px);',
transition: 'all 0.2s ease-in-out',
}}
_hover={{
transform: 'translateY(-3px);',
transition: 'all 0.2s ease-in-out',
}}
>
{name}
Expand Down
2 changes: 1 addition & 1 deletion components/blog/Card.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ const Card = ({ createdAt, slug, summary, tags, title }) => (
textAlign="center"
rounded="md"
shadow="md"
transition="all 0.2s ease-in-out"
_hover={{
bg: 'gray.200',
cursor: 'pointer',
transform: 'translateY(-3px);',
transition: 'all 0.2s ease-in-out',
}}
>
<Text fontWeight="600">
Expand Down
2 changes: 1 addition & 1 deletion components/nav/NavLink.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ const NavLink = ({ hasBg, link, name, onClose }) => (
rounded={hasBg && 'md'}
fontWeight="600"
textAlign="center"
transition="all 0.2s ease-in-out"
_hover={{
cursor: 'pointer',
textDecor: 'underline',
color: 'brand.blue',
transition: 'all 0.2s ease-in-out',
}}
>
{name}
Expand Down
2 changes: 1 addition & 1 deletion components/nav/Navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ const Navbar = () => {
<Heading
as="h1"
size="md"
transition="all 0.2s ease-in-out"
_hover={{
cursor: 'pointer',
textDecor: 'underline',
color: 'brand.blue',
transition: 'all 0.2s ease-in-out',
}}
>
hendraaagil
Expand Down
2 changes: 1 addition & 1 deletion components/projects/Card.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ const Card = ({ name, thumbnail, desc, github, demo }) => (
w="full"
rounded="md"
shadow="md"
transition="all 0.2s ease-in-out"
_hover={{
bg: 'gray.200',
transform: 'translateY(-3px);',
transition: 'all 0.2s ease-in-out',
}}
>
<Image src={thumbnail} alt={name} width={1280} height={720} />
Expand Down
2 changes: 1 addition & 1 deletion next-seo.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { getAge } from './lib/age';

const title = 'Hendra Agil';
const description = `Hello, my name is Hendra Agil. I'm ${getAge()} years old, currently learning about web development.`;
const description = `Hello, my name is Hendra Agil Syaputra. Usually called Hendra / Agil. I'm currently ${getAge()} years old. Born and live in Karanganyar, Central Java, Indonesia.`;
const siteUrl = 'https://hendraaagil.space';

const SEO = {
Expand Down

1 comment on commit eb475fa

@vercel
Copy link

@vercel vercel bot commented on eb475fa Jun 2, 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.