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 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 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); 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 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 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 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 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