From 782e35169c5d57b7fee7ca262262cdc702ab08de Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 12:13:47 +0000 Subject: [PATCH 1/2] Update src/app/for-recruiters/page.tsx --- src/app/for-recruiters/page.tsx | 75 +++++++++------------------------ 1 file changed, 19 insertions(+), 56 deletions(-) diff --git a/src/app/for-recruiters/page.tsx b/src/app/for-recruiters/page.tsx index 86f7186..1e01d04 100644 --- a/src/app/for-recruiters/page.tsx +++ b/src/app/for-recruiters/page.tsx @@ -9,7 +9,7 @@ import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; -import { Sparkles, Zap, TrendingUp, Users, CheckCircle, Shield, Rocket, Mail, Quote } from "lucide-react"; +import { Sparkles, Zap, TrendingUp, Users, CheckCircle, Shield, Rocket, Mail, Quote, Clock, Network } from "lucide-react"; import Link from "next/link"; export default function ForRecruitersPage() { @@ -36,8 +36,7 @@ export default function ForRecruitersPage() { { name: "For Recruiters", id: "recruiters" } ]} button={{ - text: "Get Started", - href: "#contact" + text: "Get Started", href: "#contact" }} animateOnLoad={true} /> @@ -62,7 +61,7 @@ export default function ForRecruitersPage() { { text: "See How It Works", href: "#features" } ]} buttonAnimation="slide-up" - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiPbRTArV5WMUk5yCkULjf0h2Y/an-ai-powered-shortlisting-interface-whe-1773231116084-2c97905c.png?_wi=3" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiPbRTArV5WMUk5yCkULjf0h2Y/an-ai-powered-shortlisting-interface-whe-1773231116084-2c97905c.png" imageAlt="AI-Powered Recruitment Shortlisting Interface" mediaAnimation="slide-up" imagePosition="right" @@ -73,9 +72,7 @@ export default function ForRecruitersPage() { @@ -208,8 +174,7 @@ export default function ForRecruitersPage() { Date: Wed, 11 Mar 2026 12:13:48 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 62 ++++++++----------- 1 file changed, 25 insertions(+), 37 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..2730f7d 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,39 @@ -"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; + fill?: string; className?: string; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +const SvgTextLogo: React.FC = ({ + text, + fontSize = 24, + fontFamily = 'Arial, sans-serif', + fill = 'currentColor', + className = '', +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1