+
{children}
);
diff --git a/src/components/ui/icons/Icon.tsx b/src/components/ui/icons/Icon.tsx
index 36665af..0707dbc 100644
--- a/src/components/ui/icons/Icon.tsx
+++ b/src/components/ui/icons/Icon.tsx
@@ -22,6 +22,7 @@ export type SvgIcon =
| 'link'
| 'graduation-cap'
| 'external'
+ | 'home'
| 'linkedin';
export function Icon({
diff --git a/src/components/ui/images/Avatar.tsx b/src/components/ui/images/Avatar.tsx
index 130c746..dffe141 100644
--- a/src/components/ui/images/Avatar.tsx
+++ b/src/components/ui/images/Avatar.tsx
@@ -1,17 +1,17 @@
import React, { HTMLAttributes } from 'react';
-type Props = { size: number; src: string; rounded?: boolean } & HTMLAttributes<
+type Props = { size: number; src: string; circular?: boolean } & HTMLAttributes<
HTMLImageElement
>;
-export function Avatar({ size, src, rounded = true, ...props }: Props) {
+export function Avatar({ size, src, circular = true, ...props }: Props) {
return (
);
diff --git a/src/icons/home.svg b/src/icons/home.svg
new file mode 100644
index 0000000..4cde395
--- /dev/null
+++ b/src/icons/home.svg
@@ -0,0 +1,4 @@
+
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
index 5de403a..4b32c39 100644
--- a/src/pages/index.tsx
+++ b/src/pages/index.tsx
@@ -3,9 +3,11 @@ import Headline from '~/components/home/Headline';
import HomeMain from '~/components/home/HomeMain';
import 'twin.macro';
import profile from '~/profile';
+import { Nav } from '~/components/common/Nav';
const IndexPage = () => (
+
diff --git a/src/profile.tsx b/src/profile.tsx
index 71d97bb..4f6d91c 100644
--- a/src/profile.tsx
+++ b/src/profile.tsx
@@ -5,7 +5,7 @@ export default {
name: 'Tuan Nguyen',
githubUsername: 'tuan231195',
avatar:
- 'https://media-exp1.licdn.com/dms/image/C5103AQGbaWNuZzFiXg/profile-displayphoto-shrink_400_400/0?e=1602115200&v=beta&t=aN91iPo88eeXRzYz5C-v-J2zzoLoS2UmmXCCKc5qqw8',
+ 'https://ik.imagekit.io/emtg9z3bqr/tr:h-160,w-160/avatar_cubwNe2pI.jpeg',
role: 'Software Developer',
email: 'vdtn359@gmail.com',
phone: '0450082978',
diff --git a/tailwind.config.js b/tailwind.config.js
index 09f7679..30f75f2 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -158,6 +158,7 @@ module.exports = {
colors: {
secondary: '#d1e0f4',
primary: '#41A4F5',
+ accent: '#FF8106',
cta: '#d10220',
info: '#2ecbf6',
warning: '#e4ca52',