Skip to content

Commit

Permalink
refactor: Update About component styling and content
Browse files Browse the repository at this point in the history
  • Loading branch information
preston176 committed Aug 17, 2024
1 parent d0dac13 commit 01d7124
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const About = () => {
return (
<div className='py-5 md:px-5 px-5 sm:mt-24' id='about'>
<h1 className='text-3xl mt-5 text-primary font-semibold'>About me</h1>
<p className='text-white font-medium my-2 md:w-11/12 leading-[3] text-lg' >I enjoy solving technical problems, researching and developing new technologies, designing software applications for different platforms. <br />I enjoy meeting people and working with them in a team environment. I also enjoy interacting with clients and customers. <br />My strong customer service skills allow me to do this well. I am a quick learner with a fun, outgoing personality. In addition, I excel in my ability to work under pressure and handle stressful situations very well.</p>
<p className='text-white font-normal my-2 md:w-11/12 leading-[2] text-lg' >I enjoy solving technical problems, researching and developing new technologies, designing software applications for different platforms. <br />I enjoy meeting people and working with them in a team environment.<br /> I also enjoy interacting with clients and customers. <br />My strong customer service skills allow me to do this well. I am a quick learner with a fun, outgoing personality.</p>
{/* techstack */}
<div className="md:flex items-center my-7">
<p className='text-primary text-8xl font-bold'>{yearsOfExperience}+</p>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Blogs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ const Blogs = () => {
// console.log(posts)

return (
<div className=' px-7 md:px-10 my-8 min-h-fit' id='blogs'>
<h1 className='text-3xl mt-5 text-primary font-semibold'>Blogs</h1>
<div className=' px-7 md:px-10 my-8 min-h-fit' id='articles'>
<h1 className='text-3xl mt-5 text-primary font-semibold'>Articles</h1>
<p className='text-white my-2 md:w-2/3 leading-[2]'>Checkout some of my featured articles</p>
{/* project items */}
{
Expand Down
2 changes: 1 addition & 1 deletion src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const Header = () => {
{ name: 'Home', link: '' },
{ name: 'About me', link: 'about' },
{ name: 'Projects', link: 'projects' },
{ name: 'Articles', link: 'https://codewithpres.hashnode.dev' },
{ name: 'Articles', link: 'articles' },
{ name: 'Contact me', link: 'contact' },
];

Expand Down

0 comments on commit 01d7124

Please sign in to comment.