From f046d338d447a3e4e953e39d68c2bf61d8abac62 Mon Sep 17 00:00:00 2001 From: Sarah Jamie Lewis Date: Fri, 3 Jun 2022 06:45:27 -0700 Subject: [PATCH] Front page --- docusaurus.config.js | 4 +- src/components/HomepageFeatures/index.js | 52 ++++++++++++------------ src/pages/index.js | 6 +-- 3 files changed, 31 insertions(+), 31 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index 5f8165db..27ba1179 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -6,8 +6,8 @@ const darkCodeTheme = require('prism-react-renderer/themes/dracula'); /** @type {import('@docusaurus/types').Config} */ const config = { - title: 'Cwtch User\'s Handbook', - tagline: 'How to use Cwtch', + title: 'The Cwtch Handbook', + tagline: 'Your Guide to setting up and using Surveillance Resistant Infrastructure', url: 'https://docs.cwtch.im', baseUrl: '/', onBrokenLinks: 'throw', diff --git a/src/components/HomepageFeatures/index.js b/src/components/HomepageFeatures/index.js index 6ae6b725..78f410ba 100644 --- a/src/components/HomepageFeatures/index.js +++ b/src/components/HomepageFeatures/index.js @@ -35,30 +35,30 @@ const FeatureList = [ }, ]; -// function Feature({Svg, title, description}) { -// return ( -//
-//
-// -//
-//
-//

{title}

-//

{description}

-//
-//
-// ); -// } +function Feature({Svg, title, description}) { + return ( +
+
+ +
+
+

{title}

+

{description}

+
+
+ ); +} -// export default function HomepageFeatures() { -// return ( -//
-//
-//
-// {FeatureList.map((props, idx) => ( -// -// ))} -//
-//
-//
-// ); -// } +export default function HomepageFeatures() { + return ( +
+
+
+ {FeatureList.map((props, idx) => ( + + ))} +
+
+
+ ); +} diff --git a/src/pages/index.js b/src/pages/index.js index ecd5aa64..b433e447 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -29,11 +29,11 @@ export default function Home() { const {siteConfig} = useDocusaurusContext(); return ( + title={`${siteConfig.title}`} + description="The Cwtch Handbook">
- +
);