Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
tidvn committed Oct 26, 2024
1 parent 836bd64 commit 860910f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 93 deletions.
2 changes: 1 addition & 1 deletion app/Main.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Link from '@/components/ui/link'
import Tag from '@/components/Tag'
import Tag from '@/components/common/Tag'
import siteMetadata from '@/data/siteMetadata'
import { formatDate } from 'pliny/utils/formatDate'
import NewsletterForm from 'pliny/ui/NewsletterForm'
Expand Down
6 changes: 3 additions & 3 deletions app/projects/[...slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ export async function generateMetadata({

return {
title: post.title,
description: post.summary,
description: post.description,
openGraph: {
title: post.title,
description: post.summary,
description: post.description,
siteName: siteMetadata.title,
locale: 'en_US',
type: 'article',
Expand All @@ -62,7 +62,7 @@ export async function generateMetadata({
twitter: {
card: 'summary_large_image',
title: post.title,
description: post.summary,
description: post.description,
images: imageList,
},
}
Expand Down
2 changes: 1 addition & 1 deletion app/tag-data.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "github": 1, "guide": 1 }
{"github":1,"guide":1}
88 changes: 0 additions & 88 deletions components/app/projects/components/project-card.tsx

This file was deleted.

0 comments on commit 860910f

Please sign in to comment.