import { Link } from '@/i18n/routing'; import LoginForm from "@/components/partials/auth/login-form"; import Image from "next/image"; import Social from "@/components/partials/auth/social"; import Copyright from "@/components/partials/auth/copyright"; import Logo from "@/components/partials/auth/logo"; const Login = ({ params: { locale } }: { params: { locale: string } }) => { return ( <>

Unlock your Project performance

Sign in

Sign in to your account to start using Dashcode
Or continue with
Don’t have an account?{" "} Sign up
); }; export default Login;