Initial commit

This commit is contained in:
Tanguy Duhamel
2025-09-29 21:26:41 +02:00
parent ecf8d49dde
commit 0547b78429
208 changed files with 72069 additions and 53 deletions
@@ -0,0 +1,71 @@
import type { ReactNode } from "react";
import clsx from "clsx";
import Heading from "@theme/Heading";
import styles from "./styles.module.css";
type FeatureItem = {
title: string;
Svg: React.ComponentType<React.ComponentProps<"svg">>;
description: ReactNode;
};
const FeatureList: FeatureItem[] = [
{
title: "AI-Powered Vulnerability Research",
Svg: require("@site/static/img/icon-chip.svg").default,
description: (
<>
Intelligent agents that understand your project context, suggest next
steps, and collaborate across security domains.
</>
),
},
{
title: "Modular Security Workflows",
Svg: require("@site/static/img/icon-stack.svg").default,
description: (
<>
Orchestrate SAST, fuzzing, reversing, and triage tools using reusable
python-based workflow definitions.
</>
),
},
{
title: "Security Marketplace",
Svg: require("@site/static/img/icon-marketplace.svg").default,
description: (
<>
Community-driven repository for agents, fuzzing corpora, grammars, CVEs,
and complete security workflows.
</>
),
},
];
function Feature({ title, Svg, description }: FeatureItem) {
return (
<div className={clsx("col col--4")}>
<div className="text--center">
<Svg className={styles.featureSvg} role="img" />
</div>
<div className="text--center padding-horiz--md">
<Heading as="h3">{title}</Heading>
<p>{description}</p>
</div>
</div>
);
}
export default function HomepageFeatures(): ReactNode {
return (
<section className={styles.features}>
<div className="container">
<div className="row">
{FeatureList.map((props, idx) => (
<Feature key={idx} {...props} />
))}
</div>
</div>
</section>
);
}
@@ -0,0 +1,11 @@
.features {
display: flex;
align-items: center;
padding: 2rem 0;
width: 100%;
}
.featureSvg {
height: 200px;
width: 200px;
}
+29
View File
@@ -0,0 +1,29 @@
/**
* Any CSS included here will be global. The classic template
* bundles Infima by default. Infima is a CSS framework designed to
* work well for content-centric websites.
*/
:root {
--ifm-color-primary: #6c61f2; /* Medium Slate Blue */
--ifm-color-primary-dark: #201d40; /* Space Cadet */
--ifm-color-primary-darker: #1b1e3e; /* Space Cadet 2 */
--ifm-color-primary-darkest: #100f29; /* Oxford Blue */
--ifm-color-primary-light: #acb4fd; /* Periwinkle */
--ifm-color-primary-lighter: #acb4fd; /* Periwinkle (Re-used) */
--ifm-color-primary-lightest: #acb4fd; /* Periwinkle (Re-used) */
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
}
/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme="dark"] {
--ifm-color-primary: #acb4fd; /* Periwinkle */
--ifm-color-primary-dark: #6c61f2; /* Medium Slate Blue */
--ifm-color-primary-darker: #6c61f2; /* Medium Slate Blue (Re-used) */
--ifm-color-primary-darkest: #6c61f2; /* Medium Slate Blue (Re-used) */
--ifm-color-primary-light: #acb4fd; /* Periwinkle (Re-used) */
--ifm-color-primary-lighter: #acb4fd; /* Periwinkle (Re-used) */
--ifm-color-primary-lightest: #acb4fd; /* Periwinkle (Re-used) */
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}
+23
View File
@@ -0,0 +1,23 @@
/**
* CSS files with the .module.css suffix will be treated as CSS modules
* and scoped locally.
*/
.heroBanner {
padding: 4rem 0;
text-align: center;
position: relative;
overflow: hidden;
}
@media screen and (max-width: 996px) {
.heroBanner {
padding: 2rem;
}
}
.buttons {
display: flex;
align-items: center;
justify-content: center;
}
+46
View File
@@ -0,0 +1,46 @@
import type { ReactNode } from "react";
import clsx from "clsx";
import Link from "@docusaurus/Link";
import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
import Layout from "@theme/Layout";
import HomepageFeatures from "@site/src/components/HomepageFeatures";
import Heading from "@theme/Heading";
import styles from "./index.module.css";
function HomepageHeader() {
const { siteConfig } = useDocusaurusContext();
return (
<header className={clsx("hero hero--primary", styles.heroBanner)}>
<div className="container">
<Heading as="h1" className="hero__title">
{siteConfig.title}
</Heading>
<p className="hero__subtitle">{siteConfig.tagline}</p>
<div className={styles.buttons}>
<Link
className="button button--secondary button--lg"
to="/docs/intro"
>
Get Started - 5min
</Link>
</div>
</div>
</header>
);
}
export default function Home(): ReactNode {
const { siteConfig } = useDocusaurusContext();
return (
<Layout
title={`${siteConfig.title}`}
description="Automate vulnerability discovery with intelligent fuzzing, AI-driven analysis, and a marketplace of security tools. From code to exploit in minutes, not months."
>
<HomepageHeader />
<main>
<HomepageFeatures />
</main>
</Layout>
);
}