-
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.
Added submodule and configured it to track gh-pages
- Loading branch information
Varun Malhotra
committed
May 28, 2024
1 parent
a63a432
commit 89aba32
Showing
5 changed files
with
60 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,7 @@ | ||
[submodule "vwo-fme-node-sdk"] | ||
path = vwo-fme-node-sdk | ||
url = [email protected]:wingify/vwo-fme-node-sdk.git | ||
branch = gh-pages | ||
[submodule "docs/vwo-fme-node-sdk"] | ||
path = docs/vwo-fme-node-sdk | ||
url = [email protected]:wingify/vwo-fme-node-sdk.git |
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> |
Submodule vwo-fme-node-sdk
added at
b43fc0
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,32 @@ | ||
import React from 'react' | ||
import Helmet from 'react-helmet' | ||
import Layout from '../layout' | ||
import config from '../../data/SiteConfig' | ||
import styles from '../../css/app.css' // eslint-disable-line no-unused-vars | ||
|
||
const DocsPage = () => ( | ||
<Layout> | ||
<main> | ||
<Helmet title={`Docs | ${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 DocsPage |