-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
35 changed files
with
126 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
20.10.0 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,10 @@ import { homeCopy, booksCopy, postsCopy } from 'config' | |
import { readMarkdownFile } from 'lib/utils/md' | ||
import Markdown from 'ui/Markdown' | ||
import Image from 'next/image' | ||
import { VscTwitter } from '@react-icons/all-files/vsc/VscTwitter' | ||
import { VscGithub } from '@react-icons/all-files/vsc/VscGithub' | ||
import { FaLinkedin } from '@react-icons/all-files/fa/FaLinkedin' | ||
import { CgArrowTopRight } from '@react-icons/all-files/cg/CgArrowTopRight' | ||
import { CgArrowRight } from '@react-icons/all-files/cg/CgArrowRight' | ||
import { VscGithub } from 'react-icons/vsc' | ||
import { FaLinkedin } from 'react-icons/fa' | ||
import { FaXTwitter } from 'react-icons/fa6' | ||
import { CgArrowTopRight } from 'react-icons/cg' | ||
import Link from 'next/link' | ||
|
||
type Project = { | ||
|
@@ -24,8 +23,8 @@ const EXTERNAL_LINKS = [ | |
}, | ||
{ | ||
label: 'X.com', | ||
url: 'https://twitter.com/altaywtf', | ||
icon: <VscTwitter />, | ||
url: 'https://x.com/altaywtf', | ||
icon: <FaXTwitter />, | ||
}, | ||
{ | ||
label: 'LinkedIn', | ||
|
@@ -111,15 +110,18 @@ const HomePage = async () => ( | |
</div> | ||
|
||
<div className="flex flex-1 flex-col"> | ||
<div className="flex flex-row items-center gap-0.5 font-medium text-amber-400 hover:text-amber-200"> | ||
<a href={item.url} target="_blank" rel="noopener noreferrer"> | ||
{item.title} | ||
</a> | ||
<a | ||
href={item.url} | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="flex flex-row items-center gap-0.5 self-start font-medium text-amber-400 hover:text-amber-200" | ||
> | ||
<span>{item.title}</span> | ||
|
||
<span className="text-sm"> | ||
<CgArrowTopRight /> | ||
</span> | ||
</div> | ||
</a> | ||
|
||
<p>{item.description}</p> | ||
</div> | ||
|
@@ -135,7 +137,10 @@ const HomePage = async () => ( | |
<div key={item.title}> | ||
<div className="flex flex-row items-center gap-3"> | ||
<div className="flex flex-1 flex-col"> | ||
<Link href={item.url} className="font-medium text-amber-400 hover:text-amber-200"> | ||
<Link | ||
href={item.url} | ||
className="self-start font-medium text-amber-400 hover:text-amber-200" | ||
> | ||
{item.title} | ||
</Link> | ||
|
||
|
@@ -152,12 +157,6 @@ const HomePage = async () => ( | |
<a className="hover:text-neutral-300" href="mailto:[email protected]"> | ||
[email protected] | ||
</a> | ||
|
||
<div className="mt-4"> | ||
<p>zebrastik, LLC</p> | ||
<p>30 N Gould St, STE 4000</p> | ||
<p>Sheridan, WY 82801</p> | ||
</div> | ||
</div> | ||
</> | ||
) | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import 'ui/theme/style.css' | ||
import { Metadata } from 'next' | ||
import { SITE_TITLE, SITE_DESCRIPTION, SITE_URL } from 'config' | ||
import { getOpenGraphImage } from 'lib/utils/openGraph' | ||
import { PropsWithChildren } from 'react' | ||
import { PathHistoryListener } from 'ui/PathHistoryListener' | ||
|
||
export const metadata: Metadata = { | ||
title: { | ||
default: SITE_TITLE, | ||
template: `%s | ${SITE_TITLE}`, | ||
}, | ||
description: SITE_DESCRIPTION, | ||
openGraph: { | ||
title: SITE_TITLE, | ||
description: SITE_DESCRIPTION, | ||
url: SITE_URL, | ||
images: getOpenGraphImage({ | ||
type: 'page', | ||
title: SITE_DESCRIPTION, | ||
}), | ||
}, | ||
} as const | ||
|
||
export default function Layout({ children }: PropsWithChildren) { | ||
return ( | ||
<> | ||
{children} | ||
<PathHistoryListener /> | ||
</> | ||
) | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import Image from 'next/image' | ||
import { zebrastikCopy } from 'config' | ||
import { Metadata } from 'next' | ||
|
||
export const metadata: Metadata = { | ||
title: 'zebrastik', | ||
description: zebrastikCopy.description, | ||
openGraph: { | ||
title: 'zebrastik', | ||
description: zebrastikCopy.description, | ||
}, | ||
} | ||
|
||
export default function Page() { | ||
return ( | ||
<section className="app-width px-4 py-8 sm:px-0"> | ||
<div className="relative h-28 w-28 overflow-hidden rounded border border-solid border-neutral-900"> | ||
<Image src="/images/zebra.jpg" alt="zebrastik logo" fill /> | ||
</div> | ||
|
||
<div className="mt-8 flex flex-col gap-2"> | ||
<h1>{zebrastikCopy.title}</h1> | ||
<p className="text-neutral-400">{zebrastikCopy.description}</p> | ||
</div> | ||
|
||
<hr className="my-8" /> | ||
|
||
<a href="mailto:[email protected]">[email protected]</a> | ||
|
||
<div className="mt-4 text-neutral-400"> | ||
<p>zebrastik, LLC</p> | ||
<p>30 N Gould St, STE 4000</p> | ||
<p>Sheridan, WY 82801</p> | ||
</div> | ||
</section> | ||
) | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters