From 2c3108e1e871ceb62b5ad92f077d50d72cf000ec Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 14:22:31 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 297 ++++++++++++++++++++++------------------------- 1 file changed, 138 insertions(+), 159 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index caf3bcf..39064db 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,185 +1,169 @@ -"use client" +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -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 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 FooterSimple from '@/components/sections/footer/FooterSimple'; -import { Car, Hammer, HandshakeIcon, Mail, Sparkles, Star, Users, Wrench, Zap } from 'lucide-react'; +import { Award, Wrench, Gauge, Hammer, Zap, Paintbrush, Heart, Car } from 'lucide-react'; export default function LandingPage() { return (
- +
+ +
+
- -
- -
-
-
-
- +
-
- +
-
@@ -187,42 +171,37 @@ export default function LandingPage() {
); -} +} \ No newline at end of file -- 2.49.1 From 2c6cbfcea53802dad1a3e7d8a75459aa7be01c21 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 14:22:31 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 22 +++++++------------ 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 44c4b80..9a41064 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -2,33 +2,27 @@ import React from 'react'; interface SvgTextLogoProps { text: string; - fontSize?: number; - fontFamily?: string; - fill?: string; className?: string; + textClassName?: string; } const SvgTextLogo: React.FC = ({ text, - fontSize = 24, - fontFamily = 'Arial, sans-serif', - fill = 'currentColor', className = '', + textClassName = '', }) => { return ( {text} @@ -36,4 +30,4 @@ const SvgTextLogo: React.FC = ({ ); }; -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1