From 2605a54c1c6c5645608e78e86b90f5a84625eed3 Mon Sep 17 00:00:00 2001 From: James Wilmot Date: Thu, 24 Oct 2024 22:16:18 +1100 Subject: [PATCH] InlineBrand --- src/components/branding/InlineBrand.astro | 11 +++++++++ src/pages/index.astro | 19 +++++++------- src/pages/team.astro | 30 ++++++++++++----------- src/styles/styles.scss | 2 ++ 4 files changed, 39 insertions(+), 23 deletions(-) create mode 100644 src/components/branding/InlineBrand.astro diff --git a/src/components/branding/InlineBrand.astro b/src/components/branding/InlineBrand.astro new file mode 100644 index 0000000..2d09fc6 --- /dev/null +++ b/src/components/branding/InlineBrand.astro @@ -0,0 +1,11 @@ +--- + +--- + + + + opendatakit diff --git a/src/pages/index.astro b/src/pages/index.astro index bac63ca..978b54c 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -2,6 +2,9 @@ import BaseHead from "../components/BaseHead.astro"; import Header from "../components/Header.astro"; import Footer from "../components/Footer.astro"; + +import InlineBrand from "../components/branding/InlineBrand.astro"; + import { SITE_TITLE, SITE_DESCRIPTION } from "../consts"; var title = `${SITE_TITLE}`; @@ -10,10 +13,6 @@ var title = `${SITE_TITLE}`;