-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
103 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { ProfileSection } from '~/components/home/ProfileSection'; | ||
import React from 'react'; | ||
|
||
export function AboutMe() { | ||
return ( | ||
<ProfileSection header={'About Me'}> | ||
Write a brief intro about yourself. It's a good idea to include your | ||
personal interests and hobbies as well. Lorem ipsum dolor sit amet, | ||
consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean | ||
massa. Cum sociis natoque penatibus et magnis dis parturient montes, | ||
nascetur ridiculus mus. Donec quam felis, ultricies nec. Commodo ligula | ||
eget dolor. Aenean massa. | ||
</ProfileSection> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { Groups } from '~/components/ui/groups/Groups'; | ||
import { Icon } from '~/components/ui/icons/Icon'; | ||
import React from 'react'; | ||
|
||
export function GeneralInfo() { | ||
return ( | ||
<Groups size={2} orientation={'vertical'}> | ||
<Groups size={2}> | ||
<Icon name={'location'} size={16} color={'gray-600'} /> | ||
<span> Hurstville, NSW </span> | ||
</Groups> | ||
<Groups size={2}> | ||
<Icon name={'mail'} size={16} color={'gray-600'} /> | ||
<span> [email protected] </span> | ||
</Groups> | ||
<Groups size={2}> | ||
<Icon name={'link'} size={16} color={'gray-600'} /> | ||
<span> https://vdtn359.com </span> | ||
</Groups> | ||
</Groups> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import React from 'react'; | ||
import 'twin.macro'; | ||
import { Card } from '~/components/ui/containers/Card'; | ||
|
||
export function ProfileSection({ children, header = '' }) { | ||
return ( | ||
<Card> | ||
{!!header && <h5 tw={'type-h5 text-gray-700 mb-4'}>{header}</h5>} | ||
<span>{children}</span> | ||
</Card> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,5 @@ | |
@tailwind utilities; | ||
|
||
body { | ||
font-family: 'Roboto Slab', sans-serif; | ||
font-family: 'Lato', sans-serif; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import resolveConfig from 'tailwindcss/resolveConfig'; | ||
import tailwindConfig from '../tailwind.config'; | ||
const { theme } = resolveConfig(tailwindConfig); | ||
export default theme; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters