feat: implement authentication context, admin node settings, and core layout components

This commit is contained in:
Christopher
2026-01-22 04:26:23 -08:00
parent c5f2d9c128
commit 7213f08b64
17 changed files with 698 additions and 462 deletions
+3
View File
@@ -10,6 +10,9 @@ export const nodes = pgTable('nodes', {
domain: text('domain').notNull().unique(),
name: text('name').notNull(),
description: text('description'),
longDescription: text('long_description'),
rules: text('rules'),
bannerUrl: text('banner_url'),
accentColor: text('accent_color').default('#FFFFFF'),
publicKey: text('public_key'),
createdAt: timestamp('created_at').defaultNow().notNull(),