From 84efe4e45d7fa5375dfb00b580291e0ff8628bf9 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 14:15:07 +0000 Subject: [PATCH] Add src/app/learn-more/integrations/page.tsx --- src/app/learn-more/integrations/page.tsx | 101 +++++++++++++++++++++++ 1 file changed, 101 insertions(+) create mode 100644 src/app/learn-more/integrations/page.tsx diff --git a/src/app/learn-more/integrations/page.tsx b/src/app/learn-more/integrations/page.tsx new file mode 100644 index 0000000..c238c9e --- /dev/null +++ b/src/app/learn-more/integrations/page.tsx @@ -0,0 +1,101 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi"; +import TextAbout from "@/components/sections/about/TextAbout"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; +import { Zap } from "lucide-react"; + +export default function LearnMoreIntegrations() { + return ( + + + +
+ +
+ +
+ +
+ +
+ window.open("https://mail.google.com/mail/u/0/#inbox?compose=CllgCKCJDpcNVLgLjnmzlfjhpdVpzlhHMczkBTgTPMlCJWbKpnvxftQMXCJXsLrmzvsghmMqHjV", "_blank") } + ]} + buttonAnimation="slide-up" + background={{ variant: "animated-grid" }} + useInvertedBackground={false} + /> +
+ + +
+ ); +} \ No newline at end of file