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
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 (
);
-});
+};
-SvgTextLogo.displayName = "SvgTextLogo";
-
-export default SvgTextLogo;
+export default SvgTextLogo;
\ No newline at end of file