SPB Git

spb/vquant Public MIT

VibeQuant — AI-powered institutional-grade financial intelligence platform.

TypeScript 84.3% Python 11.7% JavaScript 1.6% CSS 1.5% HTML 0.7%
1.3 KB · 38 lines tsx
Raw Blame History
1/*2 * =============================================================================3 *  VibeQuant (vquant) — AI-Powered Financial Intelligence Platform4 * -----------------------------------------------------------------------------5 *  File:      client/src/pages/not-found.tsx6 *7 *  Author:    Simon-Pierre Boucher8 *  Contact:   contact@spboucher.ai9 *  Website:   https://www.spboucher.ai10 *  Demo:      https://www.vquant.ai11 *  License:   MIT (see LICENSE)12 *13 *  Copyright © 2026 Simon-Pierre Boucher. All rights reserved.14 * =============================================================================15 */1617import { Card, CardContent } from "@/components/ui/card";18import { AlertCircle } from "lucide-react";1920export default function NotFound() {21  return (22    <div className="min-h-screen w-full flex items-center justify-center bg-gray-50">23      <Card className="w-full max-w-md mx-4">24        <CardContent className="pt-6">25          <div className="flex mb-4 gap-2">26            <AlertCircle className="h-8 w-8 text-red-500" />27            <h1 className="text-2xl font-bold text-gray-900">404 Page Not Found</h1>28          </div>2930          <p className="mt-4 text-sm text-gray-600">31            Did you forget to add the page to the router?32          </p>33        </CardContent>34      </Card>35    </div>36  );37}38