From 01f0e77282e00e0d089894f42fc86006e210f7a0 Mon Sep 17 00:00:00 2001 From: Przemek Grondek Date: Thu, 14 Sep 2023 23:41:47 +0200 Subject: [PATCH] Add gitea Closes #2 --- src/components/Gitea.tsx | 12 ++++++++++++ src/components/Github.tsx | 4 ++-- src/pages/index.tsx | 4 +++- 3 files changed, 17 insertions(+), 3 deletions(-) create mode 100644 src/components/Gitea.tsx diff --git a/src/components/Gitea.tsx b/src/components/Gitea.tsx new file mode 100644 index 0000000..a77438f --- /dev/null +++ b/src/components/Gitea.tsx @@ -0,0 +1,12 @@ +import {AboutMeEntry} from "@/components/AboutMeEntry"; +import {FunctionComponent} from "react"; + + +export const Gitea: FunctionComponent = () => { + return +} diff --git a/src/components/Github.tsx b/src/components/Github.tsx index 9e97b6c..75be3df 100644 --- a/src/components/Github.tsx +++ b/src/components/Github.tsx @@ -6,7 +6,7 @@ export const Github: FunctionComponent = () => { return -} \ No newline at end of file +} diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 3c0f794..9f908df 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -2,13 +2,15 @@ import 'bootstrap/dist/css/bootstrap.css' import {Github} from "@/components/Github"; import {LinkedIn} from "@/components/LinkedIn"; import {Printables} from "@/components/Printables"; +import {Gitea} from "@/components/Gitea"; export default function Home() { return (

Przemek Grondek

-
+
+ -- 2.45.2