a.dding layout and navigation good structure
This commit is contained in:
@@ -0,0 +1,139 @@
|
||||
import Link from "next/link";
|
||||
import { useRouter } from "next/router";
|
||||
import { useState } from "react";
|
||||
import { FaAngleRight } from "react-icons/fa";
|
||||
import { useAuth } from "../../contexts/authContext";
|
||||
import MainLogo from "../MainLogo";
|
||||
|
||||
enum LandingPageNavigation {
|
||||
home = "/",
|
||||
features = "/features",
|
||||
useCases = "/usecases",
|
||||
pricing = "/pricing",
|
||||
philosophy = "/philosophy",
|
||||
}
|
||||
|
||||
export default function LangingPageLayout({ children }) {
|
||||
const { currUser } = useAuth();
|
||||
const router = useRouter();
|
||||
|
||||
const [loading, setLoading] = useState(false);
|
||||
|
||||
const currPage = router.pathname;
|
||||
console.log(currPage);
|
||||
|
||||
function handleLogin() {
|
||||
setLoading(true);
|
||||
router.push("/teams");
|
||||
}
|
||||
|
||||
const handleGetDemo = () => {
|
||||
window.open("https://calendly.com/usenirvana/30min", "_blank");
|
||||
};
|
||||
const getStartedButton = (
|
||||
<button
|
||||
onClick={handleGetDemo}
|
||||
className="rounded font-semibold bg-teal-600 p-2 text-white shadow-lg flex flex-row items-center space-x-2"
|
||||
>
|
||||
<span>Get Demo</span>
|
||||
<FaAngleRight />
|
||||
</button>
|
||||
);
|
||||
|
||||
return (
|
||||
<div className="landing-page-bg bg-left-bottom bg-fixed bg-cover bg-no-repeat min-h-screen">
|
||||
<div className="container mx-auto md:pb-10 px-5 lg:px-20">
|
||||
{/* header */}
|
||||
<div className="flex flex-row py-5 px-5 items-center justify-start mx-auto">
|
||||
<MainLogo className="mr-auto text-3xl" />
|
||||
<span className="flex flex-row space-x-5 items-center">
|
||||
<span
|
||||
onClick={() => window.open("/", "_self")}
|
||||
className={`text-gray-500 hover:text-teal-600 hover:cursor-pointer ${
|
||||
currPage == LandingPageNavigation.home
|
||||
? "text-teal-600 underline underline-offset-4"
|
||||
: ""
|
||||
}`}
|
||||
>
|
||||
Home
|
||||
</span>
|
||||
|
||||
<a
|
||||
href="/features"
|
||||
className={`text-gray-500 hover:text-teal-600 hover:cursor-pointer ${
|
||||
currPage == LandingPageNavigation.features
|
||||
? "text-teal-600 underline underline-offset-4"
|
||||
: ""
|
||||
}`}
|
||||
>
|
||||
Features
|
||||
</a>
|
||||
<a
|
||||
href="/usecases"
|
||||
className={`text-gray-500 hover:text-teal-600 hover:cursor-pointer ${
|
||||
currPage == LandingPageNavigation.useCases
|
||||
? "text-teal-600 underline underline-offset-4"
|
||||
: ""
|
||||
}`}
|
||||
>
|
||||
Use Cases
|
||||
</a>
|
||||
|
||||
<a
|
||||
href="/pricing"
|
||||
className={`text-gray-500 hover:text-teal-600 hover:cursor-pointer ${
|
||||
currPage == LandingPageNavigation.pricing
|
||||
? "text-teal-600 underline underline-offset-4"
|
||||
: ""
|
||||
}`}
|
||||
>
|
||||
Pricing
|
||||
</a>
|
||||
<a
|
||||
href="/philosophy"
|
||||
className={`text-gray-500 border-r-gray-400 border-r-2 pr-5 hover:text-teal-600 hover:cursor-pointer ${
|
||||
currPage == LandingPageNavigation.philosophy
|
||||
? "text-teal-600 underline underline-offset-4"
|
||||
: ""
|
||||
}`}
|
||||
>
|
||||
Philosophy
|
||||
</a>
|
||||
|
||||
{currUser ? (
|
||||
<>
|
||||
<span className="text-gray-500">Welcome back!</span>
|
||||
<button
|
||||
onClick={() => window.open("/teams", "_self")}
|
||||
className="rounded font-semibold bg-gray-200 p-2 text-teal-600 shadow-lg flex flex-row items-center space-x-2"
|
||||
>
|
||||
Continue
|
||||
</button>
|
||||
</>
|
||||
) : (
|
||||
<>
|
||||
<button
|
||||
onClick={handleLogin}
|
||||
className="ml-auto text-gray-500 hidden md:block"
|
||||
>
|
||||
Log In
|
||||
</button>
|
||||
|
||||
<button
|
||||
onClick={handleLogin}
|
||||
className="rounded font-semibold bg-gray-200 p-2 text-teal-600 shadow-lg flex flex-row items-center space-x-2"
|
||||
>
|
||||
<span>Sign Up</span>
|
||||
</button>
|
||||
</>
|
||||
)}
|
||||
|
||||
{getStartedButton}
|
||||
</span>
|
||||
</div>
|
||||
|
||||
{children}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
+287
-341
@@ -26,10 +26,9 @@ import { useRouter } from "next/router";
|
||||
import { useState } from "react";
|
||||
import SkeletonLoader from "../components/Loading/skeletonLoader";
|
||||
import { useAuth } from "../contexts/authContext";
|
||||
import LangingPageLayout from "../components/Layouts/LandingPageLayout";
|
||||
|
||||
export default function Home() {
|
||||
const { currUser } = useAuth();
|
||||
|
||||
const handleGetDemo = () => {
|
||||
window.open("https://calendly.com/usenirvana/30min", "_blank");
|
||||
};
|
||||
@@ -52,383 +51,330 @@ export default function Home() {
|
||||
return <SkeletonLoader />;
|
||||
}
|
||||
|
||||
function handleLogin() {
|
||||
setLoading(true);
|
||||
router.push("/teams");
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="landing-page-bg bg-left-bottom bg-fixed bg-cover bg-no-repeat">
|
||||
<div className="container mx-auto md:pb-10 px-5 lg:px-20">
|
||||
{/* header */}
|
||||
<div className="flex flex-row py-5 px-5 items-center justify-start mx-auto">
|
||||
<MainLogo className="mr-auto text-3xl" />
|
||||
<span className="flex flex-row space-x-5 items-center">
|
||||
<span className="text-gray-700 underline underline-offset-4">
|
||||
Home
|
||||
</span>
|
||||
<a
|
||||
href="/philosophy"
|
||||
className="text-gray-500 border-r-gray-400 border-r-2 pr-5"
|
||||
>
|
||||
Philosophy
|
||||
</a>
|
||||
|
||||
{currUser ? (
|
||||
<>
|
||||
<span className="text-gray-500">Welcome back!</span>
|
||||
<button
|
||||
onClick={() => window.open("/teams", "_self")}
|
||||
className="rounded font-semibold bg-gray-200 p-2 text-teal-600 shadow-lg flex flex-row items-center space-x-2"
|
||||
>
|
||||
Continue
|
||||
</button>
|
||||
</>
|
||||
) : (
|
||||
<>
|
||||
<button
|
||||
onClick={handleLogin}
|
||||
className="ml-auto text-gray-500 hidden md:block"
|
||||
>
|
||||
Log In
|
||||
</button>
|
||||
|
||||
<button
|
||||
onClick={handleLogin}
|
||||
className="rounded font-semibold bg-gray-200 p-2 text-teal-600 shadow-lg flex flex-row items-center space-x-2"
|
||||
>
|
||||
<span>Sign Up</span>
|
||||
</button>
|
||||
</>
|
||||
)}
|
||||
|
||||
{getStartedButton}
|
||||
<LangingPageLayout>
|
||||
{/* above fold main */}
|
||||
<span className="flex flex-col justify-evenly items-center backdrop-blur-xl rounded-lg p-5">
|
||||
<span className="flex flex-row text-left md:text-6xl text-5xl space-x-5 h-[5rem] overflow-hidden">
|
||||
<span className="font-semibold text-black py-4">No</span>
|
||||
<span className="md:hidden flex flex-row space-x-2 py-4 text-red-600">
|
||||
<FaSlackHash /> <span>slacking</span>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
{/* above fold main */}
|
||||
<span className="flex flex-col justify-evenly items-center backdrop-blur-xl rounded-lg p-5">
|
||||
<span className="flex flex-row text-left md:text-6xl text-5xl space-x-5 h-[5rem] overflow-hidden">
|
||||
<span className="font-semibold text-black py-4">No</span>
|
||||
<span className="md:hidden flex flex-row space-x-2 py-4 text-red-600">
|
||||
<span className="hidden flippingWords md:visible md:flex flex-col space-y-5 text-red-600 ">
|
||||
<span className="flex flex-row space-x-2">
|
||||
<FaRocketchat /> <span>threads</span>
|
||||
</span>
|
||||
<span className="flex flex-row space-x-2">
|
||||
<FaSlackHash /> <span>slacking</span>
|
||||
</span>
|
||||
<span className="hidden flippingWords md:visible md:flex flex-col space-y-5 text-red-600 ">
|
||||
<span className="flex flex-row space-x-2">
|
||||
<FaRocketchat /> <span>threads</span>
|
||||
</span>
|
||||
<span className="flex flex-row space-x-2">
|
||||
<FaSlackHash /> <span>slacking</span>
|
||||
</span>
|
||||
<span className="flex flex-row space-x-2">
|
||||
<FaCalendarAlt /> <span>calendars</span>
|
||||
</span>
|
||||
<span className="flex flex-row space-x-2">
|
||||
<FaNewspaper /> <span>files</span>
|
||||
</span>
|
||||
<span className="flex flex-row space-x-2">
|
||||
<FaRocketchat /> <span>threads</span>
|
||||
</span>
|
||||
<span className="flex flex-row space-x-2">
|
||||
<FaCalendarAlt /> <span>calendars</span>
|
||||
</span>
|
||||
<span className="flex flex-row space-x-2">
|
||||
<FaNewspaper /> <span>files</span>
|
||||
</span>
|
||||
<span className="flex flex-row space-x-2">
|
||||
<FaRocketchat /> <span>threads</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="flex flex-row text-left md:text-6xl text-5xl space-x-5">
|
||||
<span className="font-semibold text-black">More</span>
|
||||
<span className="text-sky-600 font-bold">focus.</span>
|
||||
</span>
|
||||
|
||||
<span className="my-10 text-xl text-center text-gray-600 w-max">
|
||||
Minimal, voice-only collaboration tool for scrum/agile teams.
|
||||
<br></br>
|
||||
Skip slack and email, just talk to your team.
|
||||
</span>
|
||||
|
||||
<span className="flex flex-row space-x-2">
|
||||
<button
|
||||
onClick={() =>
|
||||
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
|
||||
</button>
|
||||
{getStartedButton}
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="flex w-full justify-evenly">
|
||||
<span className="flex flex-row text-left md:text-6xl text-5xl space-x-5">
|
||||
<span className="font-semibold text-black">More</span>
|
||||
<span className="text-sky-600 font-bold">focus.</span>
|
||||
</span>
|
||||
|
||||
<span className="my-10 text-xl text-center text-gray-600 w-max">
|
||||
Minimal, voice-only collaboration tool for scrum/agile teams.
|
||||
<br></br>
|
||||
Skip slack and email, just talk to your team.
|
||||
</span>
|
||||
|
||||
<span className="flex flex-row space-x-2">
|
||||
<button
|
||||
onClick={() =>
|
||||
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
|
||||
</button>
|
||||
{getStartedButton}
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="flex w-full justify-evenly">
|
||||
<img
|
||||
src="/screenshots/frame_safari_dark.png"
|
||||
className="h-[80rem] w-[85rem]"
|
||||
/>
|
||||
</span>
|
||||
|
||||
{/* voice line section */}
|
||||
<span className="flex flex-row py-32">
|
||||
<span className="flex flex-col grow max-w-sm rounded-lg shadow-lg bg-gray-200 bg-opacity-40 backdrop-blur-xl p-10">
|
||||
<span className="bg-clip-text text-transparent bg-gradient-to-r from-pink-500 to-violet-500">
|
||||
VOICE LINE
|
||||
</span>
|
||||
|
||||
<span className="text-left text-3xl text-gray-700 font-bold">
|
||||
Move 10x <span className="text-teal-600">Faster.</span>
|
||||
</span>
|
||||
|
||||
<span className="text-left text-lg text-gray-700"></span>
|
||||
|
||||
<Divider />
|
||||
|
||||
{/* checkmarks of value add */}
|
||||
<span className="flex flex-row items-center space-x-2">
|
||||
<FaCheck className="text-teal-500" />
|
||||
<span className="text-left text-lg text-gray-600">
|
||||
{"Asynchronous."}
|
||||
</span>
|
||||
<Tooltip
|
||||
title={
|
||||
"If you send a voice clip to someone, and they are online, they hear you instantly without changing tabs/windows."
|
||||
}
|
||||
>
|
||||
<FaInfoCircle className="text-lg text-teal-500 animate-bounce" />
|
||||
</Tooltip>
|
||||
</span>
|
||||
|
||||
<span className="flex flex-row items-center space-x-2">
|
||||
<FaCheck className="text-teal-500" />
|
||||
<span className="text-left text-lg text-gray-600">
|
||||
{"NO low-quality chatter."}
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="flex flex-row items-center space-x-2">
|
||||
<FaCheck className="text-teal-500" />
|
||||
<span className="text-left text-lg text-gray-600">
|
||||
{"Clearer communication."}{" "}
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<Divider />
|
||||
|
||||
<span className="text-left text-md text-gray-600">
|
||||
{
|
||||
"An experience as if your team was across the table. And it's still"
|
||||
}
|
||||
<span className="text-teal-600"> asynchronous.</span>
|
||||
</span>
|
||||
<br></br>
|
||||
<span className="text-left text-md text-gray-600">
|
||||
No more days of{" "}
|
||||
<span className="text-orange-500">back and forth texting</span> for
|
||||
complex, technical issues.
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="flex flex-row justify-end relative items-baseline flex-1 md:flex hidden">
|
||||
<VoiceLineConceptDemo />
|
||||
</span>
|
||||
</span>
|
||||
|
||||
{/* bond/team/collaborate section */}
|
||||
<span className="flex flex-row items-center py-20">
|
||||
<span className="flex-1 flex flex-row flex-wrap backdrop-blur-md p-10 rounded">
|
||||
{/* illustration of collaborating */}
|
||||
<img
|
||||
src="/screenshots/frame_safari_dark.png"
|
||||
className="h-[80rem] w-[85rem]"
|
||||
src="/illustrations/undraw_team_collaboration_re_ow29.svg"
|
||||
className="h-[20rem] shrink-0"
|
||||
/>
|
||||
</span>
|
||||
{/* description text */}
|
||||
<span className="text-left flex flex-col grow max-w-lg shadow-lg rounded-lg bg-gray-200 bg-opacity-40 backdrop-blur-xl p-10">
|
||||
<span className="bg-clip-text text-transparent bg-gradient-to-r from-pink-500 to-violet-500">
|
||||
TEAM
|
||||
</span>
|
||||
<span className="text-3xl text-gray-700 font-bold">
|
||||
Bond & Collaborate{" "}
|
||||
<span className="text-teal-600">Seamlessly.</span>
|
||||
</span>
|
||||
<span className="text-lg text-gray-700"></span>
|
||||
<Divider />
|
||||
{/* checkmarks of value add */}
|
||||
<span className="flex flex-row items-baseline space-x-2">
|
||||
<FaCheck className="text-teal-500 text-md shrink-0" />
|
||||
|
||||
{/* voice line section */}
|
||||
<span className="flex flex-row py-32">
|
||||
<span className="flex flex-col grow max-w-sm rounded-lg shadow-lg bg-gray-200 bg-opacity-40 backdrop-blur-xl p-10">
|
||||
<span className="bg-clip-text text-transparent bg-gradient-to-r from-pink-500 to-violet-500">
|
||||
VOICE LINE
|
||||
</span>
|
||||
|
||||
<span className="text-left text-3xl text-gray-700 font-bold">
|
||||
Move 10x <span className="text-teal-600">Faster.</span>
|
||||
</span>
|
||||
|
||||
<span className="text-left text-lg text-gray-700"></span>
|
||||
|
||||
<Divider />
|
||||
|
||||
{/* checkmarks of value add */}
|
||||
<span className="flex flex-row items-center space-x-2">
|
||||
<FaCheck className="text-teal-500" />
|
||||
<span className="text-left text-lg text-gray-600">
|
||||
{"Asynchronous."}
|
||||
<span className="flex flex-col">
|
||||
<span className="flex flex-row items-center space-x-2">
|
||||
<span className="text-left text-lg text-gray-600">
|
||||
{"Spontaneous Conversations."}
|
||||
</span>
|
||||
</span>
|
||||
<Tooltip
|
||||
title={
|
||||
"If you send a voice clip to someone, and they are online, they hear you instantly without changing tabs/windows."
|
||||
}
|
||||
>
|
||||
<FaInfoCircle className="text-lg text-teal-500 animate-bounce" />
|
||||
</Tooltip>
|
||||
</span>
|
||||
|
||||
<span className="flex flex-row items-center space-x-2">
|
||||
<FaCheck className="text-teal-500" />
|
||||
<span className="text-left text-lg text-gray-600">
|
||||
{"NO low-quality chatter."}
|
||||
<span className="text-sm text-gray-500">
|
||||
{"No more 'let's find a time to discuss...'"}
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="flex flex-row items-center space-x-2">
|
||||
<FaCheck className="text-teal-500" />
|
||||
<span className="text-left text-lg text-gray-600">
|
||||
{"Clearer communication."}{" "}
|
||||
<span className="flex flex-row items-baseline space-x-2">
|
||||
<FaCheck className="text-teal-500 text-md shrink-0" />
|
||||
|
||||
<span className="flex flex-col">
|
||||
<span className="flex flex-row items-center space-x-2">
|
||||
<span className="text-left text-lg text-gray-600">
|
||||
{"Cross Collaborate."}
|
||||
</span>
|
||||
</span>
|
||||
<span className="text-sm text-gray-500">
|
||||
{"Glance all of the conversations going on in your team."}
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<Divider />
|
||||
<Divider />
|
||||
|
||||
<span className="text-left text-md text-gray-600">
|
||||
{
|
||||
"An experience as if your team was across the table. And it's still"
|
||||
<span className="text-md text-gray-600">
|
||||
Work in the{" "}
|
||||
<Tooltip
|
||||
title={
|
||||
"Nirvana voice-only rooms to hang out and code, create, ideate..."
|
||||
}
|
||||
<span className="text-teal-600"> asynchronous.</span>
|
||||
</span>
|
||||
<br></br>
|
||||
<span className="text-left text-md text-gray-600">
|
||||
No more days of{" "}
|
||||
<span className="text-orange-500">back and forth texting</span>{" "}
|
||||
for complex, technical issues.
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="flex flex-row justify-end relative items-baseline flex-1 md:flex hidden">
|
||||
<VoiceLineConceptDemo />
|
||||
</span>
|
||||
</span>
|
||||
|
||||
{/* bond/team/collaborate section */}
|
||||
<span className="flex flex-row items-center py-20">
|
||||
<span className="flex-1 flex flex-row flex-wrap backdrop-blur-md p-10 rounded">
|
||||
{/* illustration of collaborating */}
|
||||
<img
|
||||
src="/illustrations/undraw_team_collaboration_re_ow29.svg"
|
||||
className="h-[20rem] shrink-0"
|
||||
/>
|
||||
</span>
|
||||
{/* description text */}
|
||||
<span className="text-left flex flex-col grow max-w-lg shadow-lg rounded-lg bg-gray-200 bg-opacity-40 backdrop-blur-xl p-10">
|
||||
<span className="bg-clip-text text-transparent bg-gradient-to-r from-pink-500 to-violet-500">
|
||||
TEAM
|
||||
</span>
|
||||
<span className="text-3xl text-gray-700 font-bold">
|
||||
Bond & Collaborate{" "}
|
||||
<span className="text-teal-600">Seamlessly.</span>
|
||||
</span>
|
||||
<span className="text-lg text-gray-700"></span>
|
||||
<Divider />
|
||||
{/* checkmarks of value add */}
|
||||
<span className="flex flex-row items-baseline space-x-2">
|
||||
<FaCheck className="text-teal-500 text-md shrink-0" />
|
||||
|
||||
<span className="flex flex-col">
|
||||
<span className="flex flex-row items-center space-x-2">
|
||||
<span className="text-left text-lg text-gray-600">
|
||||
{"Spontaneous Conversations."}
|
||||
</span>
|
||||
</span>
|
||||
<span className="text-sm text-gray-500">
|
||||
{"No more 'let's find a time to discuss...'"}
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="flex flex-row items-baseline space-x-2">
|
||||
<FaCheck className="text-teal-500 text-md shrink-0" />
|
||||
|
||||
<span className="flex flex-col">
|
||||
<span className="flex flex-row items-center space-x-2">
|
||||
<span className="text-left text-lg text-gray-600">
|
||||
{"Cross Collaborate."}
|
||||
</span>
|
||||
</span>
|
||||
<span className="text-sm text-gray-500">
|
||||
{"Glance all of the conversations going on in your team."}
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<Divider />
|
||||
|
||||
<span className="text-md text-gray-600">
|
||||
Work in the{" "}
|
||||
<Tooltip
|
||||
title={
|
||||
"Nirvana voice-only rooms to hang out and code, create, ideate..."
|
||||
}
|
||||
>
|
||||
<span className="text-teal-600">
|
||||
'corner' office room
|
||||
</span>{" "}
|
||||
<FaInfoCircle className="text-sm text-teal-500 inline animate-bounce" />
|
||||
</Tooltip>{" "}
|
||||
with your closest teammates throughout the day.
|
||||
</span>
|
||||
<span className="text-md text-gray-600">
|
||||
Have lunch in the 'kitchen' with your team.
|
||||
</span>
|
||||
<span className="text-md text-gray-600">
|
||||
Connect in seconds, resolve matters in minutes.
|
||||
</span>
|
||||
|
||||
<br></br>
|
||||
<span className="text-center">or</span>
|
||||
<br></br>
|
||||
<span className="text-md text-gray-600">
|
||||
Create more formal meeting rooms (
|
||||
<FcGoogle className="inline" /> Meet).
|
||||
>
|
||||
<span className="text-teal-600">
|
||||
{" "}
|
||||
Spontaneous, scheduled, or recurring.
|
||||
'corner' office room
|
||||
</span>{" "}
|
||||
All within Nirvana.
|
||||
</span>
|
||||
<FaInfoCircle className="text-sm text-teal-500 inline animate-bounce" />
|
||||
</Tooltip>{" "}
|
||||
with your closest teammates throughout the day.
|
||||
</span>
|
||||
<span className="text-md text-gray-600">
|
||||
Have lunch in the 'kitchen' with your team.
|
||||
</span>
|
||||
<span className="text-md text-gray-600">
|
||||
Connect in seconds, resolve matters in minutes.
|
||||
</span>
|
||||
|
||||
<br></br>
|
||||
<span className="text-center">or</span>
|
||||
<br></br>
|
||||
<span className="text-md text-gray-600">
|
||||
Create more formal meeting rooms (
|
||||
<FcGoogle className="inline" /> Meet).
|
||||
<span className="text-teal-600">
|
||||
{" "}
|
||||
Spontaneous, scheduled, or recurring.
|
||||
</span>{" "}
|
||||
All within Nirvana.
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
{/* focus on today section */}
|
||||
<span className="flex flex-row items-center py-20">
|
||||
{/* description card */}
|
||||
<span className="text-left flex flex-col grow max-w-lg shadow-lg rounded-lg bg-gray-200 bg-opacity-40 backdrop-blur-xl p-10">
|
||||
<span className="bg-clip-text text-transparent bg-gradient-to-r from-pink-500 to-violet-500">
|
||||
CLARITY
|
||||
</span>
|
||||
<span className="text-3xl text-gray-700 font-bold">
|
||||
Focus on <span className="text-teal-600">Right Now.</span>
|
||||
</span>
|
||||
<span className="text-lg text-gray-700"></span>
|
||||
{/* focus on today section */}
|
||||
<span className="flex flex-row items-center py-20">
|
||||
{/* description card */}
|
||||
<span className="text-left flex flex-col grow max-w-lg shadow-lg rounded-lg bg-gray-200 bg-opacity-40 backdrop-blur-xl p-10">
|
||||
<span className="bg-clip-text text-transparent bg-gradient-to-r from-pink-500 to-violet-500">
|
||||
CLARITY
|
||||
</span>
|
||||
<span className="text-3xl text-gray-700 font-bold">
|
||||
Focus on <span className="text-teal-600">Right Now.</span>
|
||||
</span>
|
||||
<span className="text-lg text-gray-700"></span>
|
||||
|
||||
<Divider />
|
||||
<Divider />
|
||||
|
||||
{/* checkmarks of value add */}
|
||||
<span className="flex flex-row items-baseline space-x-2">
|
||||
<FaCheck className="text-teal-500 text-md shrink-0" />
|
||||
{/* checkmarks of value add */}
|
||||
<span className="flex flex-row items-baseline space-x-2">
|
||||
<FaCheck className="text-teal-500 text-md shrink-0" />
|
||||
|
||||
<span className="flex flex-col">
|
||||
<span className="flex flex-row items-center space-x-2">
|
||||
<span className="text-left text-lg text-gray-600">
|
||||
{"Clarity of Mind."}
|
||||
</span>
|
||||
</span>
|
||||
<span className="text-sm text-gray-500">
|
||||
{"Come to work seeing only what's important today/this week."}
|
||||
<span className="flex flex-col">
|
||||
<span className="flex flex-row items-center space-x-2">
|
||||
<span className="text-left text-lg text-gray-600">
|
||||
{"Clarity of Mind."}
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="flex flex-row items-baseline space-x-2">
|
||||
<FaCheck className="text-teal-500 text-md shrink-0" />
|
||||
|
||||
<span className="flex flex-col">
|
||||
<span className="flex flex-row items-center space-x-2">
|
||||
<span className="text-left text-lg text-gray-600">
|
||||
{"Inbox Zero."}
|
||||
</span>
|
||||
</span>
|
||||
<span className="text-sm text-gray-500">
|
||||
{
|
||||
"Conversations are ephemeral like in real life. We keep you at inbox zero."
|
||||
}
|
||||
</span>
|
||||
<span className="text-sm text-gray-500">
|
||||
{"Come to work seeing only what's important today/this week."}
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<Divider />
|
||||
|
||||
<span className="text-md text-gray-600">
|
||||
Your <span className="text-orange-500">current tools</span>{" "}
|
||||
bombard you with files, notifications, scrolling, clicking,
|
||||
emojis, threads...
|
||||
</span>
|
||||
|
||||
<br></br>
|
||||
|
||||
<span className="text-md text-gray-600">
|
||||
They are designed to{" "}
|
||||
<span className="text-orange-500"> addict you, </span>and keep you
|
||||
<span className="text-orange-500"> distracted.</span>
|
||||
</span>
|
||||
</span>
|
||||
<span className="flex-1 justify-evenly flex flex-row flex-wrap backdrop-blur-md p-10 rounded">
|
||||
{/* illustration of collaborating */}
|
||||
|
||||
<span className="flex flex-row items-baseline space-x-2">
|
||||
<FaCheck className="text-teal-500 text-md shrink-0" />
|
||||
|
||||
<span className="flex flex-col">
|
||||
<span className="flex flex-row items-center space-x-2">
|
||||
<span className="text-left text-lg text-gray-600">
|
||||
{"Inbox Zero."}
|
||||
</span>
|
||||
</span>
|
||||
<span className="text-sm text-gray-500">
|
||||
{
|
||||
"Conversations are ephemeral like in real life. We keep you at inbox zero."
|
||||
}
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<Divider />
|
||||
|
||||
<span className="text-md text-gray-600">
|
||||
Your <span className="text-orange-500">current tools</span> bombard
|
||||
you with files, notifications, scrolling, clicking, emojis,
|
||||
threads...
|
||||
</span>
|
||||
|
||||
<br></br>
|
||||
|
||||
<span className="text-md text-gray-600">
|
||||
They are designed to{" "}
|
||||
<span className="text-orange-500"> addict you, </span>and keep you
|
||||
<span className="text-orange-500"> distracted.</span>
|
||||
</span>
|
||||
</span>
|
||||
<span className="flex-1 justify-evenly flex flex-row flex-wrap backdrop-blur-md p-10 rounded">
|
||||
{/* illustration of collaborating */}
|
||||
<img
|
||||
src="/illustrations/undraw_freelancer_re_irh4.svg"
|
||||
className="h-[20rem] shrink-0"
|
||||
/>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
{/* action section to get started now */}
|
||||
<span className="flex my-20 mx-auto flex-row items-center max-w-screen-md p-10 backdrop-blur-md bg-gray-200 bg-opacity-40 rounded-lg">
|
||||
<span className="flex flex-col items-start text-3xl font-bold">
|
||||
<span>Ready to Focus?</span>
|
||||
<span className="text-teal-600">{"It's now or never."}</span>
|
||||
</span>
|
||||
|
||||
<span className="ml-auto">{getStartedButton}</span>
|
||||
</span>
|
||||
|
||||
{/* customer testimonial section */}
|
||||
<span className="flex my-20 mx-auto flex-col items-center max-w-screen-lg p-10 backdrop-blur-md bg-gray-200 bg-opacity-40 rounded-lg">
|
||||
<span className="text-3xl font-bold">Our Customers</span>
|
||||
<span>
|
||||
<span className="text-teal-600">Listen</span> to what they have to
|
||||
say.
|
||||
</span>
|
||||
|
||||
{/* all voice testimonial cards */}
|
||||
<span className="flex flex-row items-center justify-evenly mt-5">
|
||||
<span className="p-5 flex flex-row items-center bg-white bg-opacity-20 rounded shadow-md">
|
||||
<img
|
||||
src="/illustrations/undraw_freelancer_re_irh4.svg"
|
||||
className="h-[20rem] shrink-0"
|
||||
src="https://lh3.googleusercontent.com/a-/AOh14GhTB6LbOqohOA3csckho3OA976yp3lMEtl2MDzbgX0=s96-c"
|
||||
className="rounded-full shadow-md h-[3rem]"
|
||||
/>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
{/* action section to get started now */}
|
||||
<span className="flex my-20 mx-auto flex-row items-center max-w-screen-md p-10 backdrop-blur-md bg-gray-200 bg-opacity-40 rounded-lg">
|
||||
<span className="flex flex-col items-start text-3xl font-bold">
|
||||
<span>Ready to Focus?</span>
|
||||
<span className="text-teal-600">{"It's now or never."}</span>
|
||||
</span>
|
||||
|
||||
<span className="ml-auto">{getStartedButton}</span>
|
||||
</span>
|
||||
|
||||
{/* customer testimonial section */}
|
||||
<span className="flex my-20 mx-auto flex-col items-center max-w-screen-lg p-10 backdrop-blur-md bg-gray-200 bg-opacity-40 rounded-lg">
|
||||
<span className="text-3xl font-bold">Our Customers</span>
|
||||
<span>
|
||||
<span className="text-teal-600">Listen</span> to what they have to
|
||||
say.
|
||||
</span>
|
||||
|
||||
{/* all voice testimonial cards */}
|
||||
<span className="flex flex-row items-center justify-evenly mt-5">
|
||||
<span className="p-5 flex flex-row items-center bg-white bg-opacity-20 rounded shadow-md">
|
||||
<img
|
||||
src="https://lh3.googleusercontent.com/a-/AOh14GhTB6LbOqohOA3csckho3OA976yp3lMEtl2MDzbgX0=s96-c"
|
||||
className="rounded-full shadow-md h-[3rem]"
|
||||
/>
|
||||
<span className="flex flex-col ml-2 mr-10">
|
||||
<span className="text-lg">Heran Patel</span>
|
||||
<span className="text-gray-400">CEO of FinityOne</span>
|
||||
</span>
|
||||
|
||||
<button className="bg-gray-500 bg-opacity-25 p-2 ml-2 rounded hover:bg-opacity-40">
|
||||
<FaPlay className="text-lg text-gray-500" />
|
||||
</button>
|
||||
<span className="flex flex-col ml-2 mr-10">
|
||||
<span className="text-lg">Heran Patel</span>
|
||||
<span className="text-gray-400">CEO of FinityOne</span>
|
||||
</span>
|
||||
|
||||
<button className="bg-gray-500 bg-opacity-25 p-2 ml-2 rounded hover:bg-opacity-40">
|
||||
<FaPlay className="text-lg text-gray-500" />
|
||||
</button>
|
||||
</span>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</span>
|
||||
</LangingPageLayout>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -2,6 +2,7 @@ import { Divider } from "antd";
|
||||
import { useRouter } from "next/router";
|
||||
import { FaAngleRight } from "react-icons/fa";
|
||||
import Rooms from "../components/demo/Rooms";
|
||||
import LangingPageLayout from "../components/Layouts/LandingPageLayout";
|
||||
|
||||
export default function Philosophy() {
|
||||
const handleGetDemo = () => {
|
||||
@@ -20,7 +21,7 @@ export default function Philosophy() {
|
||||
</button>
|
||||
);
|
||||
return (
|
||||
<>
|
||||
<LangingPageLayout>
|
||||
{/* main mission */}
|
||||
<div className="mx-auto flex flex-col items-start max-w-screen-sm rounded-lg bg-gray-200 bg-opacity-25 backdrop-blur-xl md:mt-[15rem] mt-[5rem] p-10">
|
||||
<span className="bg-clip-text text-transparent bg-gradient-to-r from-pink-500 to-violet-500">
|
||||
@@ -50,6 +51,6 @@ export default function Philosophy() {
|
||||
|
||||
<span className="ml-auto">{getStartedButton}</span>
|
||||
</span>
|
||||
</>
|
||||
</LangingPageLayout>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user