Add LinkedIn and Printables
This commit is contained in:
parent
bbb880cf99
commit
33279cf21c
12
src/components/LinkedIn.tsx
Normal file
12
src/components/LinkedIn.tsx
Normal 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"
|
||||
/>
|
||||
}
|
12
src/components/Printables.tsx
Normal file
12
src/components/Printables.tsx
Normal 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"
|
||||
/>
|
||||
}
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user