Merge version_1 into main #2
@@ -97,7 +97,7 @@ export default function LandingPage() {
|
||||
}
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="smooth"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
@@ -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"
|
||||
/>
|
||||
|
||||
@@ -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<SVGSVGElement, SvgTextLogoProps>(
|
||||
letterSpacing = 0,
|
||||
fontFamily = "system-ui, -apple-system, sans-serif", fontSize = size * 0.5,
|
||||
fontWeight = 700,
|
||||
dominantBaseline = "central", className = ""
|
||||
dominantBaseline = "middle", className = ""
|
||||
},
|
||||
ref
|
||||
) => {
|
||||
|
||||
Reference in New Issue
Block a user