aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/contact.tsx9
-rw-r--r--src/pages/cv.tsx9
2 files changed, 18 insertions, 0 deletions
diff --git a/src/pages/contact.tsx b/src/pages/contact.tsx
index 9eebdb2..d9c4e4f 100644
--- a/src/pages/contact.tsx
+++ b/src/pages/contact.tsx
@@ -11,6 +11,7 @@ import Head from 'next/head';
import { FormEvent, useState } from 'react';
import PostHeader from '@components/PostHeader/PostHeader';
import styles from '@styles/pages/Page.module.scss';
+import { SocialMedia } from '@components/Widget';
const ContactPage: NextPageWithLayout = () => {
const [name, setName] = useState('');
@@ -111,6 +112,14 @@ const ContactPage: NextPageWithLayout = () => {
</FormItem>
</Form>
</div>
+ <aside className={styles.aside}>
+ <SocialMedia
+ title={t`Find me elsewhere`}
+ github={true}
+ gitlab={true}
+ linkedin={true}
+ />
+ </aside>
</article>
</>
);
diff --git a/src/pages/cv.tsx b/src/pages/cv.tsx
index 8bd1b0c..83d1fe5 100644
--- a/src/pages/cv.tsx
+++ b/src/pages/cv.tsx
@@ -9,6 +9,8 @@ import CVContent, { intro, meta } from '@content/pages/cv.mdx';
import PostHeader from '@components/PostHeader/PostHeader';
import { ArticleMeta } from '@ts/types/articles';
import styles from '@styles/pages/Page.module.scss';
+import { SocialMedia } from '@components/Widget';
+import { t } from '@lingui/macro';
const CV: NextPageWithLayout = () => {
const dates = {
@@ -36,6 +38,13 @@ const CV: NextPageWithLayout = () => {
<div className={styles.body}>
<CVContent />
</div>
+ <aside className={styles.aside}>
+ <SocialMedia
+ title={t`Open-source projects`}
+ github={true}
+ gitlab={true}
+ />
+ </aside>
</article>
</>
);