Skip to content

Commit

Permalink
Update Hero and About components
Browse files Browse the repository at this point in the history
  • Loading branch information
Petsamuel committed Mar 3, 2024
1 parent 2178b3f commit 1349a15
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/Hero.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ function Hero() {

return (
<>
<section className="place-content-center">
<div className="lg:pt-20 flex lg:flex-row flex-col justify-center items-center lg:px-16 lg:text-justify">
<section className="flex items-center justify-center flex-col lg:py-10 py-6">
<div className="lg:pt-20 flex lg:flex-row flex-col justify-center items-center px-16 lg:text-justify">
<div
className="flex-auto"
onMouseMove={(e) => {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/About.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function About() {
<Header />
<div className="flex py-20 lg:mx-10 mx-4 gap-14 lg:flex-row flex-col">
{/* grid lg:grid-cols-3 md:grid-cols-2 px-4 gap-8 grid-cols-1 py-9 */}
<div className=" w-[90%] ">
<div className=" lg:w-3/4 w-[90%] ">
<Content eventState={eventState} />
</div>

Expand Down
2 changes: 1 addition & 1 deletion src/pages/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ function Home() {
return (
<section className="bg-black h-screen">
<Header />
<div className="flex items-center m-auto py-[6em] "> <Hero /></div>
<div className="py-14 lg:py-4"> <Hero /></div>
</section>
);
}
Expand Down

0 comments on commit 1349a15

Please sign in to comment.