Álvaro Valenzuela Valdes commited on
Commit ·
1ed9c25
1
Parent(s): ee5433a
style: Rename System to About and update REW agency URL
Browse files
frontend/app/page.tsx
CHANGED
|
@@ -23,7 +23,7 @@ const tabs = [
|
|
| 23 |
"Proposal Draft",
|
| 24 |
"Reports",
|
| 25 |
"History",
|
| 26 |
-
"
|
| 27 |
] as const;
|
| 28 |
|
| 29 |
type Tab = (typeof tabs)[number];
|
|
@@ -219,7 +219,7 @@ export default function HomePage() {
|
|
| 219 |
{activeTab === "Proposal Draft" && <ProposalDraft proposal={analysisResult?.proposal_draft ?? ""} />}
|
| 220 |
{activeTab === "Reports" && <Reports reportMarkdown={analysisResult?.report_markdown ?? ""} />}
|
| 221 |
{activeTab === "History" && <AnalysisHistory history={analysisHistory} />}
|
| 222 |
-
{activeTab === "
|
| 223 |
</div>
|
| 224 |
</main>
|
| 225 |
</div>
|
|
|
|
| 23 |
"Proposal Draft",
|
| 24 |
"Reports",
|
| 25 |
"History",
|
| 26 |
+
"About",
|
| 27 |
] as const;
|
| 28 |
|
| 29 |
type Tab = (typeof tabs)[number];
|
|
|
|
| 219 |
{activeTab === "Proposal Draft" && <ProposalDraft proposal={analysisResult?.proposal_draft ?? ""} />}
|
| 220 |
{activeTab === "Reports" && <Reports reportMarkdown={analysisResult?.report_markdown ?? ""} />}
|
| 221 |
{activeTab === "History" && <AnalysisHistory history={analysisHistory} />}
|
| 222 |
+
{activeTab === "About" && <SystemInfo />}
|
| 223 |
</div>
|
| 224 |
</main>
|
| 225 |
</div>
|
frontend/components/Sidebar.tsx
CHANGED
|
@@ -11,7 +11,7 @@ type SidebarTab =
|
|
| 11 |
| "Proposal Draft"
|
| 12 |
| "Reports"
|
| 13 |
| "History"
|
| 14 |
-
| "
|
| 15 |
|
| 16 |
type Props = {
|
| 17 |
tabs: readonly SidebarTab[];
|
|
|
|
| 11 |
| "Proposal Draft"
|
| 12 |
| "Reports"
|
| 13 |
| "History"
|
| 14 |
+
| "About";
|
| 15 |
|
| 16 |
type Props = {
|
| 17 |
tabs: readonly SidebarTab[];
|
frontend/components/SystemInfo.tsx
CHANGED
|
@@ -19,14 +19,14 @@ export default function SystemInfo() {
|
|
| 19 |
<div className="w-20 h-20 premium-gradient rounded-3xl flex items-center justify-center text-white font-black text-3xl mx-auto mb-8 shadow-2xl shadow-purple-500/40">
|
| 20 |
REW
|
| 21 |
</div>
|
| 22 |
-
<h2 className="text-4xl font-bold text-white mb-4 tracking-tight">
|
| 23 |
<p className="text-slate-400 max-w-2xl mx-auto text-lg leading-relaxed">
|
| 24 |
AndesOps AI is a state-of-the-art platform developed by <span className="text-white font-bold italic">REW Agency</span>.
|
| 25 |
Engineered to transform public procurement through agentic intelligence.
|
| 26 |
</p>
|
| 27 |
<div className="mt-8 flex items-center justify-center gap-6">
|
| 28 |
-
<a href="https://
|
| 29 |
-
Visit
|
| 30 |
</a>
|
| 31 |
<div className="h-6 w-px bg-white/10" />
|
| 32 |
<span className="text-xs font-bold uppercase tracking-[0.3em] text-purple-400">Powered by AndesOps</span>
|
|
|
|
| 19 |
<div className="w-20 h-20 premium-gradient rounded-3xl flex items-center justify-center text-white font-black text-3xl mx-auto mb-8 shadow-2xl shadow-purple-500/40">
|
| 20 |
REW
|
| 21 |
</div>
|
| 22 |
+
<h2 className="text-4xl font-bold text-white mb-4 tracking-tight">About AndesOps AI</h2>
|
| 23 |
<p className="text-slate-400 max-w-2xl mx-auto text-lg leading-relaxed">
|
| 24 |
AndesOps AI is a state-of-the-art platform developed by <span className="text-white font-bold italic">REW Agency</span>.
|
| 25 |
Engineered to transform public procurement through agentic intelligence.
|
| 26 |
</p>
|
| 27 |
<div className="mt-8 flex items-center justify-center gap-6">
|
| 28 |
+
<a href="https://www.rew.cl" target="_blank" className="px-6 py-3 rounded-2xl bg-white/5 border border-white/10 text-sm font-bold text-slate-300 hover:bg-white/10 transition-all">
|
| 29 |
+
Visit rew.cl
|
| 30 |
</a>
|
| 31 |
<div className="h-6 w-px bg-white/10" />
|
| 32 |
<span className="text-xs font-bold uppercase tracking-[0.3em] text-purple-400">Powered by AndesOps</span>
|