Skip to content

Commit

Permalink
add cringe ass logo text mweheh
Browse files Browse the repository at this point in the history
  • Loading branch information
ridhozhr10 committed May 16, 2024
1 parent 32a7f69 commit b2fd3fa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/about/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const metadata = {

export default function About() {
return (
<BaseLayout>
<BaseLayout logoText="whoami">
<main>
<h1 className="text-5xl">Coming Soon</h1>
</main>
Expand Down
2 changes: 1 addition & 1 deletion src/app/cv/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const metadata = {

export default function CV() {
return (
<BaseLayout>
<BaseLayout logoText="cat ~/Documents/CV.md">
<main>
<h1 className="text-5xl">Coming Soon</h1>
</main>
Expand Down
2 changes: 1 addition & 1 deletion src/app/posts/[...path]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default async function Post({ params }: Props) {

const content = await mdToHtml(post.content);
return (
<BaseLayout>
<BaseLayout logoText="cat ./content.txt | less ">
<main className="post">
<BlogPost content={content} title={post.title} />
</main>
Expand Down
2 changes: 1 addition & 1 deletion src/app/posts/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const metadata = {

export default function Posts() {
return (
<BaseLayout>
<BaseLayout logoText="cd /Documents/posts">
<main>
<h1 className="text-5xl">Coming Soon</h1>
</main>
Expand Down

0 comments on commit b2fd3fa

Please sign in to comment.