diff --git a/src/app/page.tsx b/src/app/page.tsx index 3feab53..2abf759 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -97,7 +97,7 @@ export default function LandingPage() { } ]} textboxLayout="default" - animationType="smooth" + animationType="slide-up" useInvertedBackground={false} /> @@ -122,7 +122,7 @@ export default function LandingPage() { featuresTitle: "Pro includes:", features: ["Everything in Solo", "20GB file storage", "Custom branding (logo + color)", "Contract/scope e-signature", "Project templates", "Client analytics", "API access (coming soon)"] } ]} - animationType="smooth" + animationType="slide-up" textboxLayout="default" useInvertedBackground={true} /> @@ -146,7 +146,7 @@ export default function LandingPage() { id: "4", value: "98%", title: "Client portal adoption rate", items: ["Clients use it immediately", "Zero training required", "Stays engaged with projects"] } ]} - animationType="smooth" + animationType="slide-up" textboxLayout="default" useInvertedBackground={false} /> @@ -183,7 +183,7 @@ export default function LandingPage() { } ]} showRating={true} - animationType="smooth" + animationType="slide-up" textboxLayout="default" useInvertedBackground={true} /> @@ -226,7 +226,7 @@ export default function LandingPage() { } ]} textboxLayout="default" - animationType="smooth" + animationType="slide-up" useInvertedBackground={false} faqsAnimation="slide-up" /> diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 2f8e86d..61d8bd0 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -10,7 +10,7 @@ export interface SvgTextLogoProps { fontFamily?: string; fontSize?: number; fontWeight?: number | string; - dominantBaseline?: "auto" | "text-top" | "middle" | "text-bottom" | "hanging" | "central" | "mathematical"; + dominantBaseline?: "auto" | "inherit" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "text-before-edge" | "middle" | "central" | "text-after-edge" | "use-script" | "no-change" | "reset-size"; className?: string; } @@ -23,7 +23,7 @@ const SvgTextLogo = forwardRef( letterSpacing = 0, fontFamily = "system-ui, -apple-system, sans-serif", fontSize = size * 0.5, fontWeight = 700, - dominantBaseline = "central", className = "" + dominantBaseline = "middle", className = "" }, ref ) => {