-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Made Technology-Specific Guides its own page so that we can link to it (
#1216) * frameworks page * fix links
- Loading branch information
1 parent
1414e58
commit 4cbe79f
Showing
3 changed files
with
92 additions
and
44 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,35 @@ | ||
--- | ||
title: Technology-Specific Guides | ||
sidebar_label: Technology-Specific Guides | ||
slug: /guides/frameworks | ||
--- | ||
|
||
import OutlinedCard from "@site/src/components/OutlinedCard"; | ||
|
||
<div | ||
style={{ | ||
display: "flex", | ||
flexWrap: "wrap", | ||
}} | ||
> | ||
<OutlinedCard | ||
title="How to set up feature Flags in Python with Flask" | ||
icon="tune" | ||
link="/guides/python-flask-feature-flags" | ||
></OutlinedCard> | ||
<OutlinedCard | ||
title="Run an A/B Test with Python Flask" | ||
icon="science" | ||
link="/guides/python-flask-abtests" | ||
></OutlinedCard> | ||
<OutlinedCard | ||
title="Feature Flags in NodeJS ExpressJS" | ||
icon="science" | ||
link="/guides/node-express-feature-flags" | ||
></OutlinedCard> | ||
<OutlinedCard | ||
title="Experimenting in NodeJS ExpressJS" | ||
icon="science" | ||
link="/guides/node-express-abtests" | ||
></OutlinedCard> | ||
</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