PluginProbe
Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO / 1.4.17
Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO v1.4.17
1.4.17 1.4.16 1.4.15 1.4.14 1.4.13 1.4.12 1.4.11 1.4.10 1.4.9 1.4.8 1.4.7 1.4.6 1.4.5 1.4.4 1.4.3 1.4.2 1.4.1 1.4.0 1.3.54 1.3.53 1.3.52 1.3.51 1.3.50 1.3.49 1.3.48 All 180 releases
disco / backend / views / components / Analytics / pages / NotFound.jsx

NotFound.jsx in Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO 1.4.17, at backend/views/components/Analytics/pages/NotFound.jsx

27 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { __ } from '@wordpress/i18n';
2 import { FileQuestion } from 'lucide-react';
3 import { Link } from 'react-router';
4
5 const NotFound = () => (
6 <div className="disco:min-h-[60vh] disco:flex disco:flex-col disco:items-center disco:justify-center disco:bg-[#f9fafb] disco:px-6 disco:py-2">
7 <FileQuestion className="disco:size-12 disco:text-[#d1d5db] disco:mb-4" />
8 <h1 className="disco:text-lg! disco:font-bold! disco:text-[#111827]! disco:tracking-tight">
9 {__('Page not found', 'disco')}
10 </h1>
11 <p className="disco:text-xs! disco:text-[#9ca3af] disco:mt-1">
12 {__(
13 "The page you're looking for doesn't exist or has been moved.",
14 'disco'
15 )}
16 </p>
17 <Link
18 to="/"
19 className="disco:mt-4 disco:inline-flex disco:items-center disco:px-3 disco:py-1.5 disco:text-xs disco:font-medium disco:text-white disco:bg-primary disco:rounded-lg disco:no-underline disco:hover:bg-primary-dark disco:hover:text-white disco:transition-colors"
20 >
21 {__('Back to Dashboard', 'disco')}
22 </Link>
23 </div>
24 );
25
26 export default NotFound;
27