diff --git a/README.md b/README.md
index cfc2ece..9337039 100644
--- a/README.md
+++ b/README.md
@@ -26,20 +26,20 @@ This compiler is what sits at the heart of Super Graph with layers of useful fun
## Features
- Role based access control
-- Works with Rails database schemas
-- Automatically learns schemas and relationships
-- Belongs-To, One-To-Many and Many-To-Many table relationships
-- Full text search and Aggregations
-- Rails Auth supported (Redis, Memcache, Cookie)
+- Works with Ruby-On-Rails databases
+- Automatically learns database schemas and relationships
+- Full text search and aggregations
+- Rails authentication supported (Redis, Memcache, Cookie)
- JWT tokens supported (Auth0, etc)
-- Join with remote REST APIs
+- Join database with remote REST APIs
- Highly optimized and fast Postgres SQL queries
-- Support GraphQL queries and mutations
-- Configure with a simple config file
+- GraphQL queries and mutations
+- A simple config file
- High performance GO codebase
- Tiny docker image and low memory requirements
+- Fuzz tested for security
- Database migrations tool
-- Write database seeding scripts in Javascript
+- Database seeding tool
## Documentation
diff --git a/docs/.vuepress/components/Card.vue b/docs/.vuepress/components/Card.vue
new file mode 100644
index 0000000..9902d00
--- /dev/null
+++ b/docs/.vuepress/components/Card.vue
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/.vuepress/components/HomeLayout.vue b/docs/.vuepress/components/HomeLayout.vue
index 0a61ad1..c2eafa2 100644
--- a/docs/.vuepress/components/HomeLayout.vue
+++ b/docs/.vuepress/components/HomeLayout.vue
@@ -23,6 +23,7 @@
class="inline-block px-4 py-3 my-8 bg-blue-600 text-blue-100 font-bold rounded"
:item="actionLink"
/>
+
@@ -51,17 +52,26 @@
+
+
+
+
+
+
What is {{ data.heroText }}?
Super Graph can automatically learn a Postgres database and instantly serve it as a fast and secured GraphQL API. It comes with tools to create a new app and manage it's database. You get it all, a very productive developer and a highly scalable app backend. It's designed to work well on serverless platforms by Google, AWS, Microsoft, etc. The goal is to save you a ton of time and money so you can focus on you're apps core value.
+
+
+
@@ -112,7 +122,7 @@
-
+
@@ -143,10 +153,73 @@
-
-
-
-
+
+
+
+
+
+
+
GraphQL the future of APIs
+
Keeping a tight and fast development loop helps you iterate quickly. Leveraging technology like Super Graph focuses your team on building the core product and not reinventing wheels. GraphQL eliminate the dependency on the backend engineering and keeps the things moving fast
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Build Secure Apps
+
+
+
+
+ Role Based Access Control
+ Dynamically assign roles like admin, manager or anon to specific users. Generate role specific queries at runtime. For example admins can get all users while others can only fetch their own user.
+
+
+
+ Prepared Statements
+ An additional layer of protection from a variety of security issues like SQL injection. In production mode all queries are precompiled into prepared statements so only those can be executed. This also significantly speeds up all queries.
+
+
+
+ Fuzz Tested Code
+ Fuzzing is done by complex software that generates massives amounts of random input to detect if code is free of security bugs. Google uses fuzzing to protects everything from their cloud infrastructure to the Chrome browser.
+
+
+
+
+
+
+
+
+ More Features
+
+
+
+
+ Remote Joins
+ A powerful feature that allows you to query your database and remote REST APIs at the same time. For example fetch a user from the DB, his tweets from Twitter and his payments from Stripe with a single GraphQL query.
+
+
+
+ Full Text Search
+ Postgres has excellent full-text search built-in. You don't need another expensive service. Super Graph makes it super easy to use with keyword ranking and highlighting also supported.
+
+
+
+ Bulk Inserts
+ Efficiently insert, update and delete multiple items with a single query. Upserts are also supported
+