From b29dda49e234abf99be3c6b18257379086251e69 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 14:44:37 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a6e2f7e..78e5c1b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,17 +1,17 @@ "use client" import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; -import HeroBillboard from "@/components/sections/hero/HeroBillboard"; -import FeatureCardEight from "@/components/sections/feature/FeatureCardEight"; -import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; -import ProductCardFour from "@/components/sections/product/ProductCardFour"; -import PricingCardEight from "@/components/sections/pricing/PricingCardEight"; -import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen"; -import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; -import ContactCTA from "@/components/sections/contact/ContactCTA"; -import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import { Zap, Layers, Sparkles, CheckCircle, Target, DollarSign, Quote, Rocket, Users } from "lucide-react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroBillboard from '@/components/sections/hero/HeroBillboard'; +import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; +import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; +import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; +import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import { Zap, Layers, Sparkles, CheckCircle, Target, DollarSign, Quote, Rocket, Users, Star } from "lucide-react"; export default function LandingPage() { return ( @@ -21,7 +21,7 @@ export default function LandingPage() { borderRadius="soft" contentWidth="compact" sizing="mediumLarge" - background="noise" + background="circleGradient" cardStyle="soft-shadow" primaryButtonStyle="primary-glow" secondaryButtonStyle="layered" @@ -44,7 +44,7 @@ export default function LandingPage() { @@ -175,7 +176,7 @@ export default function LandingPage() { features: ["4-6 ad variations", "Multiple hooks and angles", "Primary ad text and headlines", "Correct ad sizes and formats", "Ready to upload"] }, { - id: "professional", badge: "Most Popular", badgeIcon: Zap, + id: "professional", badge: "Most Popular", badgeIcon: Star, price: "$350/mo", subtitle: "Comprehensive creative support", buttons: [{ text: "Get Started", href: "contact" }], features: ["8-12 ad variations", "Diverse visual angles", "Copy testing variations", "Multiple formats and sizes", "Platform-optimized specs", "Priority support"] }, -- 2.49.1 From 1d30c07422608e2e0f3d1a9a67cc1f3a03ab9e91 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 14:44:37 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 51 ++++++------------- 1 file changed, 15 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..2143ea9 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,30 @@ -"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; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +const SvgTextLogo: React.FC = ({ text, className = '' }) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo; -- 2.49.1