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

feat(ui): New InfluxDBU announcement #6882

Merged
merged 1 commit into from
Apr 3, 2024
Merged
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
33 changes: 21 additions & 12 deletions src/me/components/CurrentAnnouncement.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,27 @@ import influxdbu from 'assets/images/influxdbu.svg'

export const CurrentAnnouncement: FC = () => {
const currentDate = new Date()
const targetDate = new Date('2024-02-06T01:00:00-07:00')
const targetDate = new Date('2024-03-26T01:00:00-07:00')

const outgoingAnnouncement = (
<AnnouncementBlock
image={
<div className="announcement-block--image-spacer announcement-block--image-spacer__light">
<img src={influxdbu} />
</div>
}
body={
<p>
Discover through real-life use cases how companies use InfluxDB for
IIoT.
In this training, we'll learn about a variety of third-party solutions
that can replace the task engine in InfluxDB 2.0. We'll also learn
about the advantages of each solution and some of the advancements to
the Python Client Library.
</p>
}
ctaLink="https://www.influxdata.com/resources/industrial-iot-or-live-demo/"
ctaLink="https://www.influxdata.com/training/influxdb-3-0-task-engine-training/?utm_source=in-app&utm_medium=product&utm_campaign=2024-02-22_Training_InfluxDBTaskEngine"
ctaText="Save Your Spot"
icon={null}
title="Live Demo"
title="New Live Training: InfluxDB 3.0 Task Engine"
/>
)

Expand All @@ -35,16 +42,18 @@ export const CurrentAnnouncement: FC = () => {
}
body={
<p>
In this training, we'll learn about a variety of third-party solutions
that can replace the task engine in InfluxDB 2.0. We'll also learn
about the advantages of each solution and some of the advancements to
the Python Client Library.
Learn how to translate Flux queries to InfluxQL, SQL, and Python in
this technical tutorial. We cover some basic Flux queries and their
translations, discuss the limitations of SQL and InfluxQL, and make
the case for using Pandas and Polars. Discover the advantages and
limitations of each language and get examples of Flux to InfluxQL,
SQL, and Python translations.
</p>
}
ctaLink="https://www.influxdata.com/training/influxdb-3-0-task-engine-training/?utm_source=in-app&utm_medium=product&utm_campaign=2024-02-22_Training_InfluxDBTaskEngine"
ctaText="Save Your Spot"
ctaLink="https://university.influxdata.com/courses/flux-to-influxql-sql-python/?utm_source=inapp&utm_medium=product&utm_campaign=2024_influxdbu"
ctaText="Start Learning"
icon={null}
title="New Live Training: InfluxDB 3.0 Task Engine"
title="New Training: Flux to InfluxQL, SQL, and Python"
/>
)

Expand Down