Spaces:
Sleeping
Sleeping
File size: 1,042 Bytes
2398be6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
"use client";
import React from "react";
import Hero from "@/components/ui/animated-shader-hero";
import { useRouter } from "next/navigation";
export default function Home() {
const router = useRouter();
const handleGetExtension = () => {
// Redirect to extensions page where user can read instructions
router.push('/extensions');
};
return (
<Hero
trustBadge={{ text: "Trusted by 10,000+ teams worldwide", icons: ["β¨", "π", "β‘"] }}
headline={{
line1: "AI-Powered Link",
line2: "Intelligence Platform"
}}
subtitle={"LinkScout revolutionizes how you discover, organize, and leverage web content. Our AI analyzes, categorizes, and provides intelligent insights on your linksβmaking research effortless and knowledge management seamless."}
buttons={{
primary: { text: "Start Exploring", onClick: () => router.push('/search') },
secondary: {
text: "Get Extension",
onClick: handleGetExtension
}
}}
/>
);
}
|