feat: add icons to landing page cards
This commit is contained in:
parent
b60f9004a7
commit
bd5ab17227
1 changed files with 29 additions and 17 deletions
|
|
@ -1,5 +1,13 @@
|
||||||
import styled from "@emotion/styled"
|
import styled from "@emotion/styled"
|
||||||
import { Card as Card_, CardContent, Grid, Typography } from "@mui/material"
|
import { Box, Card as Card_, CardContent, Grid, Typography } from "@mui/material"
|
||||||
|
import {
|
||||||
|
AutoMode as AutoModeIcon,
|
||||||
|
BugReport as BugReportIcon,
|
||||||
|
Cloud as CloudIcon,
|
||||||
|
School as SchoolIcon,
|
||||||
|
SettingsSuggest as SettingsSuggestIcon,
|
||||||
|
SvgIconComponent
|
||||||
|
} from "@mui/icons-material"
|
||||||
import { Link } from "gatsby"
|
import { Link } from "gatsby"
|
||||||
import Layout from "../components/organisms/Layout"
|
import Layout from "../components/organisms/Layout"
|
||||||
|
|
||||||
|
|
@ -7,6 +15,20 @@ const Card = styled(Card_)`
|
||||||
height: 100%;
|
height: 100%;
|
||||||
`
|
`
|
||||||
|
|
||||||
|
type IconProps = {
|
||||||
|
Icon: SvgIconComponent
|
||||||
|
title: string
|
||||||
|
}
|
||||||
|
|
||||||
|
const Title = ({ Icon, title }: IconProps) => (
|
||||||
|
<Box display="flex" gap={1}>
|
||||||
|
<Typography variant="h5" gutterBottom>
|
||||||
|
{title}
|
||||||
|
</Typography>
|
||||||
|
<Icon fontSize="large" />
|
||||||
|
</Box>
|
||||||
|
)
|
||||||
|
|
||||||
const IndexPage = () => {
|
const IndexPage = () => {
|
||||||
return (
|
return (
|
||||||
<Layout pageTitle="Home">
|
<Layout pageTitle="Home">
|
||||||
|
|
@ -14,11 +36,9 @@ const IndexPage = () => {
|
||||||
<Grid item xs={4}>
|
<Grid item xs={4}>
|
||||||
<Card>
|
<Card>
|
||||||
<CardContent>
|
<CardContent>
|
||||||
<Typography variant="h5" gutterBottom>
|
<Title Icon={CloudIcon} title="Cloud" />
|
||||||
Cloud
|
|
||||||
</Typography>
|
|
||||||
|
|
||||||
I'm experienced in designing & implementing Cloud-native software on all major Cloud platforms that is tailored to the customer's needs. Containers, microservices, serverless setups — I'm familiar with all the important tools.
|
I'm experienced in designing & implementing Cloud-native solutions tailored to highly specialised needs. Containers, microservices, serverless setups — I'm familiar with all the important tools.
|
||||||
</CardContent>
|
</CardContent>
|
||||||
</Card>
|
</Card>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
@ -26,9 +46,7 @@ const IndexPage = () => {
|
||||||
<Grid item xs={4}>
|
<Grid item xs={4}>
|
||||||
<Card>
|
<Card>
|
||||||
<CardContent>
|
<CardContent>
|
||||||
<Typography variant="h5" gutterBottom>
|
<Title Icon={BugReportIcon} title="Type safety" />
|
||||||
Type safety
|
|
||||||
</Typography>
|
|
||||||
|
|
||||||
I love strong type systems. They avoid runtime exceptions like{" "}
|
I love strong type systems. They avoid runtime exceptions like{" "}
|
||||||
<Link to="https://en.wikipedia.org/wiki/Null_pointer#History">
|
<Link to="https://en.wikipedia.org/wiki/Null_pointer#History">
|
||||||
|
|
@ -42,9 +60,7 @@ const IndexPage = () => {
|
||||||
<Grid item xs={4}>
|
<Grid item xs={4}>
|
||||||
<Card>
|
<Card>
|
||||||
<CardContent>
|
<CardContent>
|
||||||
<Typography variant="h5" gutterBottom>
|
<Title Icon={SettingsSuggestIcon} title="Reproducibility" />
|
||||||
Reproducibility
|
|
||||||
</Typography>
|
|
||||||
|
|
||||||
"But it works on my machine" — how many times did you hear this?
|
"But it works on my machine" — how many times did you hear this?
|
||||||
Running into issues building software can be frustrating & time consuming.
|
Running into issues building software can be frustrating & time consuming.
|
||||||
|
|
@ -57,9 +73,7 @@ const IndexPage = () => {
|
||||||
<Grid item xs={4}>
|
<Grid item xs={4}>
|
||||||
<Card>
|
<Card>
|
||||||
<CardContent>
|
<CardContent>
|
||||||
<Typography variant="h5" gutterBottom>
|
<Title Icon={AutoModeIcon} title="DevOps" />
|
||||||
DevOps
|
|
||||||
</Typography>
|
|
||||||
|
|
||||||
Plan, Develop, Deliver, Operate — Repeat
|
Plan, Develop, Deliver, Operate — Repeat
|
||||||
DevOps is about continually providing value to customers.
|
DevOps is about continually providing value to customers.
|
||||||
|
|
@ -72,9 +86,7 @@ const IndexPage = () => {
|
||||||
<Grid item xs={4}>
|
<Grid item xs={4}>
|
||||||
<Card>
|
<Card>
|
||||||
<CardContent>
|
<CardContent>
|
||||||
<Typography variant="h5" gutterBottom>
|
<Title Icon={SchoolIcon} title="Learning" />
|
||||||
Learning
|
|
||||||
</Typography>
|
|
||||||
|
|
||||||
Software development is such a vast field and I love learning about new technologies.
|
Software development is such a vast field and I love learning about new technologies.
|
||||||
You can expect software built on modern state-of-the-art technologies & methodologies from me.
|
You can expect software built on modern state-of-the-art technologies & methodologies from me.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue