1
0
Fork 0
forked from sr2/cloud.sr2.uk

feat: reorganise for cloud content

This commit is contained in:
Iain Learmonth 2026-02-23 19:09:21 +00:00
parent c7d058c599
commit a27970713e
27 changed files with 203 additions and 19 deletions

View file

@ -16,6 +16,19 @@ function HomepageHeader() {
{siteConfig.title}
</Heading>
<p className="hero__subtitle">{siteConfig.tagline}</p>
<div className={styles.buttons}>
<Link
className="button button--primary button--lg disabled"
to="/">
Login to Console 🧑💻
</Link>
<Link
className="button button--secondary button--lg"
to="/docs">
Read the Docs 📚
</Link>
</div>
</div>
</header>
);
@ -26,7 +39,7 @@ export default function Home() {
return (
<Layout
title={`${siteConfig.title}`}
description="A guide for agents, admins, and operators of the CDR Link secure helpdesk platform.">
description="Cloud.">
<HomepageHeader />
<main>
<HomepageFeatures />

View file

@ -21,4 +21,5 @@
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
}