next
Version:
The React Framework
65 lines (62 loc) • 2.86 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "HTTPAccessErrorFallback", {
enumerable: true,
get: function() {
return HTTPAccessErrorFallback;
}
});
const _jsxruntime = require("react/jsx-runtime");
const _accesserrorstyles = require("../styles/access-error-styles");
function HTTPAccessErrorFallback({ status, message }) {
return /*#__PURE__*/ (0, _jsxruntime.jsxs)(_jsxruntime.Fragment, {
children: [
/*#__PURE__*/ (0, _jsxruntime.jsx)("title", {
children: `${status}: ${message}`
}),
/*#__PURE__*/ (0, _jsxruntime.jsx)("div", {
style: _accesserrorstyles.styles.error,
children: /*#__PURE__*/ (0, _jsxruntime.jsxs)("div", {
children: [
/*#__PURE__*/ (0, _jsxruntime.jsx)("style", {
dangerouslySetInnerHTML: {
/* Minified CSS from
body { margin: 0; color: #000; background: #fff; }
.next-error-h1 {
border-right: 1px solid rgba(0, 0, 0, .3);
}
@media (prefers-color-scheme: dark) {
body { color: #fff; background: #000; }
.next-error-h1 {
border-right: 1px solid rgba(255, 255, 255, .3);
}
}
*/ __html: `body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}`
}
}),
/*#__PURE__*/ (0, _jsxruntime.jsx)("h1", {
className: "next-error-h1",
style: _accesserrorstyles.styles.h1,
children: status
}),
/*#__PURE__*/ (0, _jsxruntime.jsx)("div", {
style: _accesserrorstyles.styles.desc,
children: /*#__PURE__*/ (0, _jsxruntime.jsx)("h2", {
style: _accesserrorstyles.styles.h2,
children: message
})
})
]
})
})
]
});
}
if ((typeof exports.default === 'function' || (typeof exports.default === 'object' && exports.default !== null)) && typeof exports.default.__esModule === 'undefined') {
Object.defineProperty(exports.default, '__esModule', { value: true });
Object.assign(exports.default, exports);
module.exports = exports.default;
}
//# sourceMappingURL=error-fallback.js.map