diff options
| author | Kevin Hoerr <kjhoerr@protonmail.com> | 2022-11-28 21:46:31 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-28 21:46:31 -0500 |
| commit | 31eb5143b0fab7befe86ca8c016fb7ea1b401c08 (patch) | |
| tree | f7e9bfecd3f811b34b961c56a444ef3700ef01c7 /src | |
| parent | ffecaf6931f8b6565b567b59a881654d11f4e934 (diff) | |
| download | submelon.dev-31eb5143b0fab7befe86ca8c016fb7ea1b401c08.tar.gz submelon.dev-31eb5143b0fab7befe86ca8c016fb7ea1b401c08.tar.bz2 submelon.dev-31eb5143b0fab7befe86ca8c016fb7ea1b401c08.zip | |
Update build with changes (#27)
* Update filetype
* Update timestamp of app before build
* Fix version specification for step
* Fix BlockLink typing
* Update with my actual role
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/BlockLink.tsx | 8 | ||||
| -rw-r--r-- | src/pages/index.tsx | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/components/BlockLink.tsx b/src/components/BlockLink.tsx index c0f2ad6..6b841f0 100644 --- a/src/components/BlockLink.tsx +++ b/src/components/BlockLink.tsx @@ -1,10 +1,10 @@ import React from "react"; -import { ThemedStyledFunction } from "styled-components"; -import { BlockAnchor, BlockBody, Theme } from "../styles"; +import { BlockAnchor, BlockBody } from "../styles"; type BlockLinkProps = { - children: React.ReactNode; -} & ThemedStyledFunction<"a", Theme>; + children?: React.ReactNode; + as?: undefined; +} & React.LinkHTMLAttributes<HTMLAnchorElement>; const BlockLink = ({ children, ...attributes }: BlockLinkProps) => { return ( diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 10ba281..5ab65f0 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -21,8 +21,8 @@ const IndexPage = (): React.ReactElement => { <BlockBody> <p> I'm a computer science and math graduate from Millersville - University. I work as an IT consultant and specialize in development - operations and systems validation for web applications. + University. I work as a Solutions Architect and specialize in + development operations and systems validation for web applications. </p> <p> My most recent projects have been focused on full-stack development. I |
