Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions apps/docs/app/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion apps/docs/lib/geistdocs/metadata-title.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
describe("metadata titles", () => {
it("defines normal child title inheritance at the shared layout", () => {
expect(rootTitleMetadata).toEqual({
default: "eve – durable AI agent framework",
default: "eve, the open agent framework",
template: "%s – eve",
});
expect(metadataTitle("Integrations")).toBe("Integrations");
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/lib/geistdocs/metadata-title.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Metadata } from "next";

export const siteTitle = "eve – durable AI agent framework";
export const siteTitle = "eve, the open agent framework";
export const siteTitleTemplate = "%s – eve";

export const rootTitleMetadata = {
Expand Down
8 changes: 8 additions & 0 deletions apps/docs/lib/geistdocs/redirects.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,4 +183,12 @@ describe("all redirects", () => {
}
}
});

it("redirects the legacy favicon to the eve icon", () => {
expect(compatibilityRedirects).toContainEqual({
source: "/favicon.ico",
destination: "/icon.svg",
permanent: true,
});
});
});
1 change: 1 addition & 0 deletions apps/docs/lib/geistdocs/redirects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ export const rootMarkdownRedirects: DocsRedirect[] = [

export const compatibilityRedirects: DocsRedirect[] = [
...createIntegrationRedirects("chat-sdk-photon", "photon"),
{ source: "/favicon.ico", destination: "/icon.svg", permanent: true },
{ source: "/feed", destination: "/rss.xml", permanent: true },
{ source: "/feed.xml", destination: "/rss.xml", permanent: true },
{ source: "/guides/hooks", destination: "/docs/guides/hooks", permanent: true },
Expand Down
Loading