Skip to content

Commit 02657ec

Browse files
committed
fix(ui): landing header text
1 parent 2de8f37 commit 02657ec

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

sim/app/(landing)/components/sections/footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ function Footer() {
9292
rel="noopener noreferrer"
9393
className="text-xl md:text-2xl text-[#9E91AA] font-light hover:text-[#bdaecb] transition-all duration-500"
9494
>
95-
Terms and Condition
95+
Terms and Conditions
9696
</Link>
9797
<Link
9898
href={'/privacy'}

sim/app/(landing)/components/sections/integrations.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function Integrations() {
1414
<section className="flex flex-col py-12 w-full gap-10 px-8 md:px-16 lg:px-28 xl:px-32">
1515
<div className="flex flex-col gap-5">
1616
<motion.p
17-
className="text-white font-medium tracking-normal text-5xl"
17+
className="text-white font-medium tracking-normal text-[42px] md:text-5xl md:leading-tight leading-none"
1818
initial={{ opacity: 0, y: 40 }}
1919
whileInView={{ opacity: 1, y: 0 }}
2020
viewport={{ once: true, amount: 0.2 }}

sim/app/(landing)/components/sections/testimonials.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@ function Testimonials() {
8888
<section className="relative flex flex-col py-10 sm:py-12 md:py-16 w-full overflow-hidden will-change-[opacity,transform] animation-container">
8989
<div className="flex flex-col items-center gap-3 sm:gap-5 pb-6 sm:pb-8 md:pb-10 px-4">
9090
{isMobile ? (
91-
<p className="text-white font-medium tracking-normal text-5xl text-center">Loved by</p>
91+
<p className="text-white font-medium tracking-normal text-[42px] md:text-5xl text-center">
92+
Loved by
93+
</p>
9294
) : (
9395
<motion.p
9496
className="text-white font-medium tracking-normal text-5xl text-center"
@@ -102,7 +104,7 @@ function Testimonials() {
102104
)}
103105
</div>
104106

105-
<div className="flex flex-col space-y-2 sm:space-y-3 md:mt-0 mt-2">
107+
<div className="flex flex-col space-y-2 sm:space-y-3 mt-0">
106108
{/* First Row of X Posts */}
107109
<div className="w-full flex flex-col text-white animate-fade-up [animation-delay:400ms] opacity-0 will-change-[opacity,transform] animation-container">
108110
<Marquee className="w-full flex [--duration:40s]" pauseOnHover={true}>

0 commit comments

Comments
 (0)