Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 4 additions & 9 deletions src/features/acta-scroll/ACTAScrollDown.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"use client";

import React, { useCallback, useEffect, useRef, useState } from "react";
import { TextAnimate } from "@/components/ui/text-animate";

type StepData = {
side: "left" | "right";
Expand Down Expand Up @@ -360,9 +359,7 @@ export default function ACTAScrollDown() {

return (
<div key={step} style={panelStyle}>
<TextAnimate
animation="blurIn"
by="word"
<h3
className="text-[1.15rem] font-bold mb-2 leading-tight"
style={{
letterSpacing: "-0.01em",
Expand All @@ -371,18 +368,16 @@ export default function ACTAScrollDown() {
}}
>
{s.title}
</TextAnimate>
<TextAnimate
animation="blurIn"
by="word"
</h3>
<p
className="text-[0.875rem] leading-[1.55] opacity-80"
style={{
margin: 0,
marginBlockEnd: s.bullets ? "0.75rem" : 0,
}}
>
{s.body}
</TextAnimate>
</p>
{s.bullets && (
<ul
style={{
Expand Down
2 changes: 1 addition & 1 deletion src/features/social-proof/TrustedByStartups.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export function TrustedStartups() {
<div className="lg:w-1/4">
<p className="text-neutral-400 text-lg">
Trusted by <span className="text-amber-400">fast-growing</span>{" "}
startups
startups and enterprises
</p>
</div>
<div className="lg:w-3/4">
Expand Down
Loading