Skip to content

Commit 71908a2

Browse files
committed
feat: Adapt marketing sign-up points
https://harperdb.atlassian.net/browse/STUDIO-475
1 parent c03d271 commit 71908a2

File tree

1 file changed

+16
-41
lines changed

1 file changed

+16
-41
lines changed

src/features/auth/AuthLayout.tsx

Lines changed: 16 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Outlet } from '@tanstack/react-router';
21
import { Navbar } from '@/components/Navbar';
2+
import { Outlet } from '@tanstack/react-router';
33

44
function ListItem({ title, children }: { title: string; children: React.ReactNode }) {
55
return (
@@ -20,51 +20,26 @@ export function AuthLayout() {
2020
<section className="items-center justify-center hidden text-white md:flex bg-linear-(--blue-pink-gradient) px-6">
2121
<div>
2222
<h1 className="text-4xl font-bold">Harper Studio</h1>
23-
<span>Manage all your Harper instances.</span>
2423
<ul className="ps-5">
25-
<ListItem title="Manage All Instances">
26-
<span>View, create, and delete instances from one location.</span>
24+
25+
<ListItem title="Global Deployments Managed as One">
26+
<span>Coordinate global environments as if they were a single node.</span>
27+
</ListItem>
28+
29+
<ListItem title="Database, App, Cache, & Messaging">
30+
<span>Bring your stack together for reliable, ultra-fast performance.</span>
2731
</ListItem>
28-
<ListItem title="Embedded API Server">
29-
<span>Harper components give you unlimited application flexibility</span>
32+
33+
<ListItem title="NoSQL, Vector, & Blob">
34+
<span>Store and serve modern data types with low latency and global reach.</span>
3035
</ListItem>
3136

32-
<ListItem
33-
title="Fully Managed Cloud & 5G Instances"
34-
children={<span>Go from zero to code in minutes.</span>}
35-
/>
36-
<ListItem
37-
title="Deploy Anywhere"
38-
children={
39-
<div className="mt-6">
40-
<a
41-
href="https://hub.docker.com/r/harperdb/harperdb"
42-
target="_blank"
43-
rel="noreferrer noopener"
44-
className="p-2 mr-2 border-2 border-blue-100 rounded-md"
45-
>
46-
Docker
47-
</a>
48-
<a
49-
href="https://www.npmjs.com/package/harperdb"
50-
target="_blank"
51-
rel="noreferrer noopener"
52-
className="p-2 mr-2 border-2 border-blue-100 rounded-md"
53-
>
54-
npm
55-
</a>
56-
<a
57-
href="https://docs.harperdb.io/docs/deployments/install-harperdb"
58-
target="_blank"
59-
rel="noreferrer noopener"
60-
className="p-2 border-2 border-blue-100 rounded-md"
61-
>
62-
all options
63-
</a>
64-
</div>
65-
}
66-
/>
37+
<ListItem title="Simplified Operations">
38+
<span>Focus on what differentiates your app; leave infrastructure to us.</span>
39+
</ListItem>
6740
</ul>
41+
42+
<span className="opacity-5">Bravo!</span>
6843
</div>
6944
</section>
7045
<section className="flex items-center justify-center px-6 bg-linear-(--purple-gradient) dark:bg-linear-(--black-dark-gradient)">

0 commit comments

Comments
 (0)