oh-my-posh/website/src/pages/index.js
2022-05-13 08:19:35 +02:00

95 lines
2.6 KiB
JavaScript

import Link from "@docusaurus/Link";
import useBaseUrl from "@docusaurus/useBaseUrl";
import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
import Layout from "@theme/Layout";
import classnames from "classnames";
import React from "react";
import styles from "./styles.module.css";
const features = [
{
title: <>Colors</>,
description: (
<>
Oh My Posh enables you to use the full color set of your terminal
by using colors to define and render the prompt.
</>
),
},
{
title: <>Customizable</>,
description:
<>
Easily adjust existing themes or create your own. From standard segments
all the way to custom implementations.
</>,
},
{
title: <>Portable</>,
description: (
<>
No matter which shell you're using, or even how many, you can
carry the configuration from one shell and/or machine to another
for the same prompt everywhere you work.
</>
),
},
];
function Feature({ imageUrl, title, description }) {
const imgUrl = useBaseUrl(imageUrl);
return (
<div className={classnames("col col--4", styles.feature)}>
{imgUrl && (
<div className="text--center">
<img className={styles.featureImage} src={imgUrl} alt={title} />
</div>
)}
<h3>{title}</h3>
<p>{description}</p>
</div>
);
}
function Home() {
const context = useDocusaurusContext();
const { siteConfig = {} } = context;
return (
<Layout title="Home" description={`${siteConfig.tagline}`}>
<header className={classnames("hero hero--primary", styles.heroBanner)}>
<div className="container">
<h1 className="hero__title">{siteConfig.title}</h1>
<p className="hero__subtitle">{siteConfig.tagline}</p>
<div className={styles.buttons}>
<Link
className={classnames(
"button button--outline button--lg",
styles.getStarted
)}
to={useBaseUrl("docs/")}
>
Get Started
</Link>
</div>
<img class="hero--image" src="/img/hero.png" alt="Oh My Posh prompt"></img>
</div>
</header>
<main>
{features && features.length > 0 && (
<section className={styles.features}>
<div className="container">
<div className="row">
{features.map((props, idx) => (
<Feature key={idx} {...props} />
))}
</div>
</div>
</section>
)}
</main>
</Layout>
);
}
export default Home;