Skip to content

Commit

Permalink
Merge pull request #2 from wizelineacademy/login
Browse files Browse the repository at this point in the history
avances con el perfil
  • Loading branch information
JoseCSG authored Apr 2, 2024
2 parents d129de1 + a555fa0 commit a0ce393
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 149 deletions.
35 changes: 0 additions & 35 deletions app/globals.css
Original file line number Diff line number Diff line change
@@ -1,38 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
--foreground-rgb: 0, 0, 0;
--background-start-rgb: 214, 219, 220;
--background-end-rgb: 255, 255, 255;
}

@font-face {
font-family: "Popppins";
src: url();
}

@media (prefers-color-scheme: dark) {
:root {
--foreground-rgb: 255, 255, 255;
--background-start-rgb: 0, 0, 0;
--background-end-rgb: 0, 0, 0;
}
}

body {
color: rgb(var(--foreground-rgb));
background: linear-gradient(
to bottom,
transparent,
rgb(var(--background-end-rgb))
)
rgb(var(--background-start-rgb));
}

@layer utilities {
.text-balance {
text-wrap: balance;
}
}
10 changes: 9 additions & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import type { Metadata } from "next";
import { Inter, Poppins } from "next/font/google";
import "./globals.css";
import dynamic from "next/dynamic";

// const inter = Inter({ subsets: ["latin"] });

Expand All @@ -15,14 +16,21 @@ export const metadata: Metadata = {
description: "Generated by create next app",
};

const Navbar = dynamic(() => import("../components/NavigationBar"));

export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
// if the current route is login or register, we don't want to show the nav bar

return (
<html lang="en">
<body className={poppins.className}>{children}</body>
<body className={poppins.className}>
<Navbar />
{children}
</body>
</html>
);
}
28 changes: 24 additions & 4 deletions app/login/page.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
"use client";
import Image from "next/image";
import { useRouter } from "next/navigation";
import { FormEvent } from "react";

const Login = () => {
const router = useRouter();
const handleLogin = (e: FormEvent) => {
e.preventDefault();
router.push("/");
};

return (
<main className="flex h-dvh w-full items-center justify-center bg-gradient-to-r from-primary to-primary-light">
<section className="h-[80%] w-[459px] rounded-[20px] bg-white shadow-md">
<section className="h-[80%] w-[459px] rounded-[20px] bg-white drop-shadow-md">
<p className="mx-8 mt-10 text-center text-4xl font-medium leading-tight text-black">
Welcome to Feedback Flow
</p>
Expand All @@ -19,7 +28,10 @@ const Login = () => {
<span className="mx-4 text-sm text-black">OR</span>
<div className="flex-grow border-t border-black" />
</div>
<form className="mx-12 mt-8 flex flex-col justify-center">
<form
className="mx-12 mt-8 flex flex-col justify-center"
onSubmit={(e) => handleLogin(e)}
>
<label className="self-start text-xl text-black">Email</label>
<input
className="text-md mt-2 h-12 w-full rounded-2xl border border-black bg-white px-2 text-black"
Expand All @@ -33,13 +45,21 @@ const Login = () => {
placeholder="********"
/>
{/* Find a darker color for hover */}
<button className="mx-auto my-8 h-12 w-28 rounded-3xl bg-primary text-white shadow-2xl hover:bg-primary-dark">
<button
className="mx-auto my-8 h-12 w-28 rounded-3xl bg-primary text-white shadow-2xl hover:bg-primary-dark"
type="submit"
>
Login
</button>
</form>
<div className="mx-auto flex justify-center text-sm font-medium">
<p className="text-black">Don&apos;t have an account? </p>
<p className="ms-1 text-primary hover:text-primary-dark">Register</p>
<a
href="/register"
className="ms-1 text-primary hover:text-primary-dark"
>
Register
</a>
</div>
</section>
</main>
Expand Down
111 changes: 2 additions & 109 deletions app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,114 +1,7 @@
import Image from "next/image";

export default function Home() {
return (
<main className="flex min-h-screen flex-col items-center justify-between p-24">
<div className="z-10 w-full max-w-5xl items-center justify-between font-mono text-sm lg:flex">
<p className="fixed left-0 top-0 flex w-full justify-center border-b border-gray-300 bg-gradient-to-b from-zinc-200 pb-6 pt-8 backdrop-blur-2xl lg:static lg:w-auto lg:rounded-xl lg:border lg:bg-gray-200 lg:p-4 dark:border-neutral-800 dark:bg-zinc-800/30 dark:from-inherit lg:dark:bg-zinc-800/30">
Get started by editing&nbsp;
<code className="font-mono font-bold">app/page.tsx</code>
</p>
<div className="fixed bottom-0 left-0 flex h-48 w-full items-end justify-center bg-gradient-to-t from-white via-white lg:static lg:h-auto lg:w-auto lg:bg-none dark:from-black dark:via-black">
<a
className="pointer-events-none flex place-items-center gap-2 p-8 lg:pointer-events-auto lg:p-0"
href="https://vercel.com?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
target="_blank"
rel="noopener noreferrer"
>
By{" "}
<Image
src="/vercel.svg"
alt="Vercel Logo"
className="dark:invert"
width={100}
height={24}
priority
/>
</a>
<a href="/login">Login</a>
</div>
</div>

<div className="relative z-[-1] flex place-items-center before:absolute before:h-[300px] before:w-full before:-translate-x-1/2 before:rounded-full before:bg-gradient-radial before:from-white before:to-transparent before:blur-2xl before:content-[''] after:absolute after:-z-20 after:h-[180px] after:w-full after:translate-x-1/3 after:bg-gradient-conic after:from-sky-200 after:via-blue-200 after:blur-2xl after:content-[''] sm:before:w-[480px] sm:after:w-[240px] before:lg:h-[360px] before:dark:bg-gradient-to-br before:dark:from-transparent before:dark:to-blue-700 before:dark:opacity-10 after:dark:from-sky-900 after:dark:via-[#0141ff] after:dark:opacity-40">
<Image
className="relative dark:drop-shadow-[0_0_0.3rem_#ffffff70] dark:invert"
src="/next.svg"
alt="Next.js Logo"
width={180}
height={37}
priority
/>
</div>

<div className="mb-32 grid text-center lg:mb-0 lg:w-full lg:max-w-5xl lg:grid-cols-4 lg:text-left">
<a
href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
className="group rounded-lg border border-transparent px-5 py-4 transition-colors hover:border-gray-300 hover:bg-gray-100 hover:dark:border-neutral-700 hover:dark:bg-neutral-800/30"
target="_blank"
rel="noopener noreferrer"
>
<h2 className={`mb-3 text-2xl font-semibold`}>
Docs{" "}
<span className="inline-block transition-transform group-hover:translate-x-1 motion-reduce:transform-none">
-&gt;
</span>
</h2>
<p className={`m-0 max-w-[30ch] text-sm opacity-50`}>
Find in-depth information about Next.js features and API.
</p>
</a>

<a
href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
className="group rounded-lg border border-transparent px-5 py-4 transition-colors hover:border-gray-300 hover:bg-gray-100 hover:dark:border-neutral-700 hover:dark:bg-neutral-800/30"
target="_blank"
rel="noopener noreferrer"
>
<h2 className={`mb-3 text-2xl font-semibold`}>
Learn{" "}
<span className="inline-block transition-transform group-hover:translate-x-1 motion-reduce:transform-none">
-&gt;
</span>
</h2>
<p className={`m-0 max-w-[30ch] text-sm opacity-50`}>
Learn about Next.js in an interactive course with&nbsp;quizzes!
</p>
</a>

<a
href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
className="group rounded-lg border border-transparent px-5 py-4 transition-colors hover:border-gray-300 hover:bg-gray-100 hover:dark:border-neutral-700 hover:dark:bg-neutral-800/30"
target="_blank"
rel="noopener noreferrer"
>
<h2 className={`mb-3 text-2xl font-semibold`}>
Templates{" "}
<span className="inline-block transition-transform group-hover:translate-x-1 motion-reduce:transform-none">
-&gt;
</span>
</h2>
<p className={`m-0 max-w-[30ch] text-sm opacity-50`}>
Explore starter templates for Next.js.
</p>
</a>

<a
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
className="group rounded-lg border border-transparent px-5 py-4 transition-colors hover:border-gray-300 hover:bg-gray-100 hover:dark:border-neutral-700 hover:dark:bg-neutral-800/30"
target="_blank"
rel="noopener noreferrer"
>
<h2 className={`mb-3 text-2xl font-semibold`}>
Deploy{" "}
<span className="inline-block transition-transform group-hover:translate-x-1 motion-reduce:transform-none">
-&gt;
</span>
</h2>
<p className={`m-0 max-w-[30ch] text-balance text-sm opacity-50`}>
Instantly deploy your Next.js site to a shareable URL with Vercel.
</p>
</a>
</div>
<main className="h-dvh w-dvw bg-white">
<a href="/login"> Login </a>
</main>
);
}
24 changes: 24 additions & 0 deletions components/NavigationBar.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
"use client";
import { usePathname } from "next/navigation";

const NavigationBar = () => {
const pathname = usePathname();

// si estamos en el login o register no mostramos la navbar
if (pathname === "/login" || pathname === "/register") return null;

return (
<nav className="flex items-center justify-between bg-white p-4 ">
<h1 className="text-3xl font-bold text-primary">FEEDBACK FLOW</h1>
<div>
<a className="mx-2" href="/login">
Login
</a>
<a className="mx-2" href="/register">
Register
</a>
</div>
</nav>
);
};
export default NavigationBar;

0 comments on commit a0ce393

Please sign in to comment.