Skip to content

Commit

Permalink
button Get Started added
Browse files Browse the repository at this point in the history
  • Loading branch information
idugalic committed Feb 16, 2024
1 parent ad85236 commit 67565ed
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ export default function Home(): JSX.Element {
<main>
<HomepageFeatures/>
<div className="container">
<CodeBlock
language="kotlin"
// title="A simplified model of an Order process:"
showLineNumbers>
{`
<CodeBlock
language="kotlin"
// title="A simplified model of an Order process:"
showLineNumbers>
{`
typealias OrderDecider = Decider<OrderCommand?, Order?, OrderEvent?>
fun orderDecider() = OrderDecider(
Expand Down Expand Up @@ -81,9 +81,17 @@ fun orderDecider() = OrderDecider(
// https://github.com/fraktalio/fmodel-spring-demo
// https://github.com/fraktalio/fmodel-ktor-demo
`}
</CodeBlock>
</div>
</CodeBlock>
</div>
<div className={styles.buttons}>
<Link
className="button button--primary button--lg"
to="/docs/intro">
Get Started
</Link>

</div>
<br/>
</main>
</Layout>
);
Expand Down

0 comments on commit 67565ed

Please sign in to comment.