-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHome.js
More file actions
18 lines (16 loc) · 810 Bytes
/
Home.js
File metadata and controls
18 lines (16 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { Link } from 'react-router-dom';
function Home() {
return (
<div className="flex flex-col items-center justify-center min-h-screen text-center p-4">
<h2 className="text-4xl font-bold mb-4">Welcome to Flirting Singles!</h2>
<p className="mb-6 text-lg">Online dating + social networking a new approach
to finging compaionship!
</p>
<div className="space-x04">
<Link to="/signup" className="bg-pink-600 text-white px-4 py-2 rounded hover:bg-pink-700">Signup</Link>
<Link to="/login" className="bg-white border px-4 py-2 rounded text-pink-600 hover:bg-gray-100">Login</Link>
</div>
</div>
);
}
export default Home;