Merge version_1 into main #2

Merged
bender merged 2 commits from version_1 into main 2026-03-12 21:48:13 +00:00
2 changed files with 34 additions and 43 deletions

View File

@@ -62,7 +62,6 @@ export default function LandingPage() {
imageAlt="PointsHub dashboard interface"
mediaAnimation="slide-up"
imagePosition="right"
useInvertedBackground={false}
/>
</div>
@@ -78,15 +77,15 @@ export default function LandingPage() {
features={[
{
id: "1", title: "Award Points for Achievements", tags: ["Setup", "Real-time"],
imageSrc: "http://img.b2bpic.net/free-vector/businesswoman-with-coins-cup-prize-with-gears_24640-45043.jpg?_wi=1", imageAlt: "Points accumulation system"
imageSrc: "http://img.b2bpic.net/free-vector/businesswoman-with-coins-cup-prize-with-gears_24640-45043.jpg", imageAlt: "Points accumulation system"
},
{
id: "2", title: "Accumulate to 100 Points", tags: ["Tracking", "Transparent"],
imageSrc: "http://img.b2bpic.net/free-photo/people-taking-part-business-event_23-2149333731.jpg?_wi=1", imageAlt: "Team achievement celebration"
imageSrc: "http://img.b2bpic.net/free-photo/people-taking-part-business-event_23-2149333731.jpg", imageAlt: "Team achievement celebration"
},
{
id: "3", title: "Automatic Salary Increase (+0.1%)", tags: ["Reward", "Automatic"],
imageSrc: "http://img.b2bpic.net/free-vector/reopen-economy-after-coronavirus_52683-38435.jpg?_wi=1", imageAlt: "Salary increase benefit"
imageSrc: "http://img.b2bpic.net/free-vector/reopen-economy-after-coronavirus_52683-38435.jpg", imageAlt: "Salary increase benefit"
}
]}
/>
@@ -117,19 +116,19 @@ export default function LandingPage() {
animationType="slide-up"
plans={[
{
id: "starter", title: "Starter", price: "$299", period: "/month", imageSrc: "http://img.b2bpic.net/free-vector/businesswoman-with-coins-cup-prize-with-gears_24640-45043.jpg?_wi=2", imageAlt: "Starter plan features", button: { text: "Get Started", href: "#contact" },
id: "starter", title: "Starter", price: "$299", period: "/month", imageSrc: "http://img.b2bpic.net/free-vector/businesswoman-with-coins-cup-prize-with-gears_24640-45043.jpg", imageAlt: "Starter plan features", button: { text: "Get Started", href: "#contact" },
features: [
"Up to 50 employees", "Basic point tracking", "Monthly rewards report", "Email support", "Unlimited point types"
]
},
{
id: "professional", title: "Professional", price: "$799", period: "/month", imageSrc: "http://img.b2bpic.net/free-photo/people-taking-part-business-event_23-2149333731.jpg?_wi=2", imageAlt: "Professional plan features", button: { text: "Upgrade Now", href: "#contact" },
id: "professional", title: "Professional", price: "$799", period: "/month", imageSrc: "http://img.b2bpic.net/free-photo/people-taking-part-business-event_23-2149333731.jpg", imageAlt: "Professional plan features", button: { text: "Upgrade Now", href: "#contact" },
features: [
"Up to 500 employees", "Advanced analytics", "Real-time dashboards", "Priority support", "Custom reward tiers", "Integration API"
]
},
{
id: "enterprise", title: "Enterprise", price: "Custom", period: "/month", imageSrc: "http://img.b2bpic.net/free-vector/reopen-economy-after-coronavirus_52683-38435.jpg?_wi=2", imageAlt: "Enterprise plan features", button: { text: "Contact Sales", href: "#contact" },
id: "enterprise", title: "Enterprise", price: "Custom", period: "/month", imageSrc: "http://img.b2bpic.net/free-vector/reopen-economy-after-coronavirus_52683-38435.jpg", imageAlt: "Enterprise plan features", button: { text: "Contact Sales", href: "#contact" },
features: [
"Unlimited employees", "Full customization", "White-label solution", "Dedicated account manager", "Advanced security", "Custom integrations"
]

View File

@@ -1,51 +1,43 @@
"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;
fontSize?: number;
fontFamily?: string;
fontWeight?: string | number;
fill?: string;
className?: string;
}
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,
fontSize = 48,
fontFamily = 'system-ui, -apple-system, sans-serif',
fontWeight = 'bold',
fill = 'currentColor',
className = '',
}) => {
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 ${text.length * fontSize * 0.6} ${fontSize * 1.5}`}
xmlns="http://www.w3.org/2000/svg"
className={className}
aria-label={text}
>
<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%"
fontSize={fontSize}
fontFamily={fontFamily}
fontWeight={fontWeight}
fill={fill}
textAnchor="middle"
dominantBaseline="middle"
>
{logoText}
{text}
</text>
</svg>
);
});
SvgTextLogo.displayName = "SvgTextLogo";
};
export default SvgTextLogo;