diff --git a/app/(default)/ebpf-instrumentation/page.tsx b/app/(default)/ebpf-instrumentation/page.tsx new file mode 100644 index 00000000..a943b18f --- /dev/null +++ b/app/(default)/ebpf-instrumentation/page.tsx @@ -0,0 +1,94 @@ +"use client"; +import Footer from "@/components/ui/footer"; +import Hero from "@/components/pillar-page/hero"; +import Features from "@/components/pillar-page/feature"; +import ProblemBlocks from "@/components/pillar-page/block"; +import Banner from "@/components/pillar-page/banner"; +import Language from "@/components/language"; +import SocialLinks from "@/components/pillar-page/community"; +import { Testimonial } from "@/components/testimonial"; +import { testimonialData } from "@/components/utils/testimonial"; +import testAndStubsGen from "@/public/images/TestGenHighlighted.json"; +import { blocksData } from "@/components/utils/common"; +import { featuresData , faqQuestions} from "@/components/utils/ebpf-instrumentation"; +import BannerBunny from "@/public/images/banner-bunny.png"; +import FAQ from "@/components/pillar-page/faq"; +const heroData = { + titleTop: "Accelerate automated test ", + titleBottom: "development with eBPF !", + subtitleTop: "With Keploy, you can record-and-generate automated tests and data-mocks in 2 mins", + subtitleBottom: + "Rapidly scale your automated test coverage with a zero-code platform that works out of the box. 🚀", + animationSrc: testAndStubsGen, +}; +const ProblemBlocksData = { + title: "Smart generation - Enhanced development", + subtitle: "👋 Say Hi to 👋", + btnText: "Try Keploy", + blocksData: blocksData, +}; +const FeaturesData = { + title: "With Keploy's eBPF Instrumentation", + subtitle: + "Transforming interactions into realistic, diverse, and customizable stubs for precise testing", + highlightTitle: "eliminate", + featuresData: featuresData, +}; +const BannerData = { + title: " 🚀 Elevate Your Testing with Keploy!", + subtitle: "Ready to simplify your testing process?", + paraText: + "Click to experience Keploy's magic locally or book a demo for an interactive walkthrough. Embark on a journey to stress-free testing today!", + btnTextLeft: "Book Cloud Demo", + btnTextRight: "Try Locally", + bannerImage: BannerBunny, +}; +export default function Home() { + return ( + <> + + + + + + + + + +