Skip to content

Commit

Permalink
Improve tagline (#268)
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Berendt <berendt@osism.tech>
  • Loading branch information
berendt committed Dec 21, 2023
1 parent d8d0814 commit 5d9fcb4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const darkCodeTheme = themes.dracula;
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'OSISM – Open Cloud Infrastructure',
tagline: 'Get your data center ready for the cloud.',
tagline: 'Get your data center ready for the mulit-cloud era',
favicon: 'img/favicon.ico',

// Set the production url of your site here
Expand Down
8 changes: 4 additions & 4 deletions src/components/HomepageFeatures/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import styles from './styles.module.css';

const FeatureList = [
{
title: 'Cloud Infrastructure with OpenStack',
title: 'Infrastructure as a Service (IaaS) with OpenStack',
Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default,
description: (
<>
Expand All @@ -13,7 +13,7 @@ const FeatureList = [
),
},
{
title: 'Cloud Network with SONiC & OVN',
title: 'Software Defined Networking (SDN) with SONiC & OVN',
Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default,
description: (
<>
Expand All @@ -22,7 +22,7 @@ const FeatureList = [
),
},
{
title: 'Cloud Storage with Ceph',
title: 'Software Defined Storage (SDS) with Ceph',
Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
description: (
<>
Expand All @@ -31,7 +31,7 @@ const FeatureList = [
),
},
{
title: 'Bare Metal as a Service with Ironic',
title: 'Bare Metal as a Service (BMaaS) with Ironic',
Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default,
description: (
<>
Expand Down
6 changes: 3 additions & 3 deletions src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ function HomepageHeader() {
return (
<header className={clsx('hero hero--primary', styles.heroBanner)}>
<div className="container">
<h1 className="hero__title">{siteConfig.title}</h1>
<p className="hero__subtitle">{siteConfig.tagline}</p>
<h1 className="hero__title">Get your data center ready for the multi-cloud era</h1>
<p className="hero__subtitle">OSISM provides production-grade OpenStack, Ceph & Kubernetes for ISVs, service providers & enterprises</p>
</div>
</header>
);
Expand All @@ -23,7 +23,7 @@ export default function Home() {
const {siteConfig} = useDocusaurusContext();
return (
<Layout
description="Open Cloud Infrastructure">
description="OSISM – Open Cloud Infrastructure">
<HomepageHeader />
<main>
<HomepageFeatures />
Expand Down

0 comments on commit 5d9fcb4

Please sign in to comment.