"use client"; import Image from "next/image"; import React from "react"; import { Inter } from "next/font/google"; const inter = Inter({ subsets: ["latin"] }); import { signIn } from "next-auth/react"; // Import signIn function import { Button } from "@/components/ui/button"; import Link from "next/link"; const page = () => { return (
login splash
logo

Hi There 👋

Login to your Google account.

© 2024 Torpedo

); }; export default page;