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

adding premium note #18

Merged
merged 2 commits into from
Sep 27, 2024
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
46 changes: 28 additions & 18 deletions website/components/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
EuiSpacer,
EuiTitle,
EuiToast,
EuiImage,
} from "@elastic/eui";
import "@elastic/eui/dist/eui_theme_dark.css";
import { RMMTable } from "./tools";
Expand All @@ -25,32 +26,41 @@ function Contents() {
<EuiLink href="https://github.com/magicsword-io/lolrmm/issues/new/choose">
issue
</EuiLink>
, or suggest new RMM tools to be added.
</>
}
color="warning"
iconType="iInCircle"
/>
<EuiToast
title={
<>
You can also access the RMM tools list via API using{" "}
, or suggest new RMM tools to be added. You can also access the RMM tools list via API using{" "}
<EuiLink href="/api/rmm_tools.csv">CSV</EuiLink> or{" "}
<EuiLink href="/api/rmm_tools.json">JSON</EuiLink>. For users of
security monitoring tools, check out the pre-built{" "}
<EuiLink href="https://github.com/magicsword-io/lolrmm/blob/main/detections/configs">
configurations
</EuiLink>
. We also provide{" "}
<EuiLink href="https://github.com/magicsword-io/lolrmm/blob/main/detections/sigma">
Sigma rules{" "}
<EuiImage
alt="Sigma Logo"
src="/images/sigma_logo.png"
style={{ width: '20px', height: '20px', marginRight: '5px', verticalAlign: 'middle' }}
/>
Sigma rules
</EuiLink>
for SIEMs.
</>
}
color="primary"
iconType="iInCircle"
/>
<EuiToast
title={
<>
Interested in learning how to <span style={{ color: 'red' }}>block</span> these remote management tools natively on Windows?
<br />
<EuiLink href="https://www.magicsword.io/premium">
<EuiImage
alt="MagicSword Logo"
src="/images/magicsword.png"
style={{ width: '110px', height: '110px', verticalAlign: 'middle', display: 'inline-block', marginRight: '10px', marginTop: '10px' }}
/>
Explore MagicSword Premium
</EuiLink>
</>
}
color="warning"
iconType="lock"
/>
</EuiFlexGroup>
<EuiSpacer size="xxl" />

Expand All @@ -60,8 +70,8 @@ function Contents() {

<EuiSpacer size="xxl" />
<RMMTable />
</>
);
</>
);
}

export function App() {
Expand Down
Binary file added website/public/images/magicsword.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added website/public/images/sigma_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.