Skip to content

Commit

Permalink
update home
Browse files Browse the repository at this point in the history
  • Loading branch information
loganzartman committed Oct 18, 2023
1 parent c87ce4f commit ea7e050
Show file tree
Hide file tree
Showing 5 changed files with 79 additions and 16 deletions.
1 change: 0 additions & 1 deletion public/next.svg

This file was deleted.

1 change: 0 additions & 1 deletion public/vercel.svg

This file was deleted.

Binary file removed src/app/favicon.ico
Binary file not shown.
36 changes: 22 additions & 14 deletions src/app/home/Home.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
import {DM_Serif_Display} from 'next/font/google';
import Image from 'next/image';

import imgBannerAnimated from '@/app/home/banner-animated.svg';
import imgCat from '@/app/home/cat.svg';

const dmSerif = DM_Serif_Display({weight: '400', subsets: ['latin']});

export default function Home() {
return (
<div className="w-full">
Expand All @@ -20,20 +23,25 @@ export default function Home() {
className="select-none w-[calc(min(90px,max(50px,10vmax)))] transition-transform ease-[cubic-bezier(.85,.59,.6,-0.26)] duration-[4s] delay-[1s] hover:translate-y-full hover:duration-[0.2s] hover:ease-in-out hover:delay-0"
/>
</div>
<main className="mt-8 flex flex-row justify-center items-center gap-5 text-3xl">
<div>loganz</div>
<a
href="https://github.com/loganzartman"
className="transition-all duration-200 underline decoration-from-font decoration-dotted underline-offset-2 hover:underline-offset-8 hover:text-[#8080FF] hover:decoration-solid"
>
github
</a>
<a
href="https://linkedin.com/in/logan-zartman"
className="transition-all duration-200 underline decoration-from-font decoration-dotted underline-offset-2 hover:underline-offset-8 hover:text-[#8080FF] hover:decoration-solid"
>
linkedin
</a>
<main className="-mt-16 flex flex-col justify-center items-center gap-5 text-3xl">
<div className={`${dmSerif.className} text-7xl`}>
hey, i&apos;m Logan
</div>
<div className="flex flex-row gap-4">
<div>i&apos;m on:</div>
<a
href="https://github.com/loganzartman"
className="transition-all duration-200 underline decoration-from-font decoration-dotted underline-offset-2 hover:underline-offset-8 hover:text-[#8080FF] hover:decoration-solid"
>
github
</a>
<a
href="https://linkedin.com/in/logan-zartman"
className="transition-all duration-200 underline decoration-from-font decoration-dotted underline-offset-2 hover:underline-offset-8 hover:text-[#8080FF] hover:decoration-solid"
>
linkedin
</a>
</div>
</main>
</div>
);
Expand Down
57 changes: 57 additions & 0 deletions src/app/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit ea7e050

Please sign in to comment.