@@ -24,6 +24,26 @@ import { noopUUID } from "../lib/noop-uuid";
2424
2525const About : NextPage = ( ) => {
2626 const features = [
27+ {
28+ name : "PG GraphQL" ,
29+ description : "Adds GraphQL support to your PostgreSQL database." ,
30+ icon : DatabaseIcon ,
31+ href : "https://supabase.github.io/pg_graphql/" ,
32+ } ,
33+ {
34+ name : "GraphQL Code Generator" ,
35+ description :
36+ "Generate code from your GraphQL schema and operations with a simple CLI." ,
37+ icon : CodeIcon ,
38+ href : "https://www.graphql-code-generator.com" ,
39+ } ,
40+ {
41+ name : "GraphQL Config" ,
42+ description :
43+ "One configuration for development environment with your GraphQL Schema." ,
44+ icon : CogIcon ,
45+ href : "https://www.graphql-config.com" ,
46+ } ,
2747 {
2848 name : "Supabase" ,
2949 description :
@@ -45,32 +65,6 @@ const About: NextPage = () => {
4565 icon : CollectionIcon ,
4666 href : "https://ui.supabase.io" ,
4767 } ,
48- {
49- name : "Tailwind CSS" ,
50- description : "A utility-first CSS framework." ,
51- icon : ColorSwatchIcon ,
52- href : "https://tailwindcss.com" ,
53- } ,
54- {
55- name : "PG GraphQL" ,
56- description : "Adds GraphQL support to your PostgreSQL database." ,
57- icon : DatabaseIcon ,
58- href : "https://supabase.github.io/pg_graphql/" ,
59- } ,
60- {
61- name : "GraphQL Code Generator" ,
62- description :
63- "Generate code from your GraphQL schema and operations with a simple CLI." ,
64- icon : CodeIcon ,
65- href : "https://www.graphql-code-generator.com" ,
66- } ,
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- } ,
7468 {
7569 name : "GraphiQL" ,
7670 description :
@@ -85,6 +79,13 @@ const About: NextPage = () => {
8579 icon : GlobeAltIcon ,
8680 href : "https://formidable.com/open-source/urql/" ,
8781 } ,
82+ {
83+ name : "Tailwind CSS" ,
84+ description :
85+ "A utility-first CSS framework to rapidly build modern websites." ,
86+ icon : ColorSwatchIcon ,
87+ href : "https://tailwindcss.com" ,
88+ } ,
8889 ] ;
8990
9091 const faqs = [
@@ -142,7 +143,10 @@ const About: NextPage = () => {
142143 < Container >
143144 < Head >
144145 < title > supanews | About</ title >
145- < meta name = "description" content = "What is hot?" />
146+ < meta
147+ name = "description"
148+ content = "Everything you need to develop a GraphQL app."
149+ />
146150 < link rel = "icon" href = "/favicon.ico" />
147151 </ Head >
148152 < div className = "relative bg-white py-4 sm:py-8 lg:py-12" >
@@ -155,7 +159,15 @@ const About: NextPage = () => {
155159 </ p >
156160 < p className = "mt-5 max-w-prose mx-auto text-xl text-gray-500" >
157161 Build your next GraphQL powered application like this one ... faster
158- and easier with open source tools from Supabase, The Guild and more.
162+ and easier with open source tools from{ " " }
163+ < a className = "text-gray-800" href = "https://www.supabase.com" >
164+ Supabase
165+ </ a >
166+ ,{ " " }
167+ < a className = "text-gray-800" href = "https://www.the-guild.dev" >
168+ The Guild
169+ </ a > { " " }
170+ and more.
159171 </ p >
160172 < div className = "mt-12" >
161173 < div className = "grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3" >
0 commit comments