-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
56 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[submodule "vwo-fme-node-sdk"] | ||
path = vwo-fme-node-sdk | ||
url = [email protected]:wingify/vwo-fme-node-sdk.git | ||
branch = gh-pages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
layout: page | ||
title: Wingify Engineering Projects - Documentation | ||
description: Documentation of our public projects | ||
permalink: /docs/ | ||
--- | ||
|
||
|
||
<div class="projects"> | ||
<div class="project-box"> | ||
<a href="/vwo-fme-node-sdk/"> | ||
<img src="/images/[email protected]" width="160" height="160"> | ||
<h3>VWO FME Node SDK - Documentation</h3> | ||
</a> | ||
<p>Node.js SDK for VWO Feature Management and Experimentation</p> | ||
<span class="pill">javascript</span> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import React from 'react' | ||
import Helmet from 'react-helmet' | ||
import Layout from '../layout' | ||
import config from '../../data/SiteConfig' | ||
|
||
const LabsPage = () => ( | ||
<Layout> | ||
<main> | ||
<Helmet title={`Labs | ${config.siteTitle}`} /> | ||
<h1>Wingify Engineering Projects - Documentation</h1> | ||
<h2>Documentation of our public projects</h2> | ||
<br /> | ||
<div dangerouslySetInnerHTML={{ | ||
__html: ` | ||
<div class="projects"> | ||
<div class="project-box"> | ||
<a href="/vwo-fme-node-sdk/"> | ||
<img src="/images/[email protected]" width="160" height="160"> | ||
<h3>VWO FME Node SDK - Documentation</h3> | ||
</a> | ||
<p>Node.js SDK for VWO Feature Management and Experimentation</p> | ||
<span class="pill">javascript</span> | ||
</div> | ||
</div> | ||
` }} /> | ||
<br /> | ||
</main> | ||
</Layout> | ||
) | ||
|
||
export default LabsPage |
Submodule vwo-fme-node-sdk
added at
b43fc0