import Image from "next/image"; import { Metadata } from "next"; import Link from "next/link"; import { getSession } from "@auth0/nextjs-auth0"; import { redirect } from "next/navigation"; export const metadata: Metadata = { title: "IBD Trader", }; export default async function Home() { const user = await getSession(); if (user) { redirect("/dashboard"); } return (