Merge version_1 into main #2

Merged
bender merged 2 commits from version_1 into main 2026-03-11 14:11:06 +00:00
2 changed files with 25 additions and 45 deletions

View File

@@ -20,7 +20,7 @@ export default function LandingPage() {
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="aurora"
background="circleGradient"
cardStyle="layered-gradient"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
@@ -44,7 +44,7 @@ export default function LandingPage() {
<HeroSplitKpi
title="Transform Your Business With Modern Solutions"
description="Elevate your operations with cutting-edge technology and expert guidance designed for growth"
background={{ variant: "aurora" }}
background={{ variant: "plain" }}
kpis={[
{ value: "99.8%", label: "Uptime Guarantee" },
{ value: "10x", label: "Faster Processing" },
@@ -85,15 +85,15 @@ export default function LandingPage() {
features={[
{
id: 1,
tag: "Discovery", title: "Strategic Planning", subtitle: "Data-driven decisions for maximum impact", description: "We analyze your business needs, market conditions, and competitive landscape to develop a tailored strategy that aligns with your goals and maximizes ROI.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-business-team-working_23-2149153845.jpg?_wi=1", imageAlt: "Strategic planning visualization"
tag: "Discovery", title: "Strategic Planning", subtitle: "Data-driven decisions for maximum impact", description: "We analyze your business needs, market conditions, and competitive landscape to develop a tailored strategy that aligns with your goals and maximizes ROI.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-business-team-working_23-2149153845.jpg", imageAlt: "Strategic planning visualization"
},
{
id: 2,
tag: "Implementation", title: "Execution", subtitle: "Seamless integration and deployment", description: "Our expert team implements your strategy with precision, ensuring smooth integration with existing systems and minimal disruption to your operations.", imageSrc: "http://img.b2bpic.net/free-photo/diverse-business-leaders-meeting-sharing-ideas-corporate-growth_482257-123661.jpg?_wi=1", imageAlt: "Analytics dashboard interface"
tag: "Implementation", title: "Execution", subtitle: "Seamless integration and deployment", description: "Our expert team implements your strategy with precision, ensuring smooth integration with existing systems and minimal disruption to your operations.", imageSrc: "http://img.b2bpic.net/free-photo/diverse-business-leaders-meeting-sharing-ideas-corporate-growth_482257-123661.jpg", imageAlt: "Analytics dashboard interface"
},
{
id: 3,
tag: "Support", title: "Optimization", subtitle: "Continuous improvement and support", description: "We monitor performance metrics, optimize operations, and provide ongoing support to ensure sustained success and continuous growth.", imageSrc: "http://img.b2bpic.net/free-vector/concept-telecommuting_23-2148488933.jpg?_wi=1", imageAlt: "Customer support team"
tag: "Support", title: "Optimization", subtitle: "Continuous improvement and support", description: "We monitor performance metrics, optimize operations, and provide ongoing support to ensure sustained success and continuous growth.", imageSrc: "http://img.b2bpic.net/free-vector/concept-telecommuting_23-2148488933.jpg", imageAlt: "Customer support team"
}
]}
textboxLayout="default"
@@ -165,7 +165,7 @@ export default function LandingPage() {
features={[
{
id: "1", title: "Consultation & Analysis", description: "We conduct thorough analysis of your business needs, market dynamics, and competitive positioning to develop a comprehensive roadmap for success.", media: {
imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-business-team-working_23-2149153845.jpg?_wi=2"
imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-business-team-working_23-2149153845.jpg"
},
items: [
{ icon: CheckCircle, text: "Market research and analysis" },
@@ -176,7 +176,7 @@ export default function LandingPage() {
},
{
id: "2", title: "Implementation & Deployment", description: "Our technical experts execute the strategy with precision, ensuring seamless integration and optimal performance throughout the deployment process.", media: {
imageSrc: "http://img.b2bpic.net/free-photo/diverse-business-leaders-meeting-sharing-ideas-corporate-growth_482257-123661.jpg?_wi=2"
imageSrc: "http://img.b2bpic.net/free-photo/diverse-business-leaders-meeting-sharing-ideas-corporate-growth_482257-123661.jpg"
},
items: [
{ icon: CheckCircle, text: "System integration and testing" },
@@ -187,7 +187,7 @@ export default function LandingPage() {
},
{
id: "3", title: "Monitoring & Optimization", description: "Continuous monitoring and optimization ensure your systems perform at peak efficiency while adapting to evolving business needs.", media: {
imageSrc: "http://img.b2bpic.net/free-vector/concept-telecommuting_23-2148488933.jpg?_wi=2"
imageSrc: "http://img.b2bpic.net/free-vector/concept-telecommuting_23-2148488933.jpg"
},
items: [
{ icon: CheckCircle, text: "Performance analytics" },
@@ -213,7 +213,7 @@ export default function LandingPage() {
{ text: "Contact Us", href: "#" },
{ text: "Schedule Demo", href: "#" }
]}
background={{ variant: "aurora" }}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>

View File

@@ -1,51 +1,31 @@
"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;
}
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, className = '' }) => {
return (
<svg
ref={svgRef}
viewBox={viewBox}
className={cls("w-full", className)}
style={{ aspectRatio: aspectRatio }}
preserveAspectRatio="none"
role="img"
aria-label={`${logoText} logo`}
className={className}
viewBox="0 0 200 50"
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="xMidYMid meet"
>
<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="50%"
y="50%"
textAnchor="middle"
dominantBaseline="central"
fontSize="24"
fontWeight="bold"
fill="currentColor"
>
{logoText}
{text}
</text>
</svg>
);
});
SvgTextLogo.displayName = "SvgTextLogo";
};
export default SvgTextLogo;