diff --git a/src/components/AboutMeEntry.tsx b/src/components/AboutMeEntry.tsx new file mode 100644 index 0000000..dc30448 --- /dev/null +++ b/src/components/AboutMeEntry.tsx @@ -0,0 +1,26 @@ +import React, {FunctionComponent} from "react"; + +type Props = { + title: string + url: string + description: string +} + +export const AboutMeEntry: FunctionComponent = (props: Props) => { + return ( +
+ +
+ +
+
+
+

{props.title}

+
+

+ {props.description} +

+
+ ) +} diff --git a/src/components/Github.tsx b/src/components/Github.tsx new file mode 100644 index 0000000..077726f --- /dev/null +++ b/src/components/Github.tsx @@ -0,0 +1,11 @@ +import {AboutMeEntry} from "@/components/AboutMeEntry"; +import {FunctionComponent} from "react"; + + +export const Github: FunctionComponent = () => { + return +} \ No newline at end of file diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 8f1d5f7..cd05754 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -1,4 +1,5 @@ import 'bootstrap/dist/css/bootstrap.css' +import {Github} from "@/components/Github"; export default function Home() { return ( @@ -6,29 +7,9 @@ export default function Home() {

My stuff

-
- -
- -
-
-
-

Github

-
-

- My main public git repositories with notable repos: -

    -
  • ansible - playbook for my homelab
  • -
  • Prusa-Firmware - slightly modified firmware for my 3d printer
  • -
  • dwm - my customized version of dwm
  • -
-

- -
+
- ) }