Merge version_1 into main #1

Merged
bender merged 2 commits from version_1 into main 2026-03-13 05:49:28 +00:00
2 changed files with 40 additions and 47 deletions

View File

@@ -21,7 +21,7 @@ export default function LandingPage() {
borderRadius="rounded"
contentWidth="small"
sizing="large"
background="circleGradient"
background="aurora"
cardStyle="glass-elevated"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="glass"
@@ -47,7 +47,7 @@ export default function LandingPage() {
<HeroSplit
title="Elevate Your Brand with Premium Social Media Strategy"
description="We craft compelling narratives and data-driven campaigns that transform your social presence into a powerful business asset. From strategy to execution, we deliver results that matter."
background={{ variant: "circleGradient" }}
background={{ variant: "plain" }}
tag="Award-Winning Agency"
tagIcon={Sparkles}
tagAnimation="slide-up"
@@ -227,7 +227,7 @@ export default function LandingPage() {
{ text: "View Case Studies", href: "services" }
]}
buttonAnimation="slide-up"
background={{ variant: "circleGradient" }}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>

View File

@@ -1,51 +1,44 @@
"use client";
import React, { 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";
export interface SvgTextLogoProps extends SVGProps<SVGSVGElement> {
text?: string;
fontSize?: number;
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);
return (
<svg
ref={svgRef}
viewBox={viewBox}
className={cls("w-full", className)}
style={{ aspectRatio: aspectRatio }}
preserveAspectRatio="none"
role="img"
aria-label={`${logoText} logo`}
>
<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"
}}
const SvgTextLogo = React.forwardRef<SVGSVGElement, SvgTextLogoProps>(
({
text = 'Logo',
fontSize = 48,
fontWeight = 'bold',
fill = 'currentColor',
className = '',
...props
}, ref) => {
return (
<svg
ref={ref}
viewBox="0 0 200 60"
className={className}
{...props}
>
{logoText}
</text>
</svg>
);
});
<text
x="10"
y="45"
fontSize={fontSize}
fontWeight={fontWeight}
fill={fill}
dominantBaseline="middle"
>
{text}
</text>
</svg>
);
}
);
SvgTextLogo.displayName = "SvgTextLogo";
SvgTextLogo.displayName = 'SvgTextLogo';
export default SvgTextLogo;
export default SvgTextLogo;