2026-07-25 17:10:38 +00:00
|
|
|
import { createAuthPlugin } from "@agent-native/core/server";
|
|
|
|
|
|
2026-07-25 17:42:04 +00:00
|
|
|
const rawAppTitle = "Verse";
|
2026-07-25 17:10:38 +00:00
|
|
|
const appTitle = rawAppTitle === "{" + "{APP_TITLE}}" ? "Chat" : rawAppTitle;
|
|
|
|
|
|
|
|
|
|
export default createAuthPlugin({
|
|
|
|
|
marketing: {
|
|
|
|
|
appName: appTitle,
|
2026-07-25 17:42:04 +00:00
|
|
|
tagline: "Quotes drawn from poems — browse, search, and save your favorites.",
|
2026-07-25 17:10:38 +00:00
|
|
|
features: [
|
2026-07-25 17:42:04 +00:00
|
|
|
"Curated and community-submitted quotes from classic poems",
|
|
|
|
|
"Search and filter by poet or theme, favorite the ones you love",
|
|
|
|
|
"An agent chat that can look up, add, and organize quotes for you",
|
2026-07-25 17:10:38 +00:00
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
});
|