Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
alii committed Sep 20, 2023
1 parent a4e1a89 commit 4ad0fa1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {Toaster} from 'react-hot-toast';

const title = Newsreader({
subsets: ['latin'],
weight: '200',
weight: ['400', '200'],
style: 'italic',
fallback: ['serif'],
});
Expand Down
15 changes: 9 additions & 6 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import clsx from 'clsx';
import dayjs from 'dayjs';
import type {GetStaticProps} from 'next';
import Link from 'next/link';
import {HiOutlineExternalLink} from 'react-icons/hi';
import {FiArrowUpRight} from 'react-icons/fi';
import {
SiAmazonaws,
SiBabel,
Expand Down Expand Up @@ -78,12 +78,15 @@ export default function Home(props: Props) {
<div className="col-span-4 flex h-52 flex-col justify-between overflow-hidden rounded-2xl bg-pink-200 px-8 py-8 dark:border-pink-500 dark:bg-pink-500/20 dark:shadow-none dark:backdrop-blur-2xl md:col-span-4">
<div className="flex">
<Link
className="flex items-center justify-center rounded-full bg-pink-300 px-2 py-0.5 dark:bg-pink-500/25"
className="flex items-center justify-center space-x-1.5 rounded-full bg-pink-300 px-2 py-0.5 font-title dark:bg-pink-500/25"
href="https://alistair.blog"
target="_blank"
rel="noopener noreferrer"
>
writing ↗️
<span>writing</span>
<span>
<FiArrowUpRight />
</span>
</Link>
</div>

Expand Down Expand Up @@ -165,7 +168,7 @@ export default function Home(props: Props) {
<span aria-hidden className="px-6 pt-6">
<span className="flex justify-between">
<SiGithub className="text-3xl" />
<HiOutlineExternalLink className="text-xl opacity-50 transition duration-500 group-hover:opacity-100" />
<FiArrowUpRight className="text-xl opacity-50 transition duration-500 group-hover:opacity-100" />
</span>
</span>

Expand Down Expand Up @@ -197,7 +200,7 @@ export default function Home(props: Props) {
<span className="flex flex-1 flex-col justify-between p-6 text-white">
<span className="flex justify-between">
<SiSpotify className="text-2xl" />
<HiOutlineExternalLink className="text-xl opacity-50 transition duration-500 group-hover:opacity-100" />
<FiArrowUpRight className="text-xl opacity-50 transition duration-500 group-hover:opacity-100" />
</span>

<div className="space-y-0.5">
Expand Down Expand Up @@ -227,7 +230,7 @@ export default function Home(props: Props) {
<span className="flex flex-1 flex-col justify-between p-6 text-white">
<span className="flex justify-between">
<SiSpotify className="text-2xl" />
<HiOutlineExternalLink className="text-xl opacity-50 transition duration-500 group-hover:opacity-100" />
<FiArrowUpRight className="text-xl opacity-50 transition duration-500 group-hover:opacity-100" />
</span>

<span>
Expand Down

1 comment on commit 4ad0fa1

@vercel
Copy link

@vercel vercel bot commented on 4ad0fa1 Sep 20, 2023

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.