From f049130e0f97f6f56c5655176bf9c51d6f4b30ae Mon Sep 17 00:00:00 2001 From: pouliens Date: Wed, 26 Mar 2025 16:55:43 +0000 Subject: [PATCH] updated dark theme style --- src/components/AnnouncementBanner.astro | 2 +- src/components/CaseStudiesPreview.astro | 4 +- src/components/CoCreationMethodsList.astro | 2 +- src/components/CoDesignDefinition.astro | 8 +-- src/components/CommunityComponent.astro | 20 ++++---- src/components/FAQ.astro | 26 +++++----- src/components/Footer.astro | 4 +- src/components/GetInvolved.astro | 18 +++---- src/components/Hero.astro | 2 +- src/components/HowCanThisToolkitHelpYou.astro | 16 +++--- src/components/LatestCaseStudies.astro | 4 +- src/components/LatestTools.astro | 6 +-- src/components/Nav.astro | 4 +- src/components/Team.astro | 32 ++++++------ src/components/ToolkitPreview.astro | 4 +- src/pages/about.astro | 26 +++------- src/pages/case-studies.astro | 2 +- src/pages/toolkit.astro | 50 +++++++++---------- src/styles/global.css | 4 +- 19 files changed, 112 insertions(+), 122 deletions(-) diff --git a/src/components/AnnouncementBanner.astro b/src/components/AnnouncementBanner.astro index acd6ebd..920e543 100644 --- a/src/components/AnnouncementBanner.astro +++ b/src/components/AnnouncementBanner.astro @@ -10,7 +10,7 @@ and suggestions:

ux@bgs.ac.uk diff --git a/src/components/CaseStudiesPreview.astro b/src/components/CaseStudiesPreview.astro index 8009a5a..e6a4410 100644 --- a/src/components/CaseStudiesPreview.astro +++ b/src/components/CaseStudiesPreview.astro @@ -34,7 +34,7 @@ const { data, slug } = Astro.props.project;

{data.title}

@@ -48,7 +48,7 @@ const { data, slug } = Astro.props.project; }
-

+

{data.description}

{method.title} -

+

{method.description}

diff --git a/src/components/CoDesignDefinition.astro b/src/components/CoDesignDefinition.astro index 211475a..d3656dd 100644 --- a/src/components/CoDesignDefinition.astro +++ b/src/components/CoDesignDefinition.astro @@ -25,7 +25,7 @@

Shared Ownership

-

+

Everyone involved in the project, including users, stakeholders, and designers, shares responsibility for the design process and its outcomes.

@@ -39,7 +39,7 @@

Active Participation

-

+

Users and stakeholders actively contribute their knowledge, experiences, and perspectives throughout the entire design process.

@@ -53,7 +53,7 @@

Open Communication

-

+

Open and honest communication is essential, fostering a safe space for sharing ideas, feedback, and concerns.

@@ -67,7 +67,7 @@

Iterative Process

-

+

Co-design is not a linear process; it involves continuous cycles of prototyping, testing, and refining solutions based on user feedback.

diff --git a/src/components/CommunityComponent.astro b/src/components/CommunityComponent.astro index 9b544d7..5c2a3d9 100644 --- a/src/components/CommunityComponent.astro +++ b/src/components/CommunityComponent.astro @@ -12,11 +12,11 @@

Contribute to the Co-Creation Toolkit

-

+

This toolkit is a collaborative effort, and we welcome your contributions! Help us make environmental data tools and services better for everyone. @@ -54,10 +54,10 @@ d="M16 3.13a4 4 0 0 1 0 7.75">

-

+

Share Case Studies

-

+

Share co-design applications in environmental data projects. Inspire others with your real-world examples.

@@ -82,10 +82,10 @@ d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z">
-

+

Add Toolkit Resources

-

+

Contribute templates, guides, or documents to help others use co-design and UX best practices.

@@ -111,10 +111,10 @@ >
-

+

Suggest Improvements / Provide Feedback

-

+

Be part of the EDS Co-Creation Toolkit community! Discuss, ask questions, and suggest topics on our

diff --git a/src/components/FAQ.astro b/src/components/FAQ.astro index 28fc18c..e6cb4fa 100644 --- a/src/components/FAQ.astro +++ b/src/components/FAQ.astro @@ -5,7 +5,7 @@

Frequently
Asked Questions

- +
@@ -14,78 +14,78 @@
-
-

+

This toolkit is designed for anyone involved in creating environmental data services and products, including researchers, developers, designers, and project managers.

-
-
-
-
- diff --git a/src/components/Footer.astro b/src/components/Footer.astro index f4751ba..4775e27 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -26,12 +26,12 @@ const currentYear = new Date().getFullYear(); margin-top: auto; padding: 3rem 2rem 3rem; text-align: center; - color: var(--gray-400); + /* color: var(--gray-400); */ font-size: var(--text-sm); } footer a { - color: var(--gray-400); + /* color: var(--gray-400); */ text-decoration: 1px solid underline transparent; text-underline-offset: 0.25em; transition: text-decoration-color var(--theme-transition); diff --git a/src/components/GetInvolved.astro b/src/components/GetInvolved.astro index e35699b..4d77db6 100644 --- a/src/components/GetInvolved.astro +++ b/src/components/GetInvolved.astro @@ -43,7 +43,7 @@

Email Us

-

+

Have questions, feedback, or ideas you'd like to share directly? Reach out to our team at ux@bgs.ac.uk.

@@ -98,7 +98,7 @@

Join the Discussion on GitHub

-

+

Connect with other creators, ask questions, suggest new topics, and participate in ongoing conversations on our GitHub Discussions page.

@@ -151,7 +151,7 @@

Contribute Directly

-

+

Share your knowledge by adding new case studies or toolkit resources, or by improving existing ones.

diff --git a/src/components/Hero.astro b/src/components/Hero.astro index f86322d..18ec6b4 100644 --- a/src/components/Hero.astro +++ b/src/components/Hero.astro @@ -11,7 +11,7 @@ const { align = "center", tagline, title, subheading } = Astro.props;
-

{title}

+

{title}

{tagline &&

{tagline}

}
diff --git a/src/components/HowCanThisToolkitHelpYou.astro b/src/components/HowCanThisToolkitHelpYou.astro index 7616a22..9155653 100644 --- a/src/components/HowCanThisToolkitHelpYou.astro +++ b/src/components/HowCanThisToolkitHelpYou.astro @@ -35,10 +35,10 @@ >
-

+

Understand Your Users

-

+

Learn proven techniques for gathering insights into the needs, behaviors, and pain points of your target audience.

@@ -69,10 +69,10 @@ >
-

+

Design Effective Solutions

-

+

Discover methods for translating user insights into user-friendly and impactful environmental data products and services.

@@ -101,10 +101,10 @@ >
-

+

Test and Refine

-

+

Explore approaches for evaluating your solutions with users, gathering feedback, and iterating for continuous improvement.

@@ -135,10 +135,10 @@ >
-

+

Facilitate Collaboration

-

+

Learn how to build strong partnerships with stakeholders throughout the design process, ensuring diverse perspectives are included.

diff --git a/src/components/LatestCaseStudies.astro b/src/components/LatestCaseStudies.astro index 7080c62..434fcbf 100644 --- a/src/components/LatestCaseStudies.astro +++ b/src/components/LatestCaseStudies.astro @@ -47,7 +47,7 @@ const latestCaseStudies = (await getCollection("case-studies"))
-

+

{caseStudy.data.title}

@@ -57,7 +57,7 @@ const latestCaseStudies = (await getCollection("case-studies")) ))}
-

+

{caseStudy.data.description}

-

+

{latestTool.data.title}

@@ -52,10 +52,10 @@ const latestTools = (await getCollection("toolkit")) ))}
-

+

{latestTool.data.description}

-
diff --git a/src/components/Team.astro b/src/components/Team.astro index 1aa7bb1..cca14b8 100644 --- a/src/components/Team.astro +++ b/src/components/Team.astro @@ -47,7 +47,7 @@
Avatar
-

+

Paulius Tvaranavičius

-

+

UX Designer with a background in human-computer interaction and psychology. I enjoy creating digital products, running design sprint workshops, and applying human-centred research and design methods to @@ -78,7 +78,7 @@

Avatar
-

+

Carl Watson

-

+

Experienced business analyst and agile project manager. I specialise in integrating user research, UX design, and service design principles into the development of environmental data services. My focus is on @@ -109,7 +109,7 @@

Avatar
-

+

Poppy Townsend

-

+

Community Manager at CEDA. I bring experience in environmental science communication, impact evaluation, and data management to help connect the Co-Creation Toolkit with its users. I focus on gathering user @@ -140,7 +140,7 @@

Avatar
-

+

Shwetha Raveendran

-

+

UX/UI Designer at BGS, specialising in co-creating user-centered environmental data services. I bring expertise in user research, UI design, prototyping, and translating user needs into effective @@ -170,7 +170,7 @@

Avatar
-

+

David Green

-

+

I am a Design Researcher with a background in documentary making, digital arts, and experience-centered design. I am interested in applying this knowledge to the design of new systems and services to @@ -259,7 +259,7 @@ class="col-span-full lg:col-span-1 group flex flex-col justify-center text-center rounded-xl p-4 md:p-6 border border-dashed border-gray-200 hover:shadow-2xs focus:outline-hidden focus:shadow-2xs dark:border-neutral-700" href="#how-to-get-involved" > -

+

Get Involved!

diff --git a/src/components/ToolkitPreview.astro b/src/components/ToolkitPreview.astro index 899bf17..e3c1011 100644 --- a/src/components/ToolkitPreview.astro +++ b/src/components/ToolkitPreview.astro @@ -30,7 +30,7 @@ const { data, slug } = Astro.props.project;

{data.title}

@@ -43,7 +43,7 @@ const { data, slug } = Astro.props.project; )) }
-

+

{data.description}

-
+
-
-
-
-

- About the Co-Creation Toolkit -

-

- This toolkit provides the resources and guidance you need to - create user-friendly environmental data services. Explore case - studies, access UX templates, and learn how co-design can help you - collaborate with users and build effective solutions. -

-
-
-
+
diff --git a/src/pages/case-studies.astro b/src/pages/case-studies.astro index bcefe23..65f2ef2 100644 --- a/src/pages/case-studies.astro +++ b/src/pages/case-studies.astro @@ -18,7 +18,7 @@ const caseStudies = (await getCollection("case-studies")).sort(
diff --git a/src/pages/toolkit.astro b/src/pages/toolkit.astro index 67101c6..192a905 100644 --- a/src/pages/toolkit.astro +++ b/src/pages/toolkit.astro @@ -18,7 +18,7 @@ const toolkitTools = (await getCollection("toolkit")).sort(
@@ -34,14 +34,14 @@ const toolkitTools = (await getCollection("toolkit")).sort(