Add LinkedIn and Printables

This commit is contained in:
Przemek Grondek 2023-07-29 00:23:44 +02:00
parent bbb880cf99
commit 33279cf21c
3 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,12 @@
import {AboutMeEntry} from "@/components/AboutMeEntry";
import {FunctionComponent} from "react";
export const LinkedIn: FunctionComponent<any> = () => {
return <AboutMeEntry
url="https://www.linkedin.com/in/pgrondek/"
title="LinkedIn"
description=""
icon="bi bi-linkedin"
/>
}

View File

@ -0,0 +1,12 @@
import {AboutMeEntry} from "@/components/AboutMeEntry";
import {FunctionComponent} from "react";
export const Printables: FunctionComponent<any> = () => {
return <AboutMeEntry
url="https://www.printables.com/@pgrondek"
title="Printables"
description="Repository of my 3d designs and prints"
icon="bi bi-badge-3d"
/>
}

View File

@ -1,5 +1,7 @@
import 'bootstrap/dist/css/bootstrap.css'
import {Github} from "@/components/Github";
import {LinkedIn} from "@/components/LinkedIn";
import {Printables} from "@/components/Printables";
export default function Home() {
return (
@ -8,6 +10,8 @@ export default function Home() {
<h2 className="pb-2 border-bottom">My stuff</h2>
<div className="row g-4 py-5 row-cols-1 row-cols-lg-3">
<Github/>
<LinkedIn/>
<Printables/>
</div>
</div>
</main>