import { createClient } from '@/lib/supabase/server' import { redirect } from 'next/navigation' import Link from 'next/link' import { Button } from '@/components/ui/button' export default async function Home() { const supabase = await createClient() const { data: { user } } = await supabase.auth.getUser() // If logged in, redirect to dashboard if (user) { redirect('/dashboard') } // Landing page for non-authenticated users return (

Leopost

Il tuo social media manager potenziato dall'AI.
Minimo sforzo, massima resa.

Nessuna carta richiesta. Piano gratuito disponibile.

) }