-
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.
Merge pull request #7 from gmook9/dev
Changed home page content
- Loading branch information
Showing
4 changed files
with
42 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// daisyUI Source: https://daisyui.com/components/mockup-code/ | ||
import React from 'react'; | ||
|
||
const CodeBlock: React.FC = () => { | ||
return ( | ||
<div className="mockup-code"> | ||
<pre data-prefix="$"><code>Hello!</code></pre> | ||
<pre data-prefix=">" className="text-warning"><code>welcome...</code></pre> | ||
<pre data-prefix="$"><code>I am a Software Developer focused on creating impactful digital solutions.</code></pre> | ||
<pre data-prefix=">" className="text-success"><code>Done!</code></pre> | ||
</div> | ||
); | ||
}; | ||
|
||
export default CodeBlock; |
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,13 @@ | ||
import React from 'react'; | ||
|
||
const Avatar: React.FC = () => { | ||
return ( | ||
<div className="avatar"> | ||
<div className="mask mask-hexagon w-28"> | ||
<img src="/images/profileImage.jpg" alt="Profile Image" /> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Avatar; |
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