updated client-frontend additions

This commit is contained in:
2025-05-06 17:48:13 +03:00
parent e0ae1ee80a
commit bc43471259
140 changed files with 4320 additions and 1117 deletions

View File

@@ -1,16 +1,6 @@
import React from "react";
import Login from "@/components/auth/login";
import { Metadata } from "next";
'use server';
import Login from "@/webPages/auth/Login/page";
export const metadata: Metadata = {
title: "WAG Login",
description: "Login to WAG system",
};
const LoginPage = async () => { return <Login language="en" /> };
export default function LoginPage() {
return (
<>
<Login />
</>
);
}
export default LoginPage;