3 Commits

Author SHA1 Message Date
1a6c40e50f Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx 2026-03-12 09:56:23 +00:00
4987347dbe Update src/app/styles/variables.css 2026-03-12 09:55:55 +00:00
5d3523849c Update src/app/page.tsx 2026-03-12 09:55:55 +00:00
3 changed files with 15 additions and 13 deletions

View File

@@ -203,4 +203,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -12,8 +12,8 @@
--background: #ffffff; --background: #ffffff;
--card: #f9f9f9; --card: #f9f9f9;
--foreground: #000f06e6; --foreground: #000612e6;
--primary-cta: #0a7039; --primary-cta: #15479c;
--primary-cta-text: #ffffff; --primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9; --secondary-cta: #f9f9f9;
--secondary-cta-text: #000f06e6; --secondary-cta-text: #000f06e6;

View File

@@ -6,6 +6,7 @@ interface SvgTextLogoProps {
fontSize?: number; fontSize?: number;
fontWeight?: number | string; fontWeight?: number | string;
letterSpacing?: number; letterSpacing?: number;
fill?: string;
} }
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({ const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
@@ -14,27 +15,28 @@ const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
fontSize = 48, fontSize = 48,
fontWeight = 700, fontWeight = 700,
letterSpacing = 0, letterSpacing = 0,
fill = 'currentColor',
}) => { }) => {
const svgWidth = text.length * (fontSize * 0.6) + 40; const textLength = text.length;
const svgHeight = fontSize + 20; const charWidth = fontSize * 0.6;
const width = charWidth * textLength + letterSpacing * (textLength - 1);
const height = fontSize * 1.2;
return ( return (
<svg <svg
width={svgWidth} viewBox={`0 0 ${width} ${height}`}
height={svgHeight}
viewBox={`0 0 ${svgWidth} ${svgHeight}`}
className={className} className={className}
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="xMidYMid meet"
> >
<text <text
x="20" x="0"
y={fontSize + 5} y={fontSize}
fontSize={fontSize} fontSize={fontSize}
fontWeight={fontWeight} fontWeight={fontWeight}
fill={fill}
letterSpacing={letterSpacing} letterSpacing={letterSpacing}
fill="currentColor" dominantBaseline="middle"
dominantBaseline="alphabetic"
textAnchor="start"
> >
{text} {text}
</text> </text>