Skip to content

Commit

Permalink
feat: add discord link
Browse files Browse the repository at this point in the history
  • Loading branch information
amanjaiman1 committed Jul 26, 2023
1 parent d4cea6c commit 82cd450
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/layout/HomeLayout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Footer from "../containers/Footer/index.jsx";
import styles from "../style";
import Button from "../components/Button";
import { useNavigate } from "react-router-dom";

import { Link } from "react-router-dom";
function HomeLayout({ children }) {
const navigate = useNavigate();
return (
Expand All @@ -13,6 +13,14 @@ function HomeLayout({ children }) {
<Button onClick={() => navigate("/login")} className={"mt-5"}>
Go to Design{" "}
</Button>

<Link
className="mt-5 underline"
target="_blank"
to={"https://discord.gg/JW9K58FBfs"}
>
Contact Team{" "}
</Link>
{/* <Header />
<main className="min-[400px]:px-10 mt-8">
<section className="container mx-auto">{children}</section>
Expand Down

0 comments on commit 82cd450

Please sign in to comment.