Files
verse-quote-app/server/plugins/auth.ts
T

17 lines
573 B
TypeScript
Raw Normal View History

2026-07-25 17:10:38 +00:00
import { createAuthPlugin } from "@agent-native/core/server";
const rawAppTitle = "Verse";
2026-07-25 17:10:38 +00:00
const appTitle = rawAppTitle === "{" + "{APP_TITLE}}" ? "Chat" : rawAppTitle;
export default createAuthPlugin({
marketing: {
appName: appTitle,
tagline: "Quotes drawn from poems — browse, search, and save your favorites.",
2026-07-25 17:10:38 +00:00
features: [
"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
],
},
});