From 0e88b84499725867a6a9199ced8c3274101f1f59 Mon Sep 17 00:00:00 2001 From: saeidex Date: Fri, 4 Oct 2024 01:36:50 +0600 Subject: [PATCH] add(nextjs): get-started page (duplicate login page) --- .../app/_components/landing-page/contact.tsx | 47 ++++++------------- .../_components/landing-page/header/index.tsx | 2 +- .../src/app/_components/landing-page/hero.tsx | 2 +- .../app/_components/landing-page/our-team.tsx | 4 +- .../_components/landing-page/testimonials.tsx | 2 +- .../logo.tsx => _components/logo-icon.tsx} | 2 +- .../_components/signin-with-buttons.tsx | 0 apps/nextjs/src/app/get-started/page.tsx | 41 ++++++++++++++++ apps/nextjs/src/app/login/page.tsx | 10 ++-- apps/nextjs/tsconfig.json | 7 ++- pnpm-lock.yaml | 37 ++++++++++----- 11 files changed, 97 insertions(+), 57 deletions(-) rename apps/nextjs/src/app/{login/_components/logo.tsx => _components/logo-icon.tsx} (91%) rename apps/nextjs/src/app/{login => }/_components/signin-with-buttons.tsx (100%) create mode 100644 apps/nextjs/src/app/get-started/page.tsx diff --git a/apps/nextjs/src/app/_components/landing-page/contact.tsx b/apps/nextjs/src/app/_components/landing-page/contact.tsx index a329491..dc197c7 100644 --- a/apps/nextjs/src/app/_components/landing-page/contact.tsx +++ b/apps/nextjs/src/app/_components/landing-page/contact.tsx @@ -1,5 +1,3 @@ -import Image from "next/image"; - import { cn } from "@ubus/ui"; import { Button } from "@ubus/ui/button"; import { Input } from "@ubus/ui/input"; @@ -37,7 +35,7 @@ const formItems: IFromItem[] = [ export const Contact = () => { return ( -
+

Contact our team @@ -46,35 +44,20 @@ export const Contact = () => { Got any questions about the product or scaling on our platform?

-
-
- {formItems.map((item) => ( - - ))} -
- -