From 69f611c45bcfa2a660e45e44a26d9a1b2c930104 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 06:38:09 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 282 ++++++++++++++--------------------------------- 1 file changed, 83 insertions(+), 199 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4b1fe37..84757ce 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -36,15 +36,14 @@ export default function HomePage() { { name: "Docs", id: "docs" }, ]} button={{ - text: "Start Streaming", - href: "https://app.emergent.dev", - }} + text: "Start Streaming", href: "https://app.emergent.dev"}} animateOnLoad={true} />
+
+ +
+
@@ -288,15 +206,7 @@ export default function HomePage() { textboxLayout="default" useInvertedBackground={false} logos={[ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQUvG7UHHYgJ6tZ0pGIZ4IInAH/professional-streaming-service-logo-in-t-1773210934041-ea7bae41.png", - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQUvG7UHHYgJ6tZ0pGIZ4IInAH/professional-video-platform-logo-in-yout-1773210934446-19fc6623.png", - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQUvG7UHHYgJ6tZ0pGIZ4IInAH/professional-streaming-service-logo-in-h-1773210933396-8b78a1af.png", - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQUvG7UHHYgJ6tZ0pGIZ4IInAH/professional-streaming-platform-logo-in--1773210933983-65b6666a.png", - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQUvG7UHHYgJ6tZ0pGIZ4IInAH/professional-entertainment-streaming-log-1773210933550-ef8a73be.png", - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQUvG7UHHYgJ6tZ0pGIZ4IInAH/professional-streaming-service-logo-in-p-1773210934061-05601841.png", - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQUvG7UHHYgJ6tZ0pGIZ4IInAH/professional-streaming-platform-logo-in--1773210934131-f3eec055.png", - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQUvG7UHHYgJ6tZ0pGIZ4IInAH/professional-streaming-platform-logo-in--1773210934539-8a2a4ab5.png", - ]} + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQUvG7UHHYgJ6tZ0pGIZ4IInAH/professional-streaming-service-logo-in-t-1773210934041-ea7bae41.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQUvG7UHHYgJ6tZ0pGIZ4IInAH/professional-video-platform-logo-in-yout-1773210934446-19fc6623.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQUvG7UHHYgJ6tZ0pGIZ4IInAH/professional-streaming-service-logo-in-h-1773210933396-8b78a1af.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQUvG7UHHYgJ6tZ0pGIZ4IInAH/professional-streaming-platform-logo-in--1773210933983-65b6666a.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQUvG7UHHYgJ6tZ0pGIZ4IInAH/professional-entertainment-streaming-log-1773210933550-ef8a73be.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQUvG7UHHYgJ6tZ0pGIZ4IInAH/professional-streaming-service-logo-in-p-1773210934061-05601841.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQUvG7UHHYgJ6tZ0pGIZ4IInAH/professional-streaming-platform-logo-in--1773210934131-f3eec055.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQUvG7UHHYgJ6tZ0pGIZ4IInAH/professional-streaming-platform-logo-in--1773210934539-8a2a4ab5.png"]} speed={40} showCard={true} tagAnimation="slide-up" @@ -309,47 +219,23 @@ export default function HomePage() { ); -} \ No newline at end of file +} + +import PricingCardFive from "@/components/sections/pricing/PricingCardFive"; \ No newline at end of file -- 2.49.1 From cf590e72636689bf82194832296c8117ddba484e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 06:38:09 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 60 +++++++------------ 1 file changed, 23 insertions(+), 37 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..b6b1d40 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,37 @@ -"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; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1