taking out features and all but links working and done basically

This commit is contained in:
talksik
2022-01-20 03:39:19 -08:00
parent 0be2acb6fc
commit 1b69b1708f
+15 -9
View File
@@ -13,12 +13,15 @@ import Rooms from "../components/demo/Rooms";
import MainLogo from "../components/MainLogo"; import MainLogo from "../components/MainLogo";
import { Divider } from "antd"; import { Divider } from "antd";
import { useRouter } from "next/router";
export default function Home() { export default function Home() {
const handleGetDemo = () => { const handleGetDemo = () => {
window.open("https://calendly.com/usenirvana/30min", "_blank"); window.open("https://calendly.com/usenirvana/30min", "_blank");
}; };
const router = useRouter();
const getStartedButton = ( const getStartedButton = (
<button <button
onClick={handleGetDemo} onClick={handleGetDemo}
@@ -36,12 +39,12 @@ export default function Home() {
<div className="flex flex-row py-5 px-5 items-center justify-start mx-auto"> <div className="flex flex-row py-5 px-5 items-center justify-start mx-auto">
<MainLogo className="mr-auto text-3xl" /> <MainLogo className="mr-auto text-3xl" />
<span className="flex flex-row space-x-5 items-center"> <span className="flex flex-row space-x-5 items-center">
<span className="font-bold underline decoration-slate-400 underline-offset-4"> <button
Home onClick={() => router.push("/teams")}
</span> className="ml-auto text-gray-500 mr-2"
<span className="text-gray-500">Features</span> >
<span className="text-gray-500 border-r-2 pr-5">Pricing</span> Log In
<span className="ml-auto text-gray-500 mr-5">Log In</span> </button>
{getStartedButton} {getStartedButton}
</span> </span>
</div> </div>
@@ -80,9 +83,12 @@ export default function Home() {
</span> </span>
<span className="flex flex-row space-x-2"> <span className="flex flex-row space-x-2">
<button className="rounded text-teal-600 p-2 shadow-l flex flex-row items-center space-x-2"> <a
<span>Features</span> href="mailto:[email protected]?subject=Interested in Nirvana for Startups"
</button> className="rounded text-teal-600 p-2 shadow-l flex flex-row items-center space-x-2"
>
Email Us
</a>
{getStartedButton} {getStartedButton}
</span> </span>
</div> </div>