You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/pages/about.tsx
+52-45Lines changed: 52 additions & 45 deletions
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,17 @@
1
1
importReactfrom"react";
2
2
importtype{NextPage}from"next";
3
3
importHeadfrom"next/head";
4
+
importLinkfrom"next/link";
4
5
5
6
import{useQuery}from"urql";
6
7
7
8
import{
8
-
CloudUploadIcon,
9
+
LightningBoltIcon,
9
10
CogIcon,
10
-
LockClosedIcon,
11
-
MenuIcon,
12
-
RefreshIcon,
13
-
ServerIcon,
11
+
DatabaseIcon,
14
12
ShieldCheckIcon,
15
-
XIcon,
13
+
CodeIcon,
14
+
TemplateIcon,
16
15
}from"@heroicons/react/outline";
17
16
18
17
import{gql}from"../gql";
@@ -23,40 +22,45 @@ import { noopUUID } from "../lib/noop-uuid";
23
22
constAbout: NextPage=()=>{
24
23
constfeatures=[
25
24
{
26
-
name: "Push to Deploy",
25
+
name: "Supabase",
27
26
description:
28
-
"Ac tincidunt sapien vehicula erat auctor pellentesque rhoncus. Et magna sit morbi vitae lobortis.",
29
-
icon: CloudUploadIcon,
27
+
"Supabase is an open source Firebase alternative. It provides all the backend services you need to build a product. You can use it completely, or just the services you require.",
28
+
icon: LightningBoltIcon,
29
+
href: "https://www.supabase.com",
30
30
},
31
31
{
32
-
name: "SSL Certificates",
32
+
name: "Supabase Auth",
33
33
description:
34
-
"Qui aut temporibus nesciunt vitae dicta repellat sit dolores pariatur. Temporibus qui illum aut.",
35
-
icon: LockClosedIcon,
34
+
"Supabase Auth provides user management with row level security",
35
+
icon: ShieldCheckIcon,
36
+
href: "https://supabase.com/auth",
36
37
},
37
38
{
38
-
name: "Simple Queues",
39
-
description:
40
-
"Rerum quas incidunt deleniti quaerat suscipit mollitia. Amet repellendus ut odit dolores qui.",
41
-
icon: RefreshIcon,
39
+
name: "PG GraphQL",
40
+
description:"Adds GraphQL support to your PostgreSQL database.",
41
+
icon: DatabaseIcon,
42
+
href: "https://supabase.github.io/pg_graphql/",
42
43
},
43
44
{
44
-
name: "Advanced Security",
45
+
name: "GraphQL Codegen",
45
46
description:
46
-
"Ullam laboriosam est voluptatem maxime ut mollitia commodi. Et dignissimos suscipit perspiciatis.",
47
-
icon: ShieldCheckIcon,
47
+
"Generate code from your GraphQL schema and operations with a simple CLI. Code with type safety and autocomplete.",
48
+
icon: CodeIcon,
49
+
href: "https://www.graphql-code-generator.com",
48
50
},
49
51
{
50
-
name: "Powerful API",
52
+
name: "GraphiQL",
51
53
description:
52
-
"Ab a facere voluptatem in quia corrupti veritatis aliquam. Veritatis labore quaerat ipsum quaerat id.",
53
-
icon: CogIcon,
54
+
"GraphiQL from GraphQL Yoga is an in-browser IDE for writing, validating, and testing GraphQL queries.",
0 commit comments