From 73d6c20685d576f87b3b5c7e700905d4449a6620 Mon Sep 17 00:00:00 2001 From: development Date: Wed, 21 Jan 2026 20:38:26 +0000 Subject: [PATCH 1/8] Update src/app/build/page.tsx --- src/app/build/page.tsx | 75 ++++++++++++++++++++---------------------- 1 file changed, 35 insertions(+), 40 deletions(-) diff --git a/src/app/build/page.tsx b/src/app/build/page.tsx index 8726f0e..77caf16 100644 --- a/src/app/build/page.tsx +++ b/src/app/build/page.tsx @@ -1,26 +1,25 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import Link from "next/link"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; -import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; +import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; +import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; import FooterMedia from '@/components/sections/footer/FooterMedia'; -import { Speaker, Zap, Sparkles } from "lucide-react"; +import { Sparkles } from "lucide-react"; export default function BuildPage() { return (
-
-
@@ -131,4 +126,4 @@ export default function BuildPage() {
); -} +} \ No newline at end of file -- 2.49.1 From 5ce6e1b22583da01d22aca520f2853043eb45b47 Mon Sep 17 00:00:00 2001 From: development Date: Wed, 21 Jan 2026 20:38:26 +0000 Subject: [PATCH 2/8] Update src/app/field-tests/page.tsx --- src/app/field-tests/page.tsx | 43 +++++++++++++++++++----------------- 1 file changed, 23 insertions(+), 20 deletions(-) diff --git a/src/app/field-tests/page.tsx b/src/app/field-tests/page.tsx index 99b7921..b8f91a0 100644 --- a/src/app/field-tests/page.tsx +++ b/src/app/field-tests/page.tsx @@ -1,24 +1,23 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import Link from "next/link"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import BlogCardOne from '@/components/sections/blog/BlogCardOne'; +import BlogCardTwo from '@/components/sections/blog/BlogCardTwo'; import FooterMedia from '@/components/sections/footer/FooterMedia'; export default function FieldTestsPage() { return (
- ); -} +} \ No newline at end of file -- 2.49.1 From 644514787d8329b9d26dda7958eb4e09090ffcd2 Mon Sep 17 00:00:00 2001 From: development Date: Wed, 21 Jan 2026 20:38:27 +0000 Subject: [PATCH 3/8] Update src/app/globals.css --- src/app/globals.css | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index 977caaa..257c5b2 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -4,21 +4,21 @@ /* Base units */ /* --vw is set by ThemeProvider */ - /* --background: #0f0a1a;; - --card: #1a1f3a;; - --foreground: #e6d7f0;; - --primary-cta: #9d5cf6;; - --secondary-cta: #2a1f4a;; - --accent: #d4a9ff;; - --background-accent: #7e52d6;; */ + /* --background: #0a0a0a;; + --card: #1a1515;; + --foreground: #f5f0ff;; + --primary-cta: #00d9ff;; + --secondary-cta: #ff00ff;; + --accent: #00ff88;; + --background-accent: #1a0a3a;; */ - --background: #0f0a1a;; - --card: #1a1f3a;; - --foreground: #e6d7f0;; - --primary-cta: #9d5cf6;; - --secondary-cta: #2a1f4a;; - --accent: #d4a9ff;; - --background-accent: #7e52d6;; + --background: #0a0a0a;; + --card: #1a1515;; + --foreground: #f5f0ff;; + --primary-cta: #00d9ff;; + --secondary-cta: #ff00ff;; + --accent: #00ff88;; + --background-accent: #1a0a3a;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1 From a77bd44efe19bf8ca46cc891383f3fec70fbbd6c Mon Sep 17 00:00:00 2001 From: development Date: Wed, 21 Jan 2026 20:38:28 +0000 Subject: [PATCH 4/8] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b88437d..6c97a7f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1264,4 +1264,4 @@ export default function RootLayout({ ); -} +} \ No newline at end of file -- 2.49.1 From 98ac3d68430d37dd0cb07a86d954674509ef701b Mon Sep 17 00:00:00 2001 From: development Date: Wed, 21 Jan 2026 20:38:29 +0000 Subject: [PATCH 5/8] Update src/app/page.tsx --- src/app/page.tsx | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 2a5f883..5234d25 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,26 +1,25 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import Link from "next/link"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import FooterMedia from '@/components/sections/footer/FooterMedia'; -import { Zap } from "lucide-react"; +import { Zap, Code2, Rocket, Cpu } from "lucide-react"; export default function HomePage() { return ( @@ -87,7 +86,7 @@ export default function HomePage() { id: "3", value: "12 ms", title: "System Latency", description: "Input to output via DSP processing", imageSrc: "https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=800&q=80", imageAlt: "DSP latency measurement" } ]} - animationType="slide-up" + animationType="scale-rotate" textboxLayout="default" useInvertedBackground="invertDefault" /> @@ -129,4 +128,4 @@ export default function HomePage() {
); -} +} \ No newline at end of file -- 2.49.1 From 00a000c4989844d88a9c2a36ce448dcfd0abd47b Mon Sep 17 00:00:00 2001 From: development Date: Wed, 21 Jan 2026 20:38:30 +0000 Subject: [PATCH 6/8] Update src/app/performance/page.tsx --- src/app/performance/page.tsx | 53 +++++++++++++++++------------------- 1 file changed, 25 insertions(+), 28 deletions(-) diff --git a/src/app/performance/page.tsx b/src/app/performance/page.tsx index d651596..e3ad6d2 100644 --- a/src/app/performance/page.tsx +++ b/src/app/performance/page.tsx @@ -1,24 +1,23 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import Link from "next/link"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; +import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; import FooterMedia from '@/components/sections/footer/FooterMedia'; export default function PerformancePage() { return (
-
-
@@ -121,4 +118,4 @@ export default function PerformancePage() {
); -} +} \ No newline at end of file -- 2.49.1 From 09f17bf9876b0bf2f32f4e38656a971d384bbf63 Mon Sep 17 00:00:00 2001 From: development Date: Wed, 21 Jan 2026 20:38:30 +0000 Subject: [PATCH 7/8] Update src/app/support/page.tsx --- src/app/support/page.tsx | 47 +++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 25 deletions(-) diff --git a/src/app/support/page.tsx b/src/app/support/page.tsx index 014457e..8965bbd 100644 --- a/src/app/support/page.tsx +++ b/src/app/support/page.tsx @@ -1,25 +1,25 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import Link from "next/link"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import FaqBase from '@/components/sections/faq/FaqBase'; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { MessageSquare } from "lucide-react"; export default function SupportPage() { return ( @@ -64,18 +64,15 @@ export default function SupportPage() {
- console.log('Newsletter signup:', email)} />
@@ -115,4 +112,4 @@ export default function SupportPage() {
); -} +} \ No newline at end of file -- 2.49.1 From 5b678181c4a5f0303f7c30831f412615f7b26371 Mon Sep 17 00:00:00 2001 From: development Date: Wed, 21 Jan 2026 20:38:31 +0000 Subject: [PATCH 8/8] Update src/app/systems/page.tsx --- src/app/systems/page.tsx | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/src/app/systems/page.tsx b/src/app/systems/page.tsx index 9fc7d6a..8f72a8f 100644 --- a/src/app/systems/page.tsx +++ b/src/app/systems/page.tsx @@ -1,7 +1,6 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import Link from "next/link"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import FooterMedia from '@/components/sections/footer/FooterMedia'; @@ -9,16 +8,16 @@ import FooterMedia from '@/components/sections/footer/FooterMedia'; export default function SystemsPage() { return ( @@ -54,7 +53,7 @@ export default function SystemsPage() { } ]} textboxLayout="default" - animationType="slide-up" + animationType="scale-rotate" gridVariant="three-columns-all-equal-width" useInvertedBackground="noInvert" /> @@ -96,4 +95,4 @@ export default function SystemsPage() { ); -} +} \ No newline at end of file -- 2.49.1