├── public ├── robots.txt ├── logo.png ├── favicon.ico ├── fonts │ ├── Mona-Sans.ttf │ ├── Hubot-Sans.ttf │ ├── Hubot-Sans.woff │ ├── Hubot-Sans.woff2 │ ├── Mona-Sans.woff │ └── Mona-Sans.woff2 └── images │ ├── bot-user.png │ ├── graph-me.png │ ├── graph-help.png │ ├── graph-me-1.png │ ├── graph-me-2.png │ ├── graph-me-3.png │ ├── graph-me-4.png │ ├── graph-save.png │ ├── remove-app.png │ ├── screenshot.png │ ├── slack-mark.png │ ├── graph-connect.png │ ├── graph-forget.png │ ├── graph-search.png │ ├── btn-add-to-slack.png │ ├── console-connect.png │ ├── console-subscribe.png │ ├── graph-billing-portal.png │ ├── btn-add-to-slack-small.png │ └── graph-billing-subscribe.png ├── src ├── env.d.ts ├── pages │ ├── support.md │ ├── _faq │ │ ├── 03-manage-subscription.md │ │ ├── 04-more-than-max-users.md │ │ ├── 02-trial.md │ │ └── 01-free-plan.md │ ├── 404.astro │ ├── docs │ │ ├── get-started.md │ │ ├── index.md │ │ ├── billing.md │ │ ├── connect.md │ │ ├── slack.md │ │ └── share.md │ ├── index.astro │ ├── terms.md │ ├── pricing.astro │ └── privacy.md ├── layouts │ ├── PageLayout.astro │ ├── DocsLayout.astro │ └── Layout.astro ├── components │ ├── DocsToc.astro │ ├── Faq.astro │ ├── Hero.astro │ ├── Footer.astro │ ├── DocsSidebar.astro │ ├── Navbar.astro │ └── Features.astro └── styles │ └── global.css ├── .vscode ├── extensions.json └── launch.json ├── tsconfig.json ├── .gitignore ├── astro.config.mjs ├── package.json ├── tailwind.config.cjs └── README.md /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/Mona-Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/fonts/Mona-Sans.ttf -------------------------------------------------------------------------------- /public/images/bot-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/images/bot-user.png -------------------------------------------------------------------------------- /public/images/graph-me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/images/graph-me.png -------------------------------------------------------------------------------- /public/fonts/Hubot-Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/fonts/Hubot-Sans.ttf -------------------------------------------------------------------------------- /public/fonts/Hubot-Sans.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/fonts/Hubot-Sans.woff -------------------------------------------------------------------------------- /public/fonts/Hubot-Sans.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/fonts/Hubot-Sans.woff2 -------------------------------------------------------------------------------- /public/fonts/Mona-Sans.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/fonts/Mona-Sans.woff -------------------------------------------------------------------------------- /public/fonts/Mona-Sans.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/fonts/Mona-Sans.woff2 -------------------------------------------------------------------------------- /public/images/graph-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/images/graph-help.png -------------------------------------------------------------------------------- /public/images/graph-me-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/images/graph-me-1.png -------------------------------------------------------------------------------- /public/images/graph-me-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/images/graph-me-2.png -------------------------------------------------------------------------------- /public/images/graph-me-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/images/graph-me-3.png -------------------------------------------------------------------------------- /public/images/graph-me-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/images/graph-me-4.png -------------------------------------------------------------------------------- /public/images/graph-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/images/graph-save.png -------------------------------------------------------------------------------- /public/images/remove-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/images/remove-app.png -------------------------------------------------------------------------------- /public/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/images/screenshot.png -------------------------------------------------------------------------------- /public/images/slack-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/images/slack-mark.png -------------------------------------------------------------------------------- /public/images/graph-connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/images/graph-connect.png -------------------------------------------------------------------------------- /public/images/graph-forget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/images/graph-forget.png -------------------------------------------------------------------------------- /public/images/graph-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/images/graph-search.png -------------------------------------------------------------------------------- /public/images/btn-add-to-slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/images/btn-add-to-slack.png -------------------------------------------------------------------------------- /public/images/console-connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/images/console-connect.png -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["astro-build.astro-vscode"], 3 | "unwantedRecommendations": [] 4 | } 5 | -------------------------------------------------------------------------------- /public/images/console-subscribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/images/console-subscribe.png -------------------------------------------------------------------------------- /public/images/graph-billing-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/images/graph-billing-portal.png -------------------------------------------------------------------------------- /public/images/btn-add-to-slack-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/images/btn-add-to-slack-small.png -------------------------------------------------------------------------------- /public/images/graph-billing-subscribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphme-app/website/HEAD/public/images/graph-billing-subscribe.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "astro/tsconfigs/strict", 3 | "compilerOptions": { 4 | "jsx": "react-jsx", 5 | "jsxImportSource": "react" 6 | } 7 | } -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.2.0", 3 | "configurations": [ 4 | { 5 | "command": "./node_modules/.bin/astro dev", 6 | "name": "Development server", 7 | "request": "launch", 8 | "type": "node-terminal" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /src/pages/support.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: /src/layouts/PageLayout.astro 3 | title: Support 4 | --- 5 | 6 | # Support 7 | 8 | We offer support for all customers, both on paid and non-paid plans via email. 9 | 10 | Please contact us at hello@graphme.app for any support request. -------------------------------------------------------------------------------- /src/pages/_faq/03-manage-subscription.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Can I change or stop my subscription at any time? 3 | --- 4 | Yes, you are free to switch to a new plan, or cancel your existing subscription at any time. 5 | We will charge you at the pro-rata of the number of days in the current period -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # build output 2 | dist/ 3 | .output/ 4 | 5 | # dependencies 6 | node_modules/ 7 | 8 | # logs 9 | npm-debug.log* 10 | yarn-debug.log* 11 | yarn-error.log* 12 | pnpm-debug.log* 13 | 14 | 15 | # environment variables 16 | .env 17 | .env.production 18 | 19 | # macOS-specific files 20 | .DS_Store 21 | -------------------------------------------------------------------------------- /src/pages/_faq/04-more-than-max-users.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: What if I need more than 100 users? 3 | --- 4 | We also have an Unlimited plan with a custom pricing, for organizations that need to onboard more than 100 users on GraphMe. 5 | Please [reach out to us](mailto:hello@graphme.app), so that we can work together on a tailored solution for you. -------------------------------------------------------------------------------- /src/pages/_faq/02-trial.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Do you offer a free trial? 3 | --- 4 | Yes, all of our plans come with a 14-days trial period. 5 | You need to provide your credit card to start the trial, but you will not be charged before the end of the trial period. 6 | If you cancel your subscription before the end of the trial period, you will not be charged at all. -------------------------------------------------------------------------------- /src/layouts/PageLayout.astro: -------------------------------------------------------------------------------- 1 | --- 2 | import Layout from './Layout.astro' 3 | 4 | const { frontmatter } = Astro.props; 5 | --- 6 | 7 |
8 |
9 |
10 | 11 |
12 |
13 |
14 |
-------------------------------------------------------------------------------- /src/pages/_faq/01-free-plan.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Do you have a free plan? 3 | --- 4 | We do have a free plan, which is the default plan that you obtain when install the application for Slack. 5 | No credit card required is required for the free plan, but it is limited to a single user. 6 | Due to its limitations, this plan is intended for people evaluating the product. 7 | If you want to unleash the full potential of GraphMe and collaborate with your organization, please switch to a paid plan. -------------------------------------------------------------------------------- /src/layouts/DocsLayout.astro: -------------------------------------------------------------------------------- 1 | --- 2 | import Layout from './Layout.astro' 3 | import DocsSidebar from '../components/DocsSidebar.astro' 4 | import DocsToc from '../components/DocsToc.astro' 5 | 6 | const { frontmatter, headings } = Astro.props; 7 | --- 8 | 9 |
10 |
11 | 12 |
13 | 14 |
15 | 16 |
17 |
18 |
-------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'astro/config'; 2 | import tailwind from "@astrojs/tailwind"; 3 | import react from "@astrojs/react"; 4 | import remarkDirective from "remark-directive"; 5 | import remarkCalloutDirectives from "@microflash/remark-callout-directives"; 6 | import sitemap from "@astrojs/sitemap"; 7 | 8 | // https://astro.build/config 9 | export default defineConfig({ 10 | site: 'https://graphme.app', 11 | markdown: { 12 | remarkPlugins: [remarkDirective, remarkCalloutDirectives], 13 | extendDefaultPlugins: true 14 | }, 15 | integrations: [tailwind({ 16 | config: { 17 | applyBaseStyles: false 18 | } 19 | }), react(), sitemap()] 20 | }); -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@example/basics", 3 | "type": "module", 4 | "version": "0.0.1", 5 | "private": true, 6 | "scripts": { 7 | "dev": "astro dev", 8 | "start": "astro dev", 9 | "build": "astro build", 10 | "preview": "astro preview", 11 | "astro": "astro" 12 | }, 13 | "dependencies": { 14 | "@astrojs/react": "^1.2.2", 15 | "@astrojs/sitemap": "^1.0.0", 16 | "@astrojs/tailwind": "^2.1.3", 17 | "@microflash/remark-callout-directives": "^1.5.0", 18 | "@tailwindcss/typography": "^0.5.8", 19 | "@types/react": "^18.0.26", 20 | "@types/react-dom": "^18.0.10", 21 | "astro": "^1.8.0", 22 | "framer-motion": "^8.0.2", 23 | "react": "^18.2.0", 24 | "react-dom": "^18.2.0", 25 | "remark-directive": "^2.0.1", 26 | "tailwindcss": "^3.2.4" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- 1 | const defaultTheme = require('tailwindcss/defaultTheme') 2 | 3 | /** @type {import('tailwindcss').Config} */ 4 | module.exports = { 5 | content: ['./src/**/*.{astro,html,js,jsx,md,mdx,ts,tsx}'], 6 | theme: { 7 | fontFamily: { 8 | 'sans': ['Mona Sans', ...defaultTheme.fontFamily.sans], 9 | }, 10 | extend: { 11 | colors: { 12 | aubergine: "rgb(63,14,64)", 13 | // Generated from https://uicolors.app/create 14 | primary: { 15 | '50': '#ebf1ff', 16 | '100': '#dbe5ff', 17 | '200': '#beceff', 18 | '300': '#96aeff', 19 | '400': '#6d81ff', 20 | '500': '#4b56ff', 21 | '600': '#2f2bff', 22 | '700': '#271fe3', 23 | '800': '#201db6', 24 | '900': '#191970', 25 | }, 26 | }, 27 | }, 28 | }, 29 | plugins: [ 30 | require('@tailwindcss/typography'), 31 | ], 32 | } 33 | -------------------------------------------------------------------------------- /src/components/DocsToc.astro: -------------------------------------------------------------------------------- 1 | --- 2 | const { headings } = Astro.props; 3 | // Only display level 2 and 3 headings. Level 1 is the main title. 4 | const items = headings.filter(heading => heading.depth > 1 && heading.depth <= 3); 5 | --- 6 | 21 | -------------------------------------------------------------------------------- /src/pages/404.astro: -------------------------------------------------------------------------------- 1 | --- 2 | import Layout from '../layouts/Layout.astro'; 3 | --- 4 | 5 |
6 |
7 |
8 |

404

9 |

Something's missing.

10 |

Sorry, we can't find that page. You'll find lots to explore on the home page.

11 | Back to home 12 |
13 |
14 |
15 |
-------------------------------------------------------------------------------- /src/layouts/Layout.astro: -------------------------------------------------------------------------------- 1 | --- 2 | import "../styles/global.css" 3 | import Navbar from "../components/Navbar.astro" 4 | import Footer from "../components/Footer.astro" 5 | 6 | export interface Props { 7 | title: string; 8 | } 9 | 10 | const { title } = Astro.props; 11 | --- 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | {title} | GraphMe 21 | 22 | 23 | 24 |
25 | 26 |
27 |