updated Service providers

This commit is contained in:
2025-04-05 22:54:05 +03:00
parent fa4df11323
commit 60507c87e0
21 changed files with 1134 additions and 183 deletions

View File

@@ -0,0 +1,16 @@
import React from "react";
import Login from "@/components/auth/login";
import { Metadata } from "next";
export const metadata: Metadata = {
title: "WAG Login",
description: "Login to WAG system",
};
export default function LoginPage() {
return (
<div className="min-h-screen bg-gray-100">
<Login />
</div>
);
}