Add gitea Closes #2 (#4)
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful

Reviewed-on: #4
Co-authored-by: Przemek Grondek <przemek@grondek.pl>
Co-committed-by: Przemek Grondek <przemek@grondek.pl>
This commit is contained in:
Przemek Grondek 2023-09-14 21:44:47 +00:00 committed by Przemek Grondek
parent 905d2d743f
commit ad1736b56a
3 changed files with 17 additions and 3 deletions

12
src/components/Gitea.tsx Normal file
View File

@ -0,0 +1,12 @@
import {AboutMeEntry} from "@/components/AboutMeEntry";
import {FunctionComponent} from "react";
export const Gitea: FunctionComponent<any> = () => {
return <AboutMeEntry
url="https://git.grondek.dev/pgrondek"
title="Gitea"
description="My main public git repository"
icon="bi bi-git"
/>
}

View File

@ -6,7 +6,7 @@ export const Github: FunctionComponent<any> = () => {
return <AboutMeEntry
url="https://github.com/pgrondek"
title="Github"
description="My main public git repository"
description="Mirror of most of my public git repositories"
icon="bi bi-github"
/>
}
}

View File

@ -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 (
<main className={`flex min-h-screen flex-col items-center justify-between p-24`}>
<div className="container">
<h2 className="pb-2 border-bottom">Przemek Grondek</h2>
<div className="row g-4 py-5 row-cols-1 row-cols-lg-3">
<div className="row g-4 py-5 row-cols-1 row-cols-lg-4">
<Gitea/>
<Github/>
<LinkedIn/>
<Printables/>