Merge version_1 into main #1

Merged
bender merged 2 commits from version_1 into main 2026-03-12 12:11:09 +00:00
2 changed files with 39 additions and 39 deletions

View File

@@ -96,7 +96,7 @@ export default function LandingPage() {
title="AI Automation Services"
description="Comprehensive AI and automation solutions designed for modern enterprises"
tag="Solutions"
tagAnimation="entrance-slide"
tagAnimation="slide-up"
/>
</div>
@@ -138,7 +138,7 @@ export default function LandingPage() {
title="Proven Impact"
description="Real results from our automation systems across industries"
tag="Results"
tagAnimation="entrance-slide"
tagAnimation="slide-up"
/>
</div>
@@ -203,7 +203,7 @@ export default function LandingPage() {
title="Transparent Pricing for Every Scale"
description="Simple, predictable pricing that grows with your automation needs. No hidden fees. Cancel anytime."
tag="Plans"
tagAnimation="entrance-slide"
tagAnimation="slide-up"
/>
</div>
@@ -218,7 +218,7 @@ export default function LandingPage() {
inputPlaceholder="your@company.com"
buttonText="Get Started"
termsText="We respect your privacy. Unsubscribe anytime. Your data is encrypted and secure."
tagAnimation="entrance-slide"
tagAnimation="slide-up"
/>
</div>

View File

@@ -1,51 +1,51 @@
"use client";
import { memo } from "react";
import useSvgTextLogo from "./useSvgTextLogo";
import { cls } from "@/lib/utils";
import React from 'react';
interface SvgTextLogoProps {
logoText: string;
adjustHeightFactor?: number;
verticalAlign?: "top" | "center";
text: string;
className?: string;
fontSize?: number;
fontWeight?: number | string;
fill?: string;
letterSpacing?: number;
textAnchor?: 'start' | 'middle' | 'end';
}
const SvgTextLogo = memo<SvgTextLogoProps>(function SvgTextLogo({
logoText,
adjustHeightFactor,
verticalAlign = "top",
className = "",
}) {
const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor);
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
text,
className = '',
fontSize = 32,
fontWeight = 'bold',
fill = 'currentColor',
letterSpacing = 0,
textAnchor = 'middle',
}) => {
const estimatedWidth = text.length * (fontSize as number) * 0.6;
const estimatedHeight = (fontSize as number) * 1.2;
const xPosition = textAnchor === 'start' ? 10 : textAnchor === 'end' ? estimatedWidth - 10 : estimatedWidth / 2;
const yPosition = (fontSize as number) * 0.75;
return (
<svg
ref={svgRef}
viewBox={viewBox}
className={cls("w-full", className)}
style={{ aspectRatio: aspectRatio }}
preserveAspectRatio="none"
role="img"
aria-label={`${logoText} logo`}
width="100%"
height="100%"
viewBox={`0 0 ${estimatedWidth} ${estimatedHeight}`}
preserveAspectRatio="xMidYMid meet"
className={className}
>
<text
ref={textRef}
x="0"
y={verticalAlign === "center" ? "50%" : "0"}
className="font-bold fill-current"
style={{
fontSize: "20px",
letterSpacing: "-0.02em",
dominantBaseline: verticalAlign === "center" ? "middle" : "text-before-edge"
}}
x={xPosition}
y={yPosition}
fontSize={fontSize}
fontWeight={fontWeight}
fill={fill}
letterSpacing={letterSpacing}
textAnchor={textAnchor}
dominantBaseline="middle"
>
{logoText}
{text}
</text>
</svg>
);
});
SvgTextLogo.displayName = "SvgTextLogo";
};
export default SvgTextLogo;