diff --git a/surfsense_web/components/homepage/hero-section.tsx b/surfsense_web/components/homepage/hero-section.tsx
index 9d0cd6f0c..09d05f9ea 100644
--- a/surfsense_web/components/homepage/hero-section.tsx
+++ b/surfsense_web/components/homepage/hero-section.tsx
@@ -5,7 +5,7 @@ import Link from "next/link";
import type React from "react";
import { useEffect, useRef, useState } from "react";
import Balancer from "react-wrap-balancer";
-import { WalkthroughScroll } from "@/components/ui/walkthrough-scroll";
+import { HeroCarousel } from "@/components/ui/hero-carousel";
import { AUTH_TYPE, BACKEND_URL } from "@/lib/env-config";
import { trackLoginAttempt } from "@/lib/posthog/events";
import { cn } from "@/lib/utils";
@@ -108,7 +108,7 @@ export function HeroSection() {
{/* */}
-
+
);
diff --git a/surfsense_web/components/ui/walkthrough-scroll.tsx b/surfsense_web/components/ui/hero-carousel.tsx
similarity index 76%
rename from surfsense_web/components/ui/walkthrough-scroll.tsx
rename to surfsense_web/components/ui/hero-carousel.tsx
index 560e4dde5..4a7d800cf 100644
--- a/surfsense_web/components/ui/walkthrough-scroll.tsx
+++ b/surfsense_web/components/ui/hero-carousel.tsx
@@ -8,43 +8,43 @@ const carouselItems = [
{
title: "Connect & Sync",
description:
- "Connect data sources like Notion, Drive and Gmail. Enable periodic syncing to keep them updated.",
+ "Connect data sources like Notion, Drive and Gmail. Automatically sync to keep them updated.",
src: "/homepage/hero_tutorial/ConnectorFlowGif.gif",
},
{
title: "Upload Documents",
- description: "Or upload your documents directly, including iamges and massive PDFs.",
+ description: "Upload documents directly, from images to massive PDFs.",
src: "/homepage/hero_tutorial/DocUploadGif.gif",
},
{
title: "Search & Citation",
description:
- "Ask questions and get Perplexity-style cited responses from your knowledge base.",
+ "Ask questions and get cited responses from your knowledge base.",
src: "/homepage/hero_tutorial/BSNCGif.gif",
},
{
- title: "Document Mention Q&A",
- description: "Mention specific documents in your queries for targeted answers.",
+ title: "Targeted Document Q&A",
+ description: "Mention specific documents in chat for targeted answers.",
src: "/homepage/hero_tutorial/BQnaGif_compressed.gif",
},
{
- title: "Report Generation",
- description: "Generate and export reports in many formats.",
+ title: "Produce Reports Instantly",
+ description: "Generate reports from your sources in many formats.",
src: "/homepage/hero_tutorial/ReportGenGif_compressed.gif",
},
{
- title: "Podcast Generation",
- description: "Turn your knowledge into podcasts in under 20 seconds.",
+ title: "Create Podcasts",
+ description: "Turn anything into a podcast in under 20 seconds.",
src: "/homepage/hero_tutorial/PodcastGenGif.gif",
},
{
title: "Image Generation",
- description: "Generate images directly from your conversations.",
+ description: "Generate high-quality images easily from your conversations.",
src: "/homepage/hero_tutorial/ImageGenGif.gif",
},
{
- title: "Realtime Chat",
- description: "Chat together in realtime with your team.",
+ title: "Collaborative AI Chat",
+ description: "Collaborate on AI-powered conversations in realtime with your team.",
src: "/homepage/hero_realtime/RealTimeChatGif.gif",
},
{
@@ -54,7 +54,7 @@ const carouselItems = [
},
];
-function WalkthroughCard({
+function HeroCarouselCard({
index,
title,
description,
@@ -114,14 +114,14 @@ function WalkthroughCard({
<>