Skip to content
This repository was archived by the owner on Jan 4, 2023. It is now read-only.

Commit f4e1b73

Browse files
authoredJul 15, 2021
Merge pull request #2 from ghost/master
Solves things mentioned in Fixed typo #1, Adds links to features (eg. "Visual Studio Code and Atom plugins"), Uses alert in 404 page (helps to maybe try and fix it?), and Try using the transparent icon located at /site/src/images/navbar/pv8-logo.svg
2 parents d23fc68 + d32aecc commit f4e1b73

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed
 

‎site/src/components/cta.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function Cta() {
3434
<svg className="w-3 h-3 fill-current text-palette-14 mr-2 flex-shrink-0" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
3535
<path d="M10.28 2.28L3.989 8.575 1.695 6.28A1 1 0 00.28 7.695l3 3a1 1 0 001.414 0l7-7A1 1 0 0010.28 2.28z" />
3636
</svg>
37-
<span>Support Developement</span>
37+
<span>Support development</span>
3838
</li>
3939
</ul>
4040

‎site/src/components/features.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ function Features() {
7777
<svg className="w-3 h-3 fill-current text-palette-14 mr-2 flex-shrink-0" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
7878
<path d="M10.28 2.28L3.989 8.575 1.695 6.28A1 1 0 00.28 7.695l3 3a1 1 0 001.414 0l7-7A1 1 0 0010.28 2.28z" />
7979
</svg>
80-
<span>Visual Studio Code and Atom plugins</span>
80+
<p><a href="https://marketplace.visualstudio.com/items?itemName=PixelVision8.pixel-vision-8">Visual Studio Code</a> and <a href="https://atom.io/packages/pixel-vision-8-lua-api">Atom</a> plugins</p>
8181
</li>
8282
<li className="flex items-center mb-2">
8383
<svg className="w-3 h-3 fill-current text-palette-14 mr-2 flex-shrink-0" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
@@ -89,7 +89,7 @@ function Features() {
8989
<svg className="w-3 h-3 fill-current text-palette-14 mr-2 flex-shrink-0" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
9090
<path d="M10.28 2.28L3.989 8.575 1.695 6.28A1 1 0 00.28 7.695l3 3a1 1 0 001.414 0l7-7A1 1 0 0010.28 2.28z" />
9191
</svg>
92-
<span>Save Tiled json files</span>
92+
<span>Save tiled json files</span>
9393
</li>
9494
</ul>
9595
</div>

‎site/src/elements/Logo.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const Logo = ({
2121
<h1 className="m-0">
2222
<Link to="/">
2323
<Image
24-
src={require('./../images/logo.svg')}
24+
src={require('./../images/navbar/pv8-logo.svg')}
2525
alt="Open"
2626
width={48}
2727
height={48}
@@ -32,4 +32,4 @@ const Logo = ({
3232
);
3333
}
3434

35-
export default Logo;
35+
export default Logo;

‎site/src/pages/404.js

+7-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,13 @@ import Layout from '../components/layout'
33

44
const NotFoundPage = () => (
55
<Layout>
6-
<h1>NOT FOUND</h1>
7-
<p>You just hit a route that doesn&#39;t exist... the sadness.</p>
6+
<div class="flex mb-20 mx-auto max-w-3xl bg-palette-5 border-t-4 border-palette-6 rounded-b text-palette-15 px-4 py-3 shadow-md" role="alert">
7+
<Image src={require('../images/icons/file-drive-icon.svg')} alt="File Drive Icon" width={92} height={92} />
8+
<div className="ml-5">
9+
<p class="h4 text-palette-15">Not Found</p>
10+
<p class="text-m">You just hit a route that doesn&#39;t exist... the sadness.</p>
11+
</div>
12+
</div>
813
</Layout>
914
)
1015

0 commit comments

Comments
 (0)
This repository has been archived.