Merge version_1 into main #1

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

View File

@@ -10,7 +10,7 @@ import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
import FaqDouble from "@/components/sections/faq/FaqDouble";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import { Award, Brain, Cpu, DollarSign, GitNetwork, HelpCircle, Quote, Rocket, Shield, Sparkles, TrendingUp, User, Zap } from "lucide-react";
import { Award, Brain, Cpu, DollarSign, Network, HelpCircle, Quote, Rocket, Shield, Sparkles, TrendingUp, User, Zap } from "lucide-react";
export default function LandingPage() {
return (
@@ -114,7 +114,7 @@ export default function LandingPage() {
title: "Scalable Infrastructure", description: "Grow from startup to enterprise without worrying about system limitations"
},
{
icon: GitNetwork,
icon: Network,
title: "API Integration", description: "Seamlessly integrate with your existing tools and platforms"
}
]}

View File

@@ -1,51 +1,53 @@
"use client";
import { SVGProps } from "react";
import { memo } from "react";
import useSvgTextLogo from "./useSvgTextLogo";
import { cls } from "@/lib/utils";
interface SvgTextLogoProps {
logoText: string;
adjustHeightFactor?: number;
verticalAlign?: "top" | "center";
interface SvgTextLogoProps extends SVGProps<SVGSVGElement> {
text?: string;
className?: string;
}
const SvgTextLogo = memo<SvgTextLogoProps>(function SvgTextLogo({
logoText,
adjustHeightFactor,
verticalAlign = "top",
className = "",
}) {
const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor);
export const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
text = "Logo", className = "", ...props
}) => {
return (
<svg
ref={svgRef}
viewBox={viewBox}
className={cls("w-full", className)}
style={{ aspectRatio: aspectRatio }}
preserveAspectRatio="none"
role="img"
aria-label={`${logoText} logo`}
viewBox="0 0 200 60"
xmlns="http://www.w3.org/2000/svg"
className={className}
{...props}
>
<defs>
<style>
{`
@keyframes textReveal {
0% {
opacity: 0;
clip-path: inset(0 100% 0 0);
}
100% {
opacity: 1;
clip-path: inset(0 0 0 0);
}
}
.svg-text-reveal {
animation: textReveal 1s ease-out forwards;
}
`}
</style>
</defs>
<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="10"
y="45"
fontFamily="Arial, sans-serif"
fontSize="36"
fontWeight="bold"
fill="currentColor"
dominantBaseline="middle"
className="svg-text-reveal"
>
{logoText}
{text}
</text>
</svg>
);
});
SvgTextLogo.displayName = "SvgTextLogo";
};
export default SvgTextLogo;