diff --git a/app/[locale]/layout.tsx b/app/[locale]/layout.tsx index c700dcb..cb6d1c1 100644 --- a/app/[locale]/layout.tsx +++ b/app/[locale]/layout.tsx @@ -34,10 +34,10 @@ export async function generateMetadata({ icons: { icon: [ { url: "/favicon.ico", sizes: "any" }, - { url: "/logo/logo.jpeg", type: "image/jpeg" }, + { url: "/logo/logo.png", type: "image/jpeg" }, ], shortcut: "/favicon.ico", - apple: "/logo/logo.jpeg", + apple: "/logo/logo.png", }, authors: [{ name: "Poyraz Avsever" }], creator: "Poyraz Avsever", @@ -51,7 +51,7 @@ export async function generateMetadata({ description: description, images: [ { - url: "/logo/logo.jpeg", + url: "/logo/logo.png", width: 1200, height: 1200, alt: "Poyraz Avsever Logo", @@ -62,7 +62,7 @@ export async function generateMetadata({ card: "summary_large_image", title: title, description: description, - images: ["/logo/logo.jpeg"], + images: ["/logo/logo.png"], creator: "@poyrazavsever", }, keywords: [ diff --git a/components/blog-content.tsx b/components/blog-content.tsx index c8661e4..f377516 100644 --- a/components/blog-content.tsx +++ b/components/blog-content.tsx @@ -146,7 +146,7 @@ export function BlogContent({ data }: BlogContentProps) { readTime={post.readTime} href={post.href} className="rounded-sm border-border [&_h3]:line-clamp-2 [&_h3]:min-h-[2.5rem] [&_p]:line-clamp-3" - author={{ name: post.author, avatar: "/logo/logo.jpeg" }} + author={{ name: post.author, avatar: "/logo/logo.png" }} /> ))} diff --git a/components/json-ld.tsx b/components/json-ld.tsx index 89bc244..06f3c6b 100644 --- a/components/json-ld.tsx +++ b/components/json-ld.tsx @@ -11,7 +11,7 @@ export type PersonJsonLdProps = { export function PersonJsonLd({ name, url = SITE_URL, - image = `${SITE_URL}/logo/logo.jpeg`, + image = `${SITE_URL}/logo/logo.png`, jobTitle = "Fullstack Developer", sameAs = [], }: PersonJsonLdProps) { @@ -68,7 +68,7 @@ export function ArticleJsonLd({ name: authorName, logo: { "@type": "ImageObject", - url: `${SITE_URL}/logo/logo.jpeg`, + url: `${SITE_URL}/logo/logo.png`, }, }, }; diff --git a/components/links-content.tsx b/components/links-content.tsx index ef8ecdf..8b0b251 100644 --- a/components/links-content.tsx +++ b/components/links-content.tsx @@ -116,7 +116,7 @@ export function LinksContent() {
- + PA diff --git a/components/media-kit-content.tsx b/components/media-kit-content.tsx index e211e51..02b75c4 100644 --- a/components/media-kit-content.tsx +++ b/components/media-kit-content.tsx @@ -185,7 +185,7 @@ export function MediaKitContent({ locale }: { locale: MediaKitLocale }) {
Poyraz Avsever