Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add feedback link to app footer #1812

Merged
merged 4 commits into from
Jul 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,20 @@ Flipt supports use cases such as:
<img align="right" src=".github/images/console.png" alt="Flipt Console" width=40% />

- Fast. Written in Go. Optimized for performance
- Stand alone, easy to run and configure
- Stand alone, single binary that's easy to run and [configure](https://www.flipt.io/docs/configuration/overview)
- Ability to create advanced distribution rules to target segments of users
- Native [GRPC](https://grpc.io/) client SDKs to integrate with your existing applications easily
- Powerful REST API
- Native [GRPC](https://grpc.io/) client [SDKs](#grpc-client-libraries) to integrate with your existing GRPC architecture
- Powerful REST API with native [SDKs](#rest-client-libraries) for easy integration
- Modern, mobile-friendly 📱 UI and debug console
- Support for multiple databases (Postgres, MySQL, SQLite, CockroachDB)
- Data import and export to allow storing your data as code
- Cloud-ready :cloud:. Runs anywhere: bare metal, PaaS, K8s, with Docker or without.
- Dark mode 🌙
- Supports multiple databases: Postgres, MySQL, SQLite, CockroachDB
- Import and export to allow storing your data as code
- Cloud-ready :cloud:. Runs anywhere: bare metal, PaaS, K8s, with Docker or without
- Works with [Prometheus](https://prometheus.io/) and [OpenTelemetry](https://opentelemetry.io/) out of the box
- [Filesystem + Git storage backends](https://www.flipt.io/docs/experimental/filesystem-backends) (experimental)
- Audit logging to track changes to your data

Are we missing a feature that you'd like to see? [Let us know!](https://features.flipt.io)

<br clear="both"/>

Expand Down
46 changes: 30 additions & 16 deletions ui/src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,22 +57,36 @@ export default function Footer() {
return (
<footer className="body-font sticky top-[100vh] text-gray-700">
<div className="container mx-auto mt-4 flex flex-col items-center px-8 py-4 sm:flex-row">
<p className="mt-4 text-xs text-gray-500 sm:mt-0">
<span className="hidden sm:inline">
{ref() && (
<>
<a href={refURL()} className="text-violet-500">
{ref()}
</a>
&nbsp;|&nbsp;
</>
)}
</span>
<span className="block sm:inline">
&copy; {new Date().getFullYear()} Flipt Software Inc. All rights
reserved.
</span>
</p>
<div className="container mx-auto flex flex-col items-center space-x-2 sm:flex-row">
<p className="mt-4 text-xs text-gray-500 sm:mt-0">
<span className="hidden sm:inline">
{ref() && (
<>
<a href={refURL()} className="text-violet-500">
{ref()}
</a>
&nbsp;|&nbsp;
</>
)}
</span>
<span className="block sm:inline">
&copy; {new Date().getFullYear()} Flipt Software Inc. All rights
reserved.
</span>
</p>
<p className="mt-4 text-xs text-gray-500 sm:mt-0">
<span className="hidden sm:inline">
<a
target="_blank"
rel="noreferrer"
href="https://features.flipt.io"
className="text-violet-500"
>
Share Feedback
</a>
</span>
</p>
</div>
<span className="mt-4 inline-flex justify-center space-x-5 sm:ml-auto sm:mt-0 sm:justify-start">
{social.map((item) => (
<a
Expand Down