Skip to content

Commit

Permalink
Merge branch 'develop' into d-1082
Browse files Browse the repository at this point in the history
  • Loading branch information
Nil2000 authored Oct 11, 2024
2 parents 048fb93 + 9f567e9 commit fbb7bb7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/(app)/articles/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ export async function generateMetadata({ params }: Props): Promise<Metadata> {
openGraph: {
description: post.excerpt,
type: "article",
images: [`/api/og?title=${encodeURIComponent(post.title)}`],
images: [`/og?title=${encodeURIComponent(post.title)}`],
siteName: "Codú",
},
twitter: {
description: post.excerpt,
images: [`/api/og?title=${encodeURIComponent(post.title)}`],
images: [`/og?title=${encodeURIComponent(post.title)}`],
},
alternates: {
canonical: post.canonicalUrl,
Expand Down
2 changes: 1 addition & 1 deletion app/(app)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const Home = async () => {
)}
</div>

<div className="mx-2">
<div className="mx-2" id={session ? "cta" : ""}>
<div className="mt-6 flex max-w-5xl items-center justify-between border-b border-b-neutral-300 pb-2 dark:border-b-neutral-600 sm:mx-auto sm:max-w-2xl lg:max-w-5xl">
<h3 className="text-3xl font-bold tracking-tight text-neutral-800 dark:text-neutral-50 sm:text-4xl">
Trending
Expand Down
File renamed without changes.

0 comments on commit fbb7bb7

Please sign in to comment.