import Head from "next/head"; import Image from "next/image"; import { FaSlackHash, FaNewspaper, FaCalendarAlt, FaRocketchat, FaAngleRight, FaCheck, FaInfo, FaInfoCircle, FaClock, FaLink, } from "react-icons/fa"; import { FcGoogle } from "react-icons/fc"; import { BsThreeDots } from "react-icons/bs"; 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, Tooltip } from "antd"; import { useRouter } from "next/router"; import { useState } from "react"; import SkeletonLoader from "../components/Loading/skeletonLoader"; import { useAuth } from "../contexts/authContext"; export default function Home() { const { currUser } = useAuth(); 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 */} {currUser ? ( <> Welcome back! ) : ( <> )} {getStartedButton}
{/* above fold main */} No slacking threads slacking calendars files threads More focus. Minimal, voice-only collaboration tool for scrum/agile teams.

Skip slack and email, just talk to your team.
{getStartedButton}
{/* voice line section */} VOICE LINE Move 10x Faster. {/* checkmarks of value add */} {"Asynchronous."} {"NO low-quality chatter."} {"Clearer communication."}{" "} { "An experience as if your team was across the table. And it's still" } asynchronous.

No more days of{" "} back and forth texting{" "} for complex, technical issues.
{/* bond/team/collaborate section */} {/* illustration of collaborating */} {/* description text */} TEAM Bond & Collaborate Better. {/* checkmarks of value add */} {"Spontaneous Conversations."} {"No more 'let's find a time to discuss...'"} {"Cross Collaborate."} {"Glance all of the conversations going on in your team."} Work in the{" "} 'corner' office room {" "} {" "} with your closest teammates throughout the day. Have lunch in the 'kitchen' with your team. Connect in seconds, resolve matters in minutes.

or

Create more formal meeting rooms ( Meet). {" "} Spontaneous, scheduled, or recurring. {" "} All within Nirvana.
{/* focus on today section */} {/* description card */} CLARITY Focus on Right Now. {/* checkmarks of value add */} {"Clarity of Mind."} {"Come to work seeing only what's important today/this week."} {"Inbox Zero."} { "Conversations are ephemeral like in real life. We keep you at inbox zero." } Your current tools{" "} bombard you with files, notifications, scrolling, clicking, emojis, threads...

They are designed to{" "} addict you, and keep you distracted.
{/* illustration of collaborating */}
{/* 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}
); }