Skip to content

Commit 1e302e8

Browse files
committed
πŸ”¨ unify logo and add doc favicon
1 parent 05e7094 commit 1e302e8

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

β€Ždoc/docs/.vitepress/config.mtsβ€Ž

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ export default defineConfig({
66
title: "Nexent Doc",
77
description: "A zero-code platform for auto-generating agents β€” no orchestration, no complex drag-and-drop required.",
88

9+
// Add favicon to head
10+
head: [
11+
['link', { rel: 'icon', href: '/doc/favicon.ico' }]
12+
],
13+
914
// Ignore localhost links as they are meant for local deployment access
1015
ignoreDeadLinks: [
1116
// Ignore localhost links

β€Ždoc/docs/public/favicon.icoβ€Ž

764 KB
Binary file not shown.

β€Žfrontend/app/[locale]/layout.tsxβ€Ž

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ export async function generateMetadata(props: {
4343
},
4444
description: messages["mainPage.layout.description"],
4545
icons: {
46-
icon: "/modelengine-logo.png",
47-
shortcut: "/favicon.ico",
48-
apple: "/apple-touch-icon.png",
46+
icon: "/favicon.png",
47+
shortcut: "/favicon.png",
48+
apple: "/favicon.png",
4949
},
5050
};
5151
}
@@ -59,9 +59,6 @@ export default async function RootLayout(props: {
5959

6060
return (
6161
<html lang={locale} suppressHydrationWarning>
62-
<head>
63-
<link rel="icon" href="/modelengine-logo.png" sizes="any" />
64-
</head>
6562
<body className={inter.className}>
6663
<NextThemesProvider
6764
attribute="class"

β€Žfrontend/public/favicon.pngβ€Ž

764 KB
Loading

0 commit comments

Comments
Β (0)