diff --git a/src/app/(web)/login/page.tsx b/src/app/(web)/login/page.tsx new file mode 100644 index 0000000..e9099c9 --- /dev/null +++ b/src/app/(web)/login/page.tsx @@ -0,0 +1,25 @@ +import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card" +import { Button } from "@/components/ui/button" +import Link from "next/link" + +export default function LoginPage() { + return ( +
+ + + Welcome + Choose your login type + + + + + + +
+ ) +} + diff --git a/src/app/(web)/page.tsx b/src/app/(web)/page.tsx index 91f3e21..d157fd8 100644 --- a/src/app/(web)/page.tsx +++ b/src/app/(web)/page.tsx @@ -3,7 +3,7 @@ import { Hero } from "@/components/hero"; import { Facts } from "@/components/facts"; -import SignupPage from './signup/page' +import SignupPage from './login/page' import Link from "next/link"; export default function Home() { diff --git a/src/app/(web)/signup/page.tsx b/src/app/(web)/signup/page.tsx deleted file mode 100644 index b9cbe65..0000000 --- a/src/app/(web)/signup/page.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import { - SignInButton, - SignedOut, - } from '@clerk/nextjs' - - export default function SignupPage() { - return ( - - - - ) - } \ No newline at end of file diff --git a/src/components/footer.tsx b/src/components/footer.tsx index 9e511c1..fdc2034 100644 --- a/src/components/footer.tsx +++ b/src/components/footer.tsx @@ -3,11 +3,10 @@ import * as React from "react" export function Footer() { - return ( )