Skip to content

Commit

Permalink
Merge pull request Anjaliavv51#64 from vashukashyap/fixed-Getstarted
Browse files Browse the repository at this point in the history
[fixed] Get started button is not linked
  • Loading branch information
gauravsingh1281 authored Oct 15, 2023
2 parents 1dc64de + b33562e commit ad27ba7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/Header-section/Header.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import '../Header-section/Header-section.css'
import { Link } from "react-router-dom";
import Navbar from './Navbar';
const Header = () => {
return (
Expand All @@ -8,7 +9,9 @@ const Header = () => {
<div className="header-text">
<h1>Welcome to <span>Rentalog</span></h1>
<p>Rentalog is the ultimate solution for landlords looking to simplify their rent management process. Keep track of your renters personal details, their payment history, and much more with ease.</p>
<button className='btn'>Get Started</button>
<Link to="/register">
<button className='btn'>Get Started</button>
</Link>
</div>
</div>
</>
Expand Down

0 comments on commit ad27ba7

Please sign in to comment.