cjo93 commited on
Commit
b8a9110
·
verified ·
1 Parent(s): 545efe6

Create src/app/relationships/page.tsx

Browse files
Files changed (1) hide show
  1. src/app/relationships/page.tsx +27 -0
src/app/relationships/page.tsx ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { ConstellationGraph } from "@/components/defrag/constellation-graph";
2
+ import { Terminal } from "lucide-react";
3
+ import Link from "next/link";
4
+
5
+ export default function RelationshipsPage() {
6
+ return (
7
+ <div className="min-h-screen bg-[#050505] text-white p-6 md:p-12">
8
+ {/* Header */}
9
+ <nav className="mb-12 flex items-center gap-4 text-xs font-mono uppercase tracking-widest text-white/30">
10
+ <Link href="/dashboard" className="hover:text-white transition-colors">Console</Link>
11
+ <span>/</span>
12
+ <span className="text-amber-500">Constellation</span>
13
+ </nav>
14
+
15
+ <div className="mb-12 space-y-2">
16
+ <h1 className="text-3xl md:text-4xl font-light tracking-tight text-white">
17
+ Constellation Architecture
18
+ </h1>
19
+ <p className="text-white/50 text-sm font-mono uppercase tracking-widest max-w-lg">
20
+ Map the unseen dynamics of your lineage. Identify friction. Invert to flow.
21
+ </p>
22
+ </div>
23
+
24
+ <ConstellationGraph />
25
+ </div>
26
+ );
27
+ }