import Head from "next/head"; import Image from "next/image"; import { FaSlackHash, FaNewspaper, FaCalendarAlt, FaRocketchat, FaAngleRight, } from "react-icons/fa"; import TeamVoiceLine from "../components/demo/TeamVoiceLine"; import Announcements from "../components/demo/Announcements"; import Rooms from "../components/demo/Rooms"; import VoiceLineConceptDemo from "../components/demo/VoiceLineConceptDemo"; import MainLogo from "../components/MainLogo"; import { Divider } from "antd"; import { useRouter } from "next/router"; import { useState } from "react"; import SkeletonLoader from "../components/Loading/skeletonLoader"; export default function Home() { const handleGetDemo = () => { window.open("https://calendly.com/usenirvana/30min", "_blank"); }; const router = useRouter(); const [loading, setLoading] = useState(false); const getStartedButton = ( ); if (loading) { return ; } function handleLogin() { setLoading(true); router.push("/teams"); } return (
{/* header */}
{/* Home Philosophy */} {getStartedButton}
{/* above fold main */}
No slacking threads slacking calendars files threads More focus. Voice-first collaboration tool for scrum/agile teams.

Skip slack and email, just talk to your team.
{getStartedButton}
{/* main mission */}
Philosophy In today's distracted world, we mistake adding software and tools for productivity. At Nirvana, we are bringing work back to the basics. Voice first communication because voice makes us human and less is more. An experience as if your team was right next to you. <>
{/* action section */}
Ready to start working? {getStartedButton}
); }