Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-03-12 09:23:03 +00:00
2 changed files with 23 additions and 39 deletions

View File

@@ -94,13 +94,13 @@ export default function LandingPage() {
useInvertedBackground={true}
features={[
{
id: "01", title: "Fully Customizable", description: "Design your own colors, patterns, and styles. Make each piece truly yours with our customization tool.", imageSrc: "http://img.b2bpic.net/free-photo/desk-real-estate-office_23-2147653310.jpg", imageAlt: "Customization options and color selection interface"
id: "01", title: "Fully Customizable", description="Design your own colors, patterns, and styles. Make each piece truly yours with our customization tool.", imageSrc: "http://img.b2bpic.net/free-photo/desk-real-estate-office_23-2147653310.jpg", imageAlt: "Customization options and color selection interface"
},
{
id: "02", title: "Premium Quality", description: "Every product is carefully crafted and quality-tested. We use the finest materials for durability and aesthetics.", imageSrc: "http://img.b2bpic.net/free-photo/technological-piece-background_23-2148882601.jpg", imageAlt: "Quality control and precision 3D printing"
id: "02", title: "Premium Quality", description="Every product is carefully crafted and quality-tested. We use the finest materials for durability and aesthetics.", imageSrc: "http://img.b2bpic.net/free-photo/technological-piece-background_23-2148882601.jpg", imageAlt: "Quality control and precision 3D printing"
},
{
id: "03", title: "Fast Shipping", description: "Orders ship within 2-3 business days. We can't wait for you to enjoy your L3D creation!", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-holding-box_23-2148943319.jpg", imageAlt: "Fast delivery and quick shipping service"
id: "03", title: "Fast Shipping", description="Orders ship within 2-3 business days. We can't wait for you to enjoy your L3D creation!", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-holding-box_23-2148943319.jpg", imageAlt: "Fast delivery and quick shipping service"
}
]}
gridVariant="three-columns-all-equal-width"
@@ -134,6 +134,7 @@ export default function LandingPage() {
<AboutMetric
title="L3D Prints: Born from a Young Innovator's Dream. A family-run business celebrating creativity, quality, and imagination."
useInvertedBackground={true}
metricsAnimation="slide-up"
metrics={[
{
icon: Heart,

View File

@@ -1,51 +1,34 @@
"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;
textClassName?: 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,
className = '',
textClassName = '',
}) => {
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 * 60} 100`}
className={`w-full h-auto ${className}`}
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"
className={`text-4xl md:text-6xl font-bold ${textClassName}`}
fill="currentColor"
>
{logoText}
{text}
</text>
</svg>
);
});
SvgTextLogo.displayName = "SvgTextLogo";
};
export default SvgTextLogo;