diff --git a/app/(default)/record-replay/page.tsx b/app/(default)/record-replay/page.tsx new file mode 100644 index 00000000..fbea0ae5 --- /dev/null +++ b/app/(default)/record-replay/page.tsx @@ -0,0 +1,100 @@ +"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/record-replay"; +import BannerBunny from "@/public/images/banner-bunny.png"; +import FAQ from "@/components/pillar-page/faq"; +const heroData = { + titleTop: "Effortlessly streamline ", + titleBottom: "testing process with Record and Replay feature.", + subtitleTop: "Eliminate the need for complex setup or coding knowledge for testing!", + subtitleBottom: + "Simply record interactions and replay them to generate dynamic test cases.🚀", + animationSrc: testAndStubsGen, +}; +const ProblemBlocksData = { + title: "Smart generation - Enhanced development", + subtitle: "👋 Say Hi to 👋", + btnText: "Join Waitlist", + blocksData: blocksData, +}; +const FeaturesData = { + title: "With Keploy's Record Replay ", + 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 ( + <> + + + + + + + + + + +