🚩 create HTML meta tag helper

This commit is contained in:
2025-08-05 13:17:04 +07:00
parent fcebe9708d
commit a2c9b7fd08
3 changed files with 43 additions and 0 deletions

View File

@ -1,6 +1,13 @@
import { buildMeta } from "@/shared/config/meta";
import LoginCard from "@/widgets/authentication/login/LoginCard";
import React from "react";
export const generateMetadata = () => {
return buildMeta({
title: "Log in",
});
};
const page = () => {
return (
<div className="fixed z-10 w-screen h-screen flex justify-center items-center -mt-12">

View File

@ -1,6 +1,13 @@
import { buildMeta } from "@/shared/config/meta";
import SignupCard from "@/widgets/authentication/signup/SignupCard";
import React from "react";
export const generateMetadata = () => {
return buildMeta({
title: "Sign in",
});
};
const page = () => {
return (
<div className="fixed z-10 w-screen h-screen flex justify-center items-center -mt-12">