Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update on github token failuer planning to use octokit #128

Merged
merged 1 commit into from
Apr 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading