Skip to content

Commit

Permalink
fix rtl hero
Browse files Browse the repository at this point in the history
  • Loading branch information
amir1376 committed Dec 4, 2024
1 parent 30cf7a9 commit 7f8d30f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sections/home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ function Hero(props: { icon: ImageProp, title: string, description: string }) {
</div>
<div className="flex flex-col space-y-10 p-4 md:max-w-[55%]">
<h2 className={classNames(
"text-4xl md:text-5xl lg:text-6xl font-extrabold text-center md:text-left"
"text-4xl md:text-5xl lg:text-6xl font-extrabold text-center md:text-start"
)}>{props.title}</h2>
<h5 className={classNames(
"text-xl sm:text-2xl lg:text-3xl font-medium leading-normal text-center md:text-left"
"text-xl sm:text-2xl lg:text-3xl font-medium leading-normal text-center md:text-start"
)}>{props.description}</h5>
<div className="flex flex-row flex-wrap gap-4 justify-center md:justify-start">
<MyLink href={`/#download`}>
Expand Down

0 comments on commit 7f8d30f

Please sign in to comment.