feat: updated logo
This commit is contained in:
@@ -34,10 +34,10 @@ export async function generateMetadata({
|
|||||||
icons: {
|
icons: {
|
||||||
icon: [
|
icon: [
|
||||||
{ url: "/favicon.ico", sizes: "any" },
|
{ url: "/favicon.ico", sizes: "any" },
|
||||||
{ url: "/logo/logo.jpeg", type: "image/jpeg" },
|
{ url: "/logo/logo.png", type: "image/jpeg" },
|
||||||
],
|
],
|
||||||
shortcut: "/favicon.ico",
|
shortcut: "/favicon.ico",
|
||||||
apple: "/logo/logo.jpeg",
|
apple: "/logo/logo.png",
|
||||||
},
|
},
|
||||||
authors: [{ name: "Poyraz Avsever" }],
|
authors: [{ name: "Poyraz Avsever" }],
|
||||||
creator: "Poyraz Avsever",
|
creator: "Poyraz Avsever",
|
||||||
@@ -51,7 +51,7 @@ export async function generateMetadata({
|
|||||||
description: description,
|
description: description,
|
||||||
images: [
|
images: [
|
||||||
{
|
{
|
||||||
url: "/logo/logo.jpeg",
|
url: "/logo/logo.png",
|
||||||
width: 1200,
|
width: 1200,
|
||||||
height: 1200,
|
height: 1200,
|
||||||
alt: "Poyraz Avsever Logo",
|
alt: "Poyraz Avsever Logo",
|
||||||
@@ -62,7 +62,7 @@ export async function generateMetadata({
|
|||||||
card: "summary_large_image",
|
card: "summary_large_image",
|
||||||
title: title,
|
title: title,
|
||||||
description: description,
|
description: description,
|
||||||
images: ["/logo/logo.jpeg"],
|
images: ["/logo/logo.png"],
|
||||||
creator: "@poyrazavsever",
|
creator: "@poyrazavsever",
|
||||||
},
|
},
|
||||||
keywords: [
|
keywords: [
|
||||||
|
|||||||
@@ -146,7 +146,7 @@ export function BlogContent({ data }: BlogContentProps) {
|
|||||||
readTime={post.readTime}
|
readTime={post.readTime}
|
||||||
href={post.href}
|
href={post.href}
|
||||||
className="rounded-sm border-border [&_h3]:line-clamp-2 [&_h3]:min-h-[2.5rem] [&_p]:line-clamp-3"
|
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" }}
|
||||||
/>
|
/>
|
||||||
</StaggerItem>
|
</StaggerItem>
|
||||||
))}
|
))}
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ export type PersonJsonLdProps = {
|
|||||||
export function PersonJsonLd({
|
export function PersonJsonLd({
|
||||||
name,
|
name,
|
||||||
url = SITE_URL,
|
url = SITE_URL,
|
||||||
image = `${SITE_URL}/logo/logo.jpeg`,
|
image = `${SITE_URL}/logo/logo.png`,
|
||||||
jobTitle = "Fullstack Developer",
|
jobTitle = "Fullstack Developer",
|
||||||
sameAs = [],
|
sameAs = [],
|
||||||
}: PersonJsonLdProps) {
|
}: PersonJsonLdProps) {
|
||||||
@@ -68,7 +68,7 @@ export function ArticleJsonLd({
|
|||||||
name: authorName,
|
name: authorName,
|
||||||
logo: {
|
logo: {
|
||||||
"@type": "ImageObject",
|
"@type": "ImageObject",
|
||||||
url: `${SITE_URL}/logo/logo.jpeg`,
|
url: `${SITE_URL}/logo/logo.png`,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -116,7 +116,7 @@ export function LinksContent() {
|
|||||||
<div className="px-5 pb-5 pt-0 sm:px-6 sm:pb-6">
|
<div className="px-5 pb-5 pt-0 sm:px-6 sm:pb-6">
|
||||||
<div className="-mt-14 flex flex-col gap-4">
|
<div className="-mt-14 flex flex-col gap-4">
|
||||||
<Avatar className="h-24 w-24 rounded-[28px] border-4 border-background bg-background shadow-lg sm:h-28 sm:w-28">
|
<Avatar className="h-24 w-24 rounded-[28px] border-4 border-background bg-background shadow-lg sm:h-28 sm:w-28">
|
||||||
<AvatarImage src="/logo/logo.jpeg" alt="Poyraz Avsever" />
|
<AvatarImage src="/logo/logo.png" alt="Poyraz Avsever" />
|
||||||
<AvatarFallback className="rounded-3xl bg-muted text-lg font-semibold">
|
<AvatarFallback className="rounded-3xl bg-muted text-lg font-semibold">
|
||||||
PA
|
PA
|
||||||
</AvatarFallback>
|
</AvatarFallback>
|
||||||
|
|||||||
@@ -185,7 +185,7 @@ export function MediaKitContent({ locale }: { locale: MediaKitLocale }) {
|
|||||||
<header className="flex items-center justify-between gap-4 border-b border-border pb-4">
|
<header className="flex items-center justify-between gap-4 border-b border-border pb-4">
|
||||||
<a href={`/${locale}`} className="inline-flex items-center gap-3">
|
<a href={`/${locale}`} className="inline-flex items-center gap-3">
|
||||||
<Image
|
<Image
|
||||||
src="/logo/logo.jpeg"
|
src="/logo/logo.png"
|
||||||
alt="Poyraz Avsever"
|
alt="Poyraz Avsever"
|
||||||
width={36}
|
width={36}
|
||||||
height={36}
|
height={36}
|
||||||
|
|||||||
@@ -168,7 +168,7 @@ export function SiteNavbar({ theme, onThemeChange }: SiteNavbarProps) {
|
|||||||
className="inline-flex items-center"
|
className="inline-flex items-center"
|
||||||
>
|
>
|
||||||
<Logo
|
<Logo
|
||||||
src="/logo/logo.jpeg"
|
src="/logo/logo.png"
|
||||||
alt="Poyraz Avsever"
|
alt="Poyraz Avsever"
|
||||||
width={40}
|
width={40}
|
||||||
height={40}
|
height={40}
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 508 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.1 MiB |
Reference in New Issue
Block a user