diff --git a/components/demo/Announcements.tsx b/components/demo/Announcements.tsx index 153221f..991b264 100644 --- a/components/demo/Announcements.tsx +++ b/components/demo/Announcements.tsx @@ -37,7 +37,7 @@ export default function Announcements(props: IVoiceDemoProps) { return (
diff --git a/components/demo/TeamVoiceLine.tsx b/components/demo/TeamVoiceLine.tsx index d07b179..2f3da43 100644 --- a/components/demo/TeamVoiceLine.tsx +++ b/components/demo/TeamVoiceLine.tsx @@ -144,7 +144,7 @@ function TeamVoiceLine(props: IVoiceDemoProps) { return (
diff --git a/pages/index.js b/pages/index.js index 78a9e37..d878e3b 100644 --- a/pages/index.js +++ b/pages/index.js @@ -15,6 +15,8 @@ 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 = () => { @@ -23,6 +25,8 @@ export default function Home() { const router = useRouter(); + const [loading, setLoading] = useState(false); + const getStartedButton = ( @@ -60,7 +73,7 @@ export default function Home() { {/* above fold main */}
- + No slacking @@ -84,29 +97,34 @@ export default function Home() { - + More focus. - + Voice-first collaboration tool for scrum/agile teams.

Skip slack and email, just talk to your team.
- + window.open( + "mailto:usenirvana@gmail.com?subject=Interested in Nirvana for Startups", + "_blank" + ) + } className="rounded text-teal-600 p-2 shadow-l flex flex-row items-center space-x-2" > Email Us - + {getStartedButton}
- +