From 09787926f3d6bfef468ec93eabb6e3a414a51f62 Mon Sep 17 00:00:00 2001
From: Aiden Smith <29802327+DevVoxel@users.noreply.github.com>
Date: Wed, 25 Feb 2026 08:34:43 -0500
Subject: [PATCH] Roadmap Added
---
app/page.tsx | 6 +
app/roadmap/page.tsx | 114 ++++++++++++
components/docs/sidebar.tsx | 5 +
components/roadmap-flowchart.tsx | 309 +++++++++++++++++++++++++++++++
4 files changed, 434 insertions(+)
create mode 100644 app/roadmap/page.tsx
create mode 100644 components/roadmap-flowchart.tsx
diff --git a/app/page.tsx b/app/page.tsx
index 870ceae..4c6b731 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -50,6 +50,12 @@ export default function Home() {
>
Docs
+
+ Roadmap
+
diff --git a/app/roadmap/page.tsx b/app/roadmap/page.tsx
new file mode 100644
index 0000000..0512157
--- /dev/null
+++ b/app/roadmap/page.tsx
@@ -0,0 +1,114 @@
+import type { Metadata } from "next";
+import Link from "next/link";
+import { Globe, Map, Info } from "lucide-react";
+import { ThemeToggle } from "@/components/theme-toggle";
+import { RoadmapFlowchart } from "@/components/roadmap-flowchart";
+import { Badge } from "@/components/ui/badge";
+import {
+ Card,
+ CardHeader,
+ CardTitle,
+ CardDescription,
+} from "@/components/ui/card";
+
+export const metadata: Metadata = {
+ title: "Roadmap",
+ description: "Visual roadmap and development phases for VectorDNS.",
+};
+
+export default function RoadmapPage() {
+ return (
+
+ {/* Header */}
+
+
+
+
+
+ VectorDNS
+
+
+
+
+ Docs
+
+
+ Roadmap
+
+
+
+
+
+
+
+
+ {/* Page Header */}
+
+
+
+ Project Roadmap
+
+
+ Building the Future of{" "}
+ DNS Monitoring
+
+
+ Follow our journey from foundation to a full-featured domain
+ toolkit. Drag, zoom, and explore the development phases below.
+
+
+
+ {/* Interactive Flowchart */}
+
+
+
+
+ {/* Additional Context Cards */}
+
+
+
+
+
+ Project Philosophy
+
+
+ VectorDNS is built on three core pillars: speed, accuracy, and
+ transparency. Every phase of our roadmap is designed to ensure
+ the highest quality data while maintaining a modern,
+ user-friendly experience.
+
+
+
+
+
+ Contributing
+
+ We are currently in the early development stages. If
+ you're interested in contributing to the Go DNS API or
+ the Next.js frontend, please check out our GitHub repository
+ and open an issue or PR.
+
+
+
+