Skip to content

Commit c96653a

Browse files
committed
docs route fix
1 parent e07b3d3 commit c96653a

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

client/app/docs/page.tsx

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
2+
3+
export default function DocsPage() {
4+
return (
5+
<section className="flex items-center justify-center min-h-[calc(100vh-64px)] py-12 md:py-24">
6+
<Card className="w-full max-w-2xl text-left glass-effect p-6">
7+
<CardHeader className="text-center">
8+
<CardTitle className="text-4xl font-bold">Tavarn.AI Project Documentation</CardTitle>
9+
</CardHeader>
10+
<CardContent className="space-y-6 text-lg">
11+
<div>
12+
<h2 className="text-2xl font-semibold mb-2">Project Overview</h2>
13+
<p className="text-muted-foreground">
14+
Tavarn.AI is an autonomous, AI-powered marketplace for in-game assets built on the Somnia blockchain. Our platform features a dynamic economy where item prices evolve based on real-time market demand, managed by an on-chain AI agent. This creates a fair, stable, and engaging trading environment for players.
15+
</p>
16+
</div>
17+
<div>
18+
<h2 className="text-2xl font-semibold mb-2">Somnia AI Hackathon Submission</h2>
19+
<p className="text-muted-foreground">
20+
This project is our submission for the Somnia AI Hackathon, primarily targeting the <span className="font-bold text-primary">Gaming Agents</span> track. We believe it also represents a novel use case that aligns with the <span className="font-bold text-primary">Open Track</span>.
21+
</p>
22+
</div>
23+
</CardContent>
24+
</Card>
25+
</section>
26+
);
27+
}

client/components/Roadmap.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@ export function Roadmap() {
1515
<li>Frontend Scaffolding with Next.js and Tailwind CSS</li>
1616
<li>Core Marketplace UI (Buy/Sell functionality)</li>
1717
<li>Initial AI Price Model (V1)</li>
18+
<li>Real-time Price Updates with Websockets</li>
19+
1820
</ul>
1921
</div>
2022
<div>
2123
<h2 className="text-2xl font-semibold mb-2">Phase 2: Feature Expansion & UX Improvements (In Progress)</h2>
2224
<ul className="list-disc list-inside text-muted-foreground space-y-2">
2325
<li>User Profile Pages with Inventory Display</li>
24-
<li>Real-time Price Updates with Websockets</li>
2526
<li>Expanded Asset Support (More game items)</li>
2627
<li>UI/UX Polish and Mobile Responsiveness</li>
2728
</ul>

0 commit comments

Comments
 (0)