Skip to content

Commit

Permalink
👕 prettier fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
RVledder committed Feb 21, 2019
1 parent 519644f commit 3a56cac
Show file tree
Hide file tree
Showing 9 changed files with 1,199 additions and 291 deletions.
33 changes: 18 additions & 15 deletions components/Intro.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
import Logo from "../components/Logo";
import React from "react";
import Logo from '../components/Logo';
import React from 'react';

const Intro = () => (
<section>
<Logo width={60} fill="var(--theme-color-primary)" />
<h1 className="title type--inverted">
new <span className="theme-text-color-primary">opportunities</span><br />
require original <span className="theme-text-color-primary">technology</span><br />
give <span className="theme-text-color-primary">it</span> a spin
</h1>
<style jsx>{`
.theme-text-color-primary {
color: var(--theme-color-primary);
}
`}</style>
</section>
<section>
<Logo width={60} fill="var(--theme-color-primary)" />
<h1 className="title type--inverted">
new <span className="theme-text-color-primary">opportunities</span>
<br />
require original{' '}
<span className="theme-text-color-primary">technology</span>
<br />
give <span className="theme-text-color-primary">it</span> a spin
</h1>
<style jsx>{`
.theme-text-color-primary {
color: var(--theme-color-primary);
}
`}</style>
</section>
);

export default Intro;
Loading

0 comments on commit 3a56cac

Please sign in to comment.