Skip to content

Commit

Permalink
Update font and captions
Browse files Browse the repository at this point in the history
  • Loading branch information
shellbear committed Jun 2, 2021
1 parent ea5fe4a commit 7491415
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 21 deletions.
2 changes: 1 addition & 1 deletion components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ const Layout: React.FC<LayoutProps> = ({
</Container>
<FooterGrid>
{links.map(({ url, icon: Icon }) => (
<Link key={url} opacity={0.7} href={url}>
<Link key={url} target="_blank" opacity={0.7} href={url}>
<Icon size={22} />
</Link>
))}
Expand Down
2 changes: 2 additions & 0 deletions components/Link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ const Link = styled.a<LinkProps>`
color: inherit;
text-decoration: none;
cursor: pointer;
border-bottom: none;
padding: 0;
${compose(opacity, color, fontWeight, fontSize, textTransform, background)}
Expand Down
15 changes: 5 additions & 10 deletions pages/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,22 +93,17 @@ const About: React.FC<AboutProps> = ({ experiences }) => {
);

return (
<Container gridGap="">
<Container>
<Head>
<title>About</title>
</Head>
<Container alignContent="center" alignItems="center">
<Title fontSize={['48px', '74px']}>From student to CTO</Title>
<Container maxWidth={['100%', '60rem']}>
<Container maxWidth={['100%', '700px']}>
<Text>
I'm passionated by computers since I'm young. I always helped my
family and friends to understand how stuff works.
<br />
<br />
During my high school years I discovered the world of cybersecurity.
I was writing malware for MacOS and Linux, created phishing pages,
fake hotspots, bruteforcing wifi networks, accessing cameras in my
town and playing with my jailbroken iPhone kernel.
CTO of <a href="https://shareview.fr/">Shareview </a>Freelancer
since my 18's and studying at&nbsp;
<a href="https://www.epitech.eu/en/">Epitech</a>.
</Text>
</Container>
</Container>
Expand Down
20 changes: 12 additions & 8 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,19 @@ const Home: React.FC = () => {
I build cloud software.
</Title>
</Container>
<Container maxWidth="900px" gridGap="3rem">
<Container maxWidth="700px" gridGap="3rem">
<Container>
<Text textAlign="center">
I'm a Full Stack developer with experience in DevOps, Backend,
Frontend and mobile development. <br />
I'm currently <b>CTO</b> of <b>Shareview</b> and living in Seoul,
South-Korea.
I'm a Full Stack developer with experience in DevOps,
Backend,&nbsp; Frontend and mobile development. I'm currently CTO
of&nbsp;
<a href="https://shareview.fr">Shareview</a> and living in
Seoul,&nbsp; South-Korea.
</Text>
</Container>
<a href="/about">
<Link href="/about">
<Button>More about me &rarr;</Button>
</a>
</Link>
</Container>
</Container>

Expand Down Expand Up @@ -74,7 +75,10 @@ const Home: React.FC = () => {
Say hello
</Button>
</Link>
<Link href="https://calendly.com/antoine-ordonez/intro">
<Link
target="_blank"
href="https://calendly.com/antoine-ordonez/intro"
>
<Button
width="100%"
backgroundColor="rgb(226,232,240)"
Expand Down
15 changes: 13 additions & 2 deletions styles/globals.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

html,
body {
padding: 0;
Expand All @@ -7,8 +9,17 @@ body {
}

a {
color: inherit;
font-weight: bold;
color: black;
font-weight: 700;
display: inline-block;
transition: all 200ms ease;
text-decoration: none;
border-bottom: 2px solid black;
}


a:hover {
border-bottom-color: transparent;
}

* {
Expand Down

0 comments on commit 7491415

Please sign in to comment.