"use client"; import React from "react"; import { Card, CardContent, CardHeader, CardTitle, CardDescription } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { ExternalLink } from "lucide-react"; export default function AboutTab() { return (
About WikiRacing Navigate from one Wikipedia article to another using only hyperlinks

WikiRacing (also known as the Wikipedia Game, Wikispeedia, or WikiClick) is a game where players race to navigate from one Wikipedia article to another using only the hyperlinks within each article. The goal is to reach the target article in the fewest clicks or in the shortest time.

This implementation allows you to play against AI models or challenge yourself to find the most efficient path between articles.

How to Play

  1. Select a starting article and a target article
  2. Choose to play yourself or let an AI model play
  3. Navigate through the articles using the buttons
  4. Try to reach the target article in as few clicks as possible
); }