Skip to content

Commit 757e20c

Browse files
committed
Done with login/Signin
1 parent 04cfbf6 commit 757e20c

File tree

14 files changed

+149
-72
lines changed

14 files changed

+149
-72
lines changed

apps/X/app/favicon.ico

146 KB
Binary file not shown.

apps/X/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const geistMono = localFont({
1212
});
1313

1414
export const metadata: Metadata = {
15-
title: "Create Next App",
15+
title: "ProjectX",
1616
description: "Generated by create next app",
1717
};
1818

apps/X/app/login/page.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
import { SigninComp } from "@/components/ui";
1+
import { LoginComp } from "@/components/ui";
22

33
const Login = () => {
44
return (
55
<div>
6-
<div className=""></div>
6+
<div className="flex justify-center items-center h-screen">
7+
<LoginComp />
8+
</div>
79
</div>
810
);
911
};

apps/X/app/signin/page.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { SigninComp } from "@/components/ui";
2+
3+
const page = () => {
4+
return (
5+
<div>
6+
<SigninComp />
7+
</div>
8+
);
9+
};
10+
11+
export default page;

apps/X/public/file-text.svg

Lines changed: 0 additions & 3 deletions
This file was deleted.

apps/X/public/globe.svg

Lines changed: 0 additions & 10 deletions
This file was deleted.

apps/X/public/next.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

apps/X/public/turborepo-dark.svg

Lines changed: 0 additions & 19 deletions
This file was deleted.

apps/X/public/turborepo-light.svg

Lines changed: 0 additions & 19 deletions
This file was deleted.

apps/X/public/vercel.svg

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)