diff --git a/src/app/for-creators/page.tsx b/src/app/for-creators/page.tsx index 7683945..0e6088f 100644 --- a/src/app/for-creators/page.tsx +++ b/src/app/for-creators/page.tsx @@ -86,6 +86,7 @@ export default function ForCreatorsPage() { imagePosition="left" textboxLayout="default" useInvertedBackground={false} + mediaAnimation="none" /> diff --git a/src/app/page.tsx b/src/app/page.tsx index 7ad4c9c..3b696e7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -120,6 +120,7 @@ export default function HomePage() { imagePosition="right" textboxLayout="default" useInvertedBackground={false} + mediaAnimation="none" /> @@ -214,7 +215,7 @@ export default function HomePage() { { id: "9", title: "What happens if my channel performance declines?", content: "Our deals are non-recourse against your personal assets. If library performance declines, PAXA absorbs the risk—we share the downside. We're incentivized to actively manage and grow your portfolio."}, { - id: "10", title: "How does PAXA differ from traditional talent agencies?", content: "Talent agencies manage talent and negotiate deals. PAXA is financial infrastructure. We don't take a commission on your content or bookings. We provide capital, structuring, and strategic advisory to scale your business equity."}, + id: "10", title: "How does PAXA differ from traditional talent agencies?", content: "Talent agencies manage talent and negotiate deals. PAXA is financial infrastructure. We don't take a commission on your content or bookings. We provide capital, structuring, and strategic advisory to scale your business equity."} ]} faqsAnimation="slide-up" /> diff --git a/src/app/scout/page.tsx b/src/app/scout/page.tsx index 7928971..2775f0b 100644 --- a/src/app/scout/page.tsx +++ b/src/app/scout/page.tsx @@ -1,16 +1,11 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; -import FeatureCardEight from "@/components/sections/feature/FeatureCardEight"; -import SplitAbout from "@/components/sections/about/SplitAbout"; -import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; -import PricingCardEight from "@/components/sections/pricing/PricingCardEight"; -import FaqDouble from "@/components/sections/faq/FaqDouble"; -import FooterSimple from "@/components/sections/footer/FooterSimple"; -import Link from "next/link"; -import { Sparkles, Shield, TrendingUp, Zap, CheckCircle, Building2 } from "lucide-react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { Zap, CheckCircle, Sparkles } from 'lucide-react'; export default function ScoutPage() { return ( @@ -43,261 +38,54 @@ export default function ScoutPage() {
-
- -
- -
+
-
- -
- -
- -
- -
- -
-
@@ -305,87 +93,35 @@ export default function ScoutPage() { (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; +export default SvgTextLogo; \ No newline at end of file