diff --git a/app/[locale]/auth/page.tsx b/app/[locale]/auth/page.tsx index 10b85d33..091105ab 100644 --- a/app/[locale]/auth/page.tsx +++ b/app/[locale]/auth/page.tsx @@ -1,8 +1,75 @@ -import React from 'react' -import { redirect } from 'next/navigation' -const page = ({ params: { locale } }: { params: { locale: string } }) => { - redirect(`/${locale}/auth/login`) - return null -} +// import React from 'react' +// import { redirect } from 'next/navigation' +// const page = ({ params: { locale } }: { params: { locale: string } }) => { +// redirect(`/${locale}/auth/login`) +// return null +// } -export default page \ No newline at end of file +// export default page + +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;