Skip to content

Commit

Permalink
fixed mobile responsive issue for home page (#729)
Browse files Browse the repository at this point in the history
  • Loading branch information
muhammad-fiaz authored Dec 2, 2024
1 parent 1441115 commit f0adcda
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions src/components/sections/HomeSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,26 +11,22 @@ import ShowSkills from '../utils/ShowSkills';

const HomeSection = () => {
return (
<div>
<SectionContainer>

{/* Hero Section */}
<div className="w-full h-[calc(100vh-11rem)] flex items-center justify-center ">
<Hero />
</div>
<SectionContainer>

{/* About Me Section */}
<AnimationContainer customClassName="w-full mt-16">
<AboutMe />
</AnimationContainer>
</SectionContainer>
<SectionContainer>

{/* Timeline Section */}
<AnimationContainer customClassName="w-full mt-16">
<CurrentTimeLineExp />
</AnimationContainer>
</SectionContainer>
<SectionContainer>

{/* Skills Section */}
<AnimationContainer customClassName="w-full mt-16">
Expand Down Expand Up @@ -62,15 +58,12 @@ const HomeSection = () => {

</div>
</AnimationContainer>
</SectionContainer>
<SectionContainer>

{/* Contact Section */}
<AnimationContainer customClassName="w-full mt-16">
<ContactMe />
</AnimationContainer>
</SectionContainer>
</div>
);
};

Expand Down

0 comments on commit f0adcda

Please sign in to comment.