Skip to content

Commit cd5e649

Browse files
committed
Adds more tools used
1 parent e3b24e1 commit cd5e649

1 file changed

Lines changed: 31 additions & 8 deletions

File tree

app/pages/about.tsx

Lines changed: 31 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@ import Link from "next/link";
66
import { useQuery } from "urql";
77

88
import {
9-
LightningBoltIcon,
9+
CodeIcon,
1010
CogIcon,
11+
CollectionIcon,
12+
ColorSwatchIcon,
1113
DatabaseIcon,
14+
GlobeAltIcon,
15+
LightningBoltIcon,
1216
ShieldCheckIcon,
13-
CodeIcon,
1417
TemplateIcon,
1518
} from "@heroicons/react/outline";
1619

@@ -31,23 +34,43 @@ const About: NextPage = () => {
3134
{
3235
name: "Supabase Auth",
3336
description:
34-
"Supabase Auth provides user management with row level security",
37+
"Supabase Auth provides user management with row level security.",
3538
icon: ShieldCheckIcon,
3639
href: "https://supabase.com/auth",
3740
},
41+
{
42+
name: "Supabase UI",
43+
description:
44+
"An open-source UI component library inspired by Tailwind and AntDesign.",
45+
icon: CollectionIcon,
46+
href: "https://ui.supabase.io",
47+
},
48+
{
49+
name: "Tailwind CSS",
50+
description: "A utility-first CSS framework.",
51+
icon: ColorSwatchIcon,
52+
href: "https://tailwindcss.com",
53+
},
3854
{
3955
name: "PG GraphQL",
4056
description: "Adds GraphQL support to your PostgreSQL database.",
4157
icon: DatabaseIcon,
4258
href: "https://supabase.github.io/pg_graphql/",
4359
},
4460
{
45-
name: "GraphQL Codegen",
61+
name: "GraphQL Code Generator",
4662
description:
4763
"Generate code from your GraphQL schema and operations with a simple CLI.",
4864
icon: CodeIcon,
4965
href: "https://www.graphql-code-generator.com",
5066
},
67+
{
68+
name: "GraphQL Config",
69+
description:
70+
"One configuration for development environment with your GraphQL Schema.",
71+
icon: CogIcon,
72+
href: "https://www.graphql-config.com",
73+
},
5174
{
5275
name: "GraphiQL",
5376
description:
@@ -59,7 +82,7 @@ const About: NextPage = () => {
5982
name: "urql",
6083
description:
6184
"urql is a highly customizable and versatile GraphQL client.",
62-
icon: CogIcon,
85+
icon: GlobeAltIcon,
6386
href: "https://formidable.com/open-source/urql/",
6487
},
6588
];
@@ -128,11 +151,11 @@ const About: NextPage = () => {
128151
GraphQL + Postgres + Tooling
129152
</h2>
130153
<p className="mt-2 text-3xl font-extrabold text-gray-900 tracking-tight sm:text-4xl">
131-
Everything you need to deploy a GraphQL app
154+
Everything you need to develop a GraphQL app
132155
</p>
133156
<p className="mt-5 max-w-prose mx-auto text-xl text-gray-500">
134-
Build GraphQL powered apps faster and easier with tools from
135-
Supabase and The Guild.
157+
Build your next GraphQL powered application like this one ... faster
158+
and easier with open source tools from Supabase, The Guild and more.
136159
</p>
137160
<div className="mt-12">
138161
<div className="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3">

0 commit comments

Comments
 (0)