-
Notifications
You must be signed in to change notification settings - Fork 828
Expand file tree
/
Copy patha.js
More file actions
36 lines (32 loc) · 1.13 KB
/
Copy patha.js
File metadata and controls
36 lines (32 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import React from "react";
import PropTypes from "prop-types";
function DarkNotfoundA(props) {
return (
<section class="bg-gray-900 text-gray-400">
<div class="container mx-auto flex flex-col justify-center items-center p-16 gap-8 text-center">
<h1 class="text-6xl font-bold text-transparent bg-clip-text bg-gradient-to-br from-pink-400 to-red-600">
404
</h1>
<p class="font-semibold text-white text-2xl">oops! page not found</p>
<p>
Meggings kinfolk echo park stumptown DIY, kale chips beard jianbing
tousled. Chambray dreamcatcher trust fund, kitsch vice godard disrupt
ramps hexagon mustache umami
</p>
<div class="flex justify-center gap-8 items-center py-4">
<button class="px-4 py-2 bg-blue-500 text-white rounded">Home</button>
<button class="px-4 py-2 bg-purple-500 text-white rounded">
Contact
</button>
</div>
</div>
</section>
);
}
DarkNotfoundA.defaultProps = {
theme: "indigo",
};
DarkNotfoundA.propTypes = {
theme: PropTypes.string.isRequired,
};
export default DarkNotfoundA;