Skip to content

Commit

Permalink
shared-contacts landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
Rishi Ayyer authored and Rishi Ayyer committed Mar 20, 2024
1 parent 3d31ac2 commit 6e1910a
Show file tree
Hide file tree
Showing 2 changed files with 118 additions and 0 deletions.
44 changes: 44 additions & 0 deletions src/pages/personal-crm.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
---
import Layout from '../layouts/layout.astro';
import Features from '../components/features.astro';
import { Picture } from '@astrojs/image/components';
import appImg from '/public/rolodex_contact.png';
import grphImg from '/public/rolodex_graph.png'
---
<div class="flex justify-between mx-auto p-4 w-full md:w-2/3">
<p class="text-2xl font-bold tracking-tight">Rolo/dex</p>
<p class="px-4 py-2 bg-black text-white text-semibold rounded-lg hidden">Join</p>
</div>

<Layout title="Rolo/dex">
<main class="mx-auto w-2/3 antialiased flex justify-center items-center text-center">
<div>
<div class="grid lg:grid-cols-2 md:my-16">
<div class="text-start space-y-4 flex flex-col justify-evenly">
<p class="text-5xl lg:text-6xl xl:text-7xl font-bold lg:tracking-tight xl:tracking-tighter">Build better relationships</p>
<p class="text-xl text-slate-600">Visualise your network and surface organic actions with your connections.</p>
<div class="flex flex-row gap-1 md:gap-4 justify-between items-center">
<a href="https://tally.so/r/merrXE" target="_blank" class="bg-black text-white font-medium rounded-lg text-sm px-2.5 md:px-5 py-2 md:py-2.5 text-center md:mr-0">
Sign up for early access
</a>
</div>
</div>
<div class="flex flex-row justify-center space-x-2 hidden md:flex">
<Picture
src={appImg}
widths={[50, 100, 200]}
sizes="(max-width: 200px) 100vw, 200px"
alt="descriptive text"
/>
<Picture
src={grphImg}
widths={[50, 100, 200]}
sizes="(max-width: 200px) 100vw, 200px"
alt="descriptive text"
/>
</div>
</div>
<Features />
</div>
</main>
</Layout>
74 changes: 74 additions & 0 deletions src/pages/shared-contacts.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
---
import Layout from '../layouts/layout.astro';
import { Picture } from '@astrojs/image/components';
import appImg from '/public/rolodex_contact.png';
import grphImg from '/public/rolodex_graph.png';
import { Icon } from "astro-icon";
const features = [
{
title: "Search",
description:
"Find an expert to ELI5 AI or friends of friends interested in running together, Spark new conversations with old friends, Hire your friend's wedding photographer.",
icon: "bx:bxs-search",
},
{
title: "Share",
description:
"Connect two friends interested in museums, Share emergency contacts or that uncle's number with a family member, Never lose your contacts again ;)",
icon: "bx:bxs-comment-check",
},
{
title: "Introduce",
description:
"Refer a contact to a friend who's traveling, or another who's hiring, Recommend a party planner or a designer to your friends",
icon: "bx:bxs-conversation",
},
];
---
<div class="flex justify-between mx-auto p-4 w-full md:w-2/3">
<p class="text-2xl font-bold tracking-tight">Rolo/dex</p>
<p class="px-4 py-2 bg-black text-white text-semibold rounded-lg hidden">Join</p>
</div>

<Layout title="Rolo/dex">
<main class="mx-auto w-2/3 antialiased flex justify-center items-center text-center">
<div>
<div class="grid lg:grid-cols-2 md:my-16">
<div class="text-start space-y-4 flex flex-col justify-evenly">
<p class="text-5xl lg:text-6xl xl:text-7xl font-bold lg:tracking-tight xl:tracking-tighter">Build better relationships</p>
<p class="text-xl text-slate-600">Superpower your network by sharing your contact book privately with friends.</p>
<div class="flex flex-row gap-1 md:gap-4 justify-between items-center">
<a href="https://tally.so/r/mZNdjA" target="_blank" class="bg-black text-white font-medium rounded-lg text-sm px-2.5 md:px-5 py-2 md:py-2.5 text-center md:mr-0">
Sign up for early access
</a>
</div>
</div>
<div class="flex flex-row justify-center space-x-2 hidden md:flex">
<iframe width="560" height="315" src="https://www.youtube.com/embed/LNxVAeSY0E4?si=arz8LsLyv9k3ynah" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
</div>
<div class="mt-16 md:mt-8">
<h2 class="text-3xl lg:text-4xl font-bold lg:tracking-tight">
Rolodex is a local-first shared contact book
</h2>
</div>

<div class="grid sm:grid-cols-2 md:grid-cols-3 mt-16 gap-16">
{
features.map((item) => (
<div class="flex gap-4 items-start">
<div class="mt-1 bg-black rounded-full p-2 w-8 h-8 shrink-0">
<Icon class="text-white" name={item.icon} />
</div>
<div>
<h3 class="font-semibold text-lg">{item.title}</h3>{" "}
<p class="text-slate-500 mt-2 leading-relaxed">{item.description}</p>
</div>
</div>
))
}
</div>
</div>
</main>
</Layout>

0 comments on commit 6e1910a

Please sign in to comment.