Skip to content

Commit 579e321

Browse files
Merge pull request #1314 from system76/updates
Homepage tweaks
2 parents 60d1add + e71623c commit 579e321

File tree

5 files changed

+18
-21
lines changed

5 files changed

+18
-21
lines changed

content/clear-cache-and-cookies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ facebookImage: /_social/article
1515
twitterImage: /_social/article
1616

1717
hidden: false
18-
section: getting-help
18+
section: software-troubleshooting
1919
tableOfContents: true
2020
---
2121

content/new-web-infrastructure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ facebookImage: /_social/article
1515
twitterImage: /_social/article
1616

1717
hidden: false
18-
section: getting-help
18+
section: repairs-returns
1919
tableOfContents: true
2020
---
2121

content/software-triage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ facebookImage: /_social/article
1313
twitterImage: /_social/article
1414

1515
hidden: false
16-
section: getting-help
16+
section: software-troubleshooting
1717
tableOfContents: true
1818
---
1919

pages/index.vue

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
<div class="px-4 py-3 flex flex-col bg-white rounded-lg">
107107
<div class="mx-4 my-4 md:min-h-[4rem]">
108108
<h2 class="sys-article-h3">
109-
Support Articles
109+
Support Documentation
110110
</h2>
111111

112112
<p class="text-lg my-4 text-warm-gray-600">
@@ -117,56 +117,56 @@
117117
<ul class="space-y-2">
118118
<li>
119119
<nuxt-link
120-
to="#troubleshoot"
120+
to="/articles/guides"
121121
class="flex items-center px-4 py-3 transition duration-150 ease-in-out rounded-md group hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-orange-500"
122122
>
123123
<div class="flex items-center justify-center flex-shrink-0 w-10 h-10 rounded-full bg-warm-gray-600 text-white sm:h-12 sm:w-12 transition duration-150 ease-in-out group-hover:bg-orange-500 group-focus:bg-orange-500">
124-
<font-awesome-icon icon="search" />
124+
<font-awesome-icon icon="screwdriver" />
125125
</div>
126126
<div class="ml-4">
127127
<p class="font-bold text-warm-gray-800">
128-
Troubleshoot
128+
System76 Tech Docs
129129
</p>
130130
<p class="text-warm-gray-600">
131-
Detailed solutions for prominent issues.
131+
Diagrams and components for System76 hardware.
132132
</p>
133133
</div>
134134
</nuxt-link>
135135
</li>
136136

137137
<li>
138138
<nuxt-link
139-
to="#tune"
139+
to="#troubleshoot"
140140
class="flex items-center px-4 py-3 transition duration-150 ease-in-out rounded-md group hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-orange-500"
141141
>
142142
<div class="flex items-center justify-center flex-shrink-0 w-10 h-10 rounded-full bg-warm-gray-600 text-white sm:h-12 sm:w-12 transition duration-150 ease-in-out group-hover:bg-orange-500 group-focus:bg-orange-500">
143-
<font-awesome-icon icon="wrench" />
143+
<font-awesome-icon icon="search" />
144144
</div>
145145
<div class="ml-4">
146146
<p class="font-bold text-warm-gray-800">
147-
Tune
147+
Troubleshoot
148148
</p>
149149
<p class="text-warm-gray-600">
150-
Information on how to upgrade, maintain, and customize your system.
150+
Detailed solutions for prominent issues.
151151
</p>
152152
</div>
153153
</nuxt-link>
154154
</li>
155155

156156
<li>
157157
<nuxt-link
158-
to="#learn"
158+
to="#tune"
159159
class="flex items-center px-4 py-3 transition duration-150 ease-in-out rounded-md group hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-orange-500"
160160
>
161161
<div class="flex items-center justify-center flex-shrink-0 w-10 h-10 rounded-full bg-warm-gray-600 text-white sm:h-12 sm:w-12 transition duration-150 ease-in-out group-hover:bg-orange-500 group-focus:bg-orange-500">
162-
<font-awesome-icon icon="graduation-cap" />
162+
<font-awesome-icon icon="wrench" />
163163
</div>
164164
<div class="ml-4">
165165
<p class="font-bold text-warm-gray-800">
166-
Learn
166+
Tune
167167
</p>
168168
<p class="text-warm-gray-600">
169-
A general guide for new users. Welcome!
169+
Information on how to upgrade, maintain, and customize your system.
170170
</p>
171171
</div>
172172
</nuxt-link>
@@ -306,9 +306,6 @@ export default {
306306
results: [],
307307
308308
listings: [{
309-
title: 'Getting Help',
310-
section: 'getting-help'
311-
}, {
312309
title: 'Troubleshoot',
313310
section: 'troubleshoot',
314311
listings: [{

plugins/font-awesome.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ import { faArrowLeft } from '@fortawesome/free-solid-svg-icons/faArrowLeft'
33
import { faBars } from '@fortawesome/free-solid-svg-icons/faBars'
44
import { faBolt } from '@fortawesome/free-solid-svg-icons/faBolt'
55
import { faCog } from '@fortawesome/free-solid-svg-icons/faCog'
6-
import { faGraduationCap } from '@fortawesome/free-solid-svg-icons/faGraduationCap'
76
import { faPaperPlane } from '@fortawesome/free-solid-svg-icons/faPaperPlane'
87
import { faPhone } from '@fortawesome/free-solid-svg-icons/faPhone'
98
import { faSearch } from '@fortawesome/free-solid-svg-icons/faSearch'
109
import { faTicketAlt } from '@fortawesome/free-solid-svg-icons/faTicketAlt'
1110
import { faUser } from '@fortawesome/free-solid-svg-icons/faUser'
1211
import { faWrench } from '@fortawesome/free-solid-svg-icons/faWrench'
12+
import { faScrewdriver } from '@fortawesome/free-solid-svg-icons/faScrewdriver'
1313
import { faGithub } from '@fortawesome/free-brands-svg-icons/faGithub'
1414
import { faUbuntu } from '@fortawesome/free-brands-svg-icons/faUbuntu'
1515
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
@@ -23,13 +23,13 @@ library.add(faArrowLeft)
2323
library.add(faBars)
2424
library.add(faBolt)
2525
library.add(faCog)
26-
library.add(faGraduationCap)
2726
library.add(faPaperPlane)
2827
library.add(faPhone)
2928
library.add(faSearch)
3029
library.add(faTicketAlt)
3130
library.add(faUser)
3231
library.add(faWrench)
32+
library.add(faScrewdriver)
3333
library.add(faGithub)
3434
library.add(faUbuntu)
3535
library.add(faPopOs)

0 commit comments

Comments
 (0)