Skip to content

Commit

Permalink
bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ashutosh7i committed Jan 13, 2024
1 parent d0edf0c commit 58d98e4
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions client/chakra-client/src/layouts/HomePage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ import Navbar from "../components/Navbar";
import Dashboard from "../layouts/Dashboard";
import socLogo from "../assets/images/soc_logo.png";
import Signin from "../components/Authentication/SignIn";
import LoginButton from "../components/Authentication/LoginButton";

//Navbar Component
const Nav = () => {
Expand Down Expand Up @@ -420,7 +421,7 @@ export default function HomePage() {
spacing={{ base: 4, sm: 6 }}
direction={{ base: "column", sm: "row" }}
>
<Link to={"/dashboard"}>
{/* <Link to={"/dashboard"}> */}
<Button
rounded={"full"}
size={"lg"}
Expand All @@ -430,9 +431,10 @@ export default function HomePage() {
bg={"red.400"}
_hover={{ bg: "red.500" }}
>
Get started 🚀
{/* Get started 🚀 */}
<LoginButton/>
</Button>
</Link>
{/* </Link> */}
<Button
rounded={"full"}
size={"lg"}
Expand Down

0 comments on commit 58d98e4

Please sign in to comment.