diff --git a/src/app/page.tsx b/src/app/page.tsx
index b88f294..caf3bcf 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,169 +1,185 @@
-"use client";
+"use client"
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
-import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
-import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
-import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
-import TeamCardTen from '@/components/sections/team/TeamCardTen';
-import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
-import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
-import ContactText from '@/components/sections/contact/ContactText';
+import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
+import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
+import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
+import ProductCardOne from '@/components/sections/product/ProductCardOne';
+import TeamCardOne from '@/components/sections/team/TeamCardOne';
+import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
+import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
+import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterSimple from '@/components/sections/footer/FooterSimple';
-import { Award, Wrench, Gauge, Hammer, Zap, Paintbrush, Heart, Car } from 'lucide-react';
+import { Car, Hammer, HandshakeIcon, Mail, Sparkles, Star, Users, Wrench, Zap } from 'lucide-react';
export default function LandingPage() {
return (
-
-
-
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
@@ -171,37 +187,42 @@ export default function LandingPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx
index f214190..44c4b80 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 (
);
-});
-
-SvgTextLogo.displayName = "SvgTextLogo";
+};
export default SvgTextLogo;