✨ create new signup page
This commit is contained in:
5
app/(auth)/signup/metadata.tsx
Normal file
5
app/(auth)/signup/metadata.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
import { Metadata } from "next";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Sign Up | Nounoz TV",
|
||||
};
|
||||
11
app/(auth)/signup/page.tsx
Normal file
11
app/(auth)/signup/page.tsx
Normal file
@ -0,0 +1,11 @@
|
||||
import SignupPage from "@/features/auth/pages/SignupPage";
|
||||
import { metadata } from "./metadata";
|
||||
export { metadata };
|
||||
|
||||
import React from "react";
|
||||
|
||||
const page = () => {
|
||||
return <SignupPage />;
|
||||
};
|
||||
|
||||
export default page;
|
||||
Reference in New Issue
Block a user