import Link from "next/link"; import { getKindeServerSession } from "@kinde-oss/kinde-auth-nextjs/server"; import { ArrowRight, Zap, Shield, 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

Streamline your workflow with powerful file management, intelligent imports, and comprehensive analytics. Built for modern teams who value efficiency.

{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.

Secure Storage Your files are encrypted and safely stored in the cloud

Enterprise-grade security with encrypted file storage, access controls, and audit trails for complete peace of mind.

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.

); }