-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
1,199 additions
and
291 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
Oops, something went wrong.