Rename: OnDeck -> Horizon, update URL to horizon.seubert.cloud

- Update page title, metadata, sign-in header, nav bar brand name
- Update dev account emails from ondeck.local to horizon.local
- Update comments in permissions.ts and types/index.ts
- Update NEXTAUTH_URL to https://horizon.seubert.cloud
- Update systemd timer service URL and log path
This commit is contained in:
lorentz 2026-03-18 11:43:25 +00:00
parent 35748219ab
commit 9bb2e14151
6 changed files with 9 additions and 9 deletions

View file

@ -6,7 +6,7 @@ export default function SignInPage() {
<div className="max-w-md w-full">
<div className="bg-white shadow-xl rounded-lg p-8">
<div className="text-center mb-8">
<h1 className="text-3xl font-bold text-gray-900">OnDeck</h1>
<h1 className="text-3xl font-bold text-gray-900">Horizon</h1>
<p className="text-gray-600 mt-2">Policy Renewal Workflow Management</p>
</div>

View file

@ -15,8 +15,8 @@ const geistMono = Geist_Mono({
});
export const metadata: Metadata = {
title: "OnDeck - Policy Renewal Workflow Management",
description: "Streamline your insurance policy renewal workflow with OnDeck",
title: "Horizon - Policy Renewal Workflow Management",
description: "Streamline your insurance policy renewal workflow with Horizon",
};
export default function RootLayout({

View file

@ -45,7 +45,7 @@ export function NavBar() {
<Link href="/dashboard" className="flex items-center gap-2 font-bold text-xl">
<Shapes className="h-6 w-6 text-primary" />
<span className="bg-gradient-to-r from-primary to-blue-600 bg-clip-text text-transparent">
OnDeck
Horizon
</span>
</Link>

View file

@ -23,9 +23,9 @@ export const authOptions: NextAuthOptions = {
async authorize(credentials) {
// Development accounts - DO NOT USE IN PRODUCTION
const devAccounts = [
{ username: 'admin', password: 'admin123', name: 'Admin User', email: 'admin@ondeck.local', role: 'Admin' },
{ username: 'manager', password: 'manager123', name: 'Manager User', email: 'manager@ondeck.local', role: 'Manager' },
{ username: 'ae', password: 'ae123', name: 'Account Executive', email: 'ae@ondeck.local', role: 'Account Executive' },
{ username: 'admin', password: 'admin123', name: 'Admin User', email: 'admin@horizon.local', role: 'Admin' },
{ username: 'manager', password: 'manager123', name: 'Manager User', email: 'manager@horizon.local', role: 'Manager' },
{ username: 'ae', password: 'ae123', name: 'Account Executive', email: 'ae@horizon.local', role: 'Account Executive' },
]
const account = devAccounts.find(

View file

@ -1,5 +1,5 @@
/**
* Permission definitions for OnDeck application
* Permission definitions for Horizon application
*/
export const PERMISSIONS = {

View file

@ -1,4 +1,4 @@
// Core type definitions for OnDeck application
// Core type definitions for Horizon application
export interface User {
id: string