Skip to content

Commit

Permalink
Update design...
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Plesnik committed Jun 21, 2024
1 parent c51fc0a commit 52c802d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Em.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { PropsWithChildren } from 'react'

const Em = ({ children }: PropsWithChildren<EmProps>) => {
return <span>{children}</span>
return <span className="font-medium">{children}</span>
}

export interface EmProps {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Heading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const Heading = ({
)
} else if (size === 3) {
return (
<h3 className={defaultClasses + ' pb-4 text-xl opacity-90'}>
<h3 className={defaultClasses + ' pb-4 text-lg opacity-90'}>
{children}
{anchor}
</h3>
Expand Down
1 change: 0 additions & 1 deletion src/content/SkillsTile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import Paragraph from '../components/Paragraph'
const SkillsTile = () => {
return (
<div>
<div className="flex"></div>
<Heading size={3}>Skills</Heading>
<Paragraph>
I specialize in <Em>nicer parts of the front end universe</Em>. I write CSS and front end
Expand Down
3 changes: 3 additions & 0 deletions vercel.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"rewrites": [{ "source": "/(.*)", "destination": "/index.html" }]
}

0 comments on commit 52c802d

Please sign in to comment.