@defikitdotnet/x-ai-combat
Version:
XCombatAI - Social Media Engagement Template for the Agent Framework
12 lines • 915 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = NotFound;
const jsx_runtime_1 = require("react/jsx-runtime");
const link_1 = __importDefault(require("next/link"));
function NotFound() {
return ((0, jsx_runtime_1.jsxs)("div", { className: "flex flex-col items-center justify-center min-h-screen p-4", children: [(0, jsx_runtime_1.jsx)("h1", { className: "text-4xl font-bold mb-4", children: "404 - Page Not Found" }), (0, jsx_runtime_1.jsx)("p", { className: "mb-6", children: "The page you are looking for does not exist." }), (0, jsx_runtime_1.jsx)(link_1.default, { href: "/", className: "bg-blue-500 hover:bg-blue-600 text-white py-2 px-4 rounded", children: "Go back home" })] }));
}
//# sourceMappingURL=not-found.js.map