|
1 | 1 | <script lang="ts">
|
2 | 2 | import InsetText from "$lib/components/content/InsetText.svelte";
|
3 | 3 | import WarningText from "$lib/components/content/WarningText.svelte";
|
4 |
| - import RelatedContent from "$lib/components/ui/RelatedContent.svelte"; |
5 |
| - import type { RelatedContentSection } from "$lib/components/ui/RelatedContent.svelte"; |
6 |
| -
|
7 |
| - const relatedSections: RelatedContentSection[] = [ |
8 |
| - { |
9 |
| - type: "main", |
10 |
| - id: "related-main", |
11 |
| - title: "Related", |
12 |
| - links: [ |
13 |
| - { title: "Get started guide", base_path: "/get-started/" }, |
14 |
| - { title: "Browse components", base_path: "/components/" }, |
15 |
| - { title: "View patterns", base_path: "/patterns/" }, |
16 |
| - { |
17 |
| - title: "About & Benefits", |
18 |
| - base_path: "/get-started/about-benefits/", |
19 |
| - }, |
20 |
| - ], |
21 |
| - }, |
22 |
| - ]; |
23 | 4 | </script>
|
24 | 5 |
|
25 | 6 | {#snippet ContributingSnippet()}
|
|
41 | 22 | </svelte:head>
|
42 | 23 |
|
43 | 24 | <div class="govuk-grid-row">
|
44 |
| - <div class="govuk-grid-column-two-thirds"> |
| 25 | + <div class="govuk-grid-column-full"> |
45 | 26 | <h1 class="govuk-heading-xl">Community</h1>
|
46 | 27 |
|
47 | 28 | <p class="govuk-body-l">
|
|
50 | 31 | patterns that help teams build better digital services.
|
51 | 32 | </p>
|
52 | 33 |
|
53 |
| - |
54 | 34 | <WarningText
|
55 | 35 | text="This community section is currently being developed. Some pages may not be available yet, but we're working to add comprehensive guidance and resources."
|
56 | 36 | />
|
|
106 | 86 |
|
107 | 87 | <div class="govuk-grid-row govuk-!-margin-top-6">
|
108 | 88 | <div class="govuk-grid-column-one-half">
|
| 89 | + <img |
| 90 | + src="/assets/images/undraw_collaborators_rgw4.svg" |
| 91 | + alt="Illustration of people sharing knowledge and research findings" |
| 92 | + class="govuk-!-margin-bottom-4" |
| 93 | + style="width: 100%; max-width: 200px; height: 150px; object-fit: contain;" |
| 94 | + /> |
109 | 95 | <h3 class="govuk-heading-s">Share your research</h3>
|
110 | 96 | <p class="govuk-body-s">
|
111 | 97 | Help us understand user needs by sharing research findings, usability
|
|
118 | 104 | </p>
|
119 | 105 | </div>
|
120 | 106 | <div class="govuk-grid-column-one-half">
|
| 107 | + <img |
| 108 | + src="/assets/images/undraw_approved-wireframe_odf4.svg" |
| 109 | + alt="Illustration of design feedback and proposing new solutions" |
| 110 | + class="govuk-!-margin-bottom-4" |
| 111 | + style="width: 100%; max-width: 200px; height: 150px; object-fit: contain;" |
| 112 | + /> |
121 | 113 | <h3 class="govuk-heading-s">Propose new solutions</h3>
|
122 | 114 | <p class="govuk-body-s">
|
123 | 115 | Suggest new components or patterns based on common problems you've
|
|
133 | 125 |
|
134 | 126 | <div class="govuk-grid-row govuk-!-margin-top-4">
|
135 | 127 | <div class="govuk-grid-column-one-half">
|
| 128 | + <img |
| 129 | + src="/assets/images/undraw_pull-request_zlsu.svg" |
| 130 | + alt="Illustration of pull requests and component development" |
| 131 | + class="govuk-!-margin-bottom-4" |
| 132 | + style="width: 100%; max-width: 200px; height: 150px; object-fit: contain;" |
| 133 | + /> |
136 | 134 | <h3 class="govuk-heading-s">Develop components</h3>
|
137 | 135 | <p class="govuk-body-s">
|
138 | 136 | Contribute code, help with testing, or improve existing components
|
|
145 | 143 | </p>
|
146 | 144 | </div>
|
147 | 145 | <div class="govuk-grid-column-one-half">
|
| 146 | + <img |
| 147 | + src="/assets/images/undraw_reviewed-docs_g0cg.svg" |
| 148 | + alt="Illustration of reviewing and improving documentation" |
| 149 | + class="govuk-!-margin-bottom-4" |
| 150 | + style="width: 100%; max-width: 200px; height: 150px; object-fit: contain;" |
| 151 | + /> |
148 | 152 | <h3 class="govuk-heading-s">Improve documentation</h3>
|
149 | 153 | <p class="govuk-body-s">
|
150 | 154 | Help make our guidance clearer by suggesting improvements to
|
|
249 | 253 | > to connect with other teams using the library
|
250 | 254 | </li>
|
251 | 255 | </ol>
|
252 |
| - |
253 |
| - |
254 |
| - </div> |
255 |
| - |
256 |
| - <div class="govuk-grid-column-one-third"> |
257 |
| - <RelatedContent sections={relatedSections} /> |
258 | 256 | </div>
|
259 | 257 | </div>
|
0 commit comments