intials app

This commit is contained in:
2025-08-26 15:25:09 -05:00
parent 10b56bf31f
commit d3fd5aa653
59 changed files with 22132 additions and 29 deletions

View File

@@ -0,0 +1,99 @@
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: "Install / Update",
Svg: require("@site/static/img/undraw_docusaurus_mountain.svg").default,
description: (
<>
Installation of LST onto your server, including how to setup
IIS, Windows Service. Also update process and flow
</>
),
},
{
title: "One Click Print",
Svg: require("@site/static/img/undraw_docusaurus_tree.svg").default,
description: (
<>
Full process on how the One click print flow and bussiness logic
works
</>
),
},
{
title: "Logistics",
Svg: require("@site/static/img/undraw_docusaurus_react.svg").default,
description: (
<>
All Logistcs topics sucks as "Fake Edi", LST-Datamart (items
that are not included in alplamart but utlized in our day to
day)
</>
),
},
{
title: "TMS intergration",
Svg: require("@site/static/img/undraw_docusaurus_react.svg").default,
description: <>The TMS intergration, how to setup and how to manage.</>,
},
{
title: "Notification System",
Svg: require("@site/static/img/undraw_docusaurus_react.svg").default,
description: (
<>
These are a set of notifications/alerts that have been defined
useful, each one will be explaind how it works, and how to
subscript
</>
),
},
{
title: "Scanner app",
Svg: require("@site/static/img/undraw_docusaurus_react.svg").default,
description: (
<>
The scanner app will be the same app with more limited features
in it, dedicated more to the type of scanner your are working
with to not flood the screen.
</>
),
},
];
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>
);
}

View File

@@ -0,0 +1,11 @@
.features {
display: flex;
align-items: center;
padding: 2rem 0;
width: 100%;
}
.featureSvg {
height: 200px;
width: 200px;
}

View File

@@ -0,0 +1,30 @@
/**
* 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.
*/
/* You can override the default Infima variables here. */
:root {
--ifm-color-primary: #2569c2;
--ifm-color-primary-dark: #2321af;
--ifm-color-primary-darker: #3c1fa5;
--ifm-color-primary-darkest: #2a1a88;
--ifm-color-primary-light: #3429d5;
--ifm-color-primary-lighter: #3259d8;
--ifm-color-primary-lightest: #4f69dd;
--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: #2569c2;
--ifm-color-primary-dark: #2321af;
--ifm-color-primary-darker: #3c1fa5;
--ifm-color-primary-darkest: #2a1a88;
--ifm-color-primary-light: #3429d5;
--ifm-color-primary-lighter: #3259d8;
--ifm-color-primary-lightest: #4f69dd;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}

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;
}

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"
>
Jump right to the docs
</Link>
</div>
</div>
</header>
);
}
export default function Home(): ReactNode {
const { siteConfig } = useDocusaurusContext();
return (
<Layout
title={`Hello from ${siteConfig.title}`}
description="Description will go into a meta tag in <head />"
>
<HomepageHeader />
<main>
<HomepageFeatures />
</main>
</Layout>
);
}

View File

@@ -0,0 +1,7 @@
---
title: Markdown page example
---
# Markdown page example
You don't need React to write simple standalone pages.