Skip to content

Commit

Permalink
remove todos
Browse files Browse the repository at this point in the history
  • Loading branch information
Vahor committed May 1, 2024
1 parent 794da08 commit b550de7
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 24 deletions.
2 changes: 0 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,8 @@ export const metadata: Metadata = {
twitter: {
creator: "@vahor_",
card: "summary",
images: ["https://google.com"], // TODO
},
openGraph: {
images: ["https://google.com"], // TODO
locale: "fr_FR",
siteName: "Vahor",
},
Expand Down
6 changes: 3 additions & 3 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ import { UrlBadge } from "@/components/UrlBadge";
import { GithubIcon } from "@/components/icons/Github";
import { JsonLd } from "@/components/jsonld/profile-page";
import { TWITTER_PROFILE } from "@/lib/constants";
import { author } from "@/lib/jsonld";
import { profilePage } from "@/lib/jsonld";
import { allPosts } from "contentlayer/generated";

const postCount = allPosts.length;

export default function Home() {
return (
<main className="py-16 mx-auto container post-content">
<JsonLd jsonLd={author} />
<JsonLd jsonLd={profilePage} />
<h1 className="text-2xl text-black dark:text-white font-semibold mb-8">
Nathan David
</h1>
Expand Down Expand Up @@ -72,7 +72,7 @@ export default function Home() {

<section className="mt-8">
<p>
Vous pouvez me retrouver sur {/* TODO Download SVG and use it here */}
Vous pouvez me retrouver sur
<GithubIcon />{" "}
<UrlBadge
url={TWITTER_PROFILE}
Expand Down
7 changes: 0 additions & 7 deletions src/content/posts/project/pedaki/index.mdx

This file was deleted.

8 changes: 0 additions & 8 deletions src/content/posts/project/pedaki/pedaki.mdx

This file was deleted.

2 changes: 0 additions & 2 deletions src/lib/jsonld.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ import {
TWITTER_PROFILE,
} from "./constants";

// TODO: use them

export const author: Person = {
"@type": "Person",
name: "Nathan David",
Expand Down
4 changes: 2 additions & 2 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ const config = {
to: { height: "0" },
},
wiggle: {
"0%, 100%": { transform: "rotate(-3deg)" },
"50%": { transform: "rotate(3deg)" },
"0%, 100%": { transform: "rotate(-6deg)" },
"50%": { transform: "rotate(6deg)" },
},
},
animation: {
Expand Down

0 comments on commit b550de7

Please sign in to comment.