import Link from "next/link"; import Image from "next/image"; import { getKindeServerSession } from "@kinde-oss/kinde-auth-nextjs/server"; import { ArrowRight, Zap, BarChart3 } from "lucide-react"; import { Button } from "@/components/ui/button"; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; export default async function Home() { const { getUser } = getKindeServerSession(); const user = await getUser(); return (
{/* Hero Section */}

Welcome to{" "} VTOR.IO VTOR.IO

Streamline your workflow with powerful file management, intelligent imports, and comprehensive analytics. Automate your data workflows with ease.

{user ? ( ) : ( <> )}
{/* Background decoration */}
{/* Features Section */}

Everything you need to manage your data

Powerful features designed to help you work smarter, not harder.

Smart Imports Process Excel files with intelligent mapping and validation

Upload your Excel files and let our system intelligently map columns, validate data, and create structured imports with ease.

Automated Workflows Streamline repetitive tasks with intelligent automation and scheduled processing

Create powerful automation rules that trigger file processing, data validation, and report generation based on schedules or events. Save hours of manual work.

Analytics & Insights Get detailed reports and actionable insights from your data

Transform your raw data into meaningful insights with comprehensive analytics and customizable reporting dashboards.

); }