Skip to content

Commit

Permalink
Merge pull request #128 from Riley1101/chore/update
Browse files Browse the repository at this point in the history
update on github token failuer planning to use octokit
  • Loading branch information
Riley1101 authored Apr 6, 2024
2 parents 049bfe6 + e766b11 commit 446ea61
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 10 deletions.
3 changes: 0 additions & 3 deletions app/(web)/about/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,6 @@ function AboutPage() {
</p>
</div>
</div>
<div className="md:max-w-[370px]">
<GithubFeed />
</div>
</div>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion components/common/toc/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default function TableOfContents({ value }: Props) {
<span
onClick={() => setToggle(!toggle)}
className="cursor-pointer max-w-max
py-2 rounded-md font-bold uppercase mb-2 block text-theme-primary flex items-center gap-4"
py-2 rounded-md font-bold uppercase mb-2 text-theme-primary flex items-center gap-4"
>
On this page{" "}
<ChevronDownIcon
Expand Down
1 change: 1 addition & 0 deletions components/pages/home/github/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ function PushEventCard(data: PushEvent) {

export const GithubFeed = async () => {
const data = await getGithubFeed();
console.log(data)
return (
<div className="lg:w-[90%] p-4 bg-theme-accent-opaque w-full border border-theme-primary-opaque rounded-md">
<div className="flex items-center gap-4 ">
Expand Down
16 changes: 11 additions & 5 deletions components/pages/home/intro/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,19 @@ export function Intro() {
return (
<div className="flex flex-col gap-4 mt-8">
<h1 className="text-2xl font-bold text-white">
Hello, I&apos;m <span className="text-theme-primary">Arkar</span>{" "}
👋
Hello, I&apos;m <span className="text-theme-primary">Arkar</span> 👋
</h1>
<p className="text-gray-300 leading-relaxed ">
An inspiring software engineer, Coding with a strong passion for design
and computer science, I enjoy creating amazing things and building
blazingly-fast websites.
An inspiring programmer{" "}
<a
href="https://fortune.com"
target="_blank"
className="text-theme-accent"
>
@Fortune
</a>
, Coding with a strong passion for design and computer science, I enjoy
creating amazing things and building blazingly-fast websites.
</p>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion components/pages/testimonials/Project.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export function Project({ index, data }: Props) {
href={`/projects/${slug}`}
className={cx(
"hover:bg-gradient-to-r @lg:flex-row rounded-md border border-theme-primary-opaque hover:from-theme-accent-opaque flex gap-6 cursor-pointer flex-col p-6",
isOdd ? "" : "md:flex-row-reverse "
isOdd ? "" : "md:flex-row-reverse ",
)}
>
<div>
Expand Down

0 comments on commit 446ea61

Please sign in to comment.