diff --git a/frontend/src/pages/register.tsx b/frontend/src/pages/register.tsx
index 73a3987..124e941 100644
--- a/frontend/src/pages/register.tsx
+++ b/frontend/src/pages/register.tsx
@@ -1,92 +1,260 @@
import React from 'react';
import type { ReactElement } from 'react';
-import { ToastContainer, toast } from 'react-toastify';
import Head from 'next/head';
-import BaseButton from '../components/BaseButton';
-import CardBox from '../components/CardBox';
-import SectionFullScreen from '../components/SectionFullScreen';
-import LayoutGuest from '../layouts/Guest';
+import Link from 'next/link';
import { Field, Form, Formik } from 'formik';
-import FormField from '../components/FormField';
-import BaseDivider from '../components/BaseDivider';
-import BaseButtons from '../components/BaseButtons';
+import { ToastContainer, toast } from 'react-toastify';
import { useRouter } from 'next/router';
+import axios from 'axios';
+import LayoutGuest from '../layouts/Guest';
import { getPageTitle } from '../config';
-import axios from "axios";
+const ui = {
+ page: 'bg-[#fffdf9] text-[#19192d]',
+ banner:
+ 'bg-gradient-to-r from-[#35b7a5] via-[#95b76e] to-[#c38a25] text-white',
+ navShell:
+ 'rounded-full bg-white shadow-[0_18px_60px_rgba(31,31,50,0.08)] ring-1 ring-[#19192d]/5',
+ ink: 'text-[#19192d]',
+ muted: 'text-[#72798a]',
+ accent: 'text-[#35b7a5]',
+ border: 'border-[#19192d]/10',
+ button:
+ 'bg-gradient-to-r from-[#36b39f] to-[#b98624] text-white shadow-[0_18px_45px_rgba(54,179,159,0.24)] transition hover:brightness-105',
+ card: 'rounded-[1.75rem] border border-[#19192d]/10 bg-white shadow-[0_18px_50px_rgba(31,31,50,0.05)]',
+ overline: 'text-sm font-bold uppercase tracking-[0.28em] text-[#b17a1e]',
+ heading: 'font-serif font-semibold tracking-tight text-[#19192d]',
+};
+
+type RegisterValues = {
+ email: string;
+ password: string;
+ confirm: string;
+};
+
+function Nav() {
+ return (
+
Start your workspace
++ Create your account, then shape the workspace around your clients, + packages, session memory, resources, and follow-up rhythm. +
+ +{copy}
+Create account
++ Start with one client and test the full coaching loop. +
++ Already have an account?{' '} + + Login + +
+