diff --git a/src/app/(account)/forgot-password/page.tsx b/src/app/(account)/forgot-password/page.tsx index be744428..8add8171 100644 --- a/src/app/(account)/forgot-password/page.tsx +++ b/src/app/(account)/forgot-password/page.tsx @@ -108,9 +108,9 @@ export default function ForgotPasswordPage() { }); return ( -
+
-
+

Forgot Your Password?

{STEP_INSTRUCTIONS[step]}

{step === 1 && ( @@ -120,7 +120,7 @@ export default function ForgotPasswordPage() { control={sendCodeForm.control} name="email" /> - @@ -145,14 +145,14 @@ export default function ForgotPasswordPage() { control={resetPasswordForm.control} name="code" /> - )} {step === 3 && ( - )} diff --git a/src/app/(account)/join-us/page.tsx b/src/app/(account)/join-us/page.tsx index f443a328..e3a81d6a 100644 --- a/src/app/(account)/join-us/page.tsx +++ b/src/app/(account)/join-us/page.tsx @@ -1,6 +1,7 @@ 'use client'; import FancyRectangle from '@/components/FancyRectangle'; +import Title from '@/components/Title'; import { SignedIn, SignedOut, useUser } from '@clerk/nextjs'; import Link from 'next/link'; import { useEffect } from 'react'; @@ -23,58 +24,50 @@ export default function JoinUsPage() { }, [isSignedIn]); return ( -
-
-
- -
-

Join Us

-
-
-
-

New Members are

-
-

Always Welcome

-
+
+ Join Us +
+
+

New Members are

+
+

Always Welcome

-
-

- Membership costs $10 for the full - year. You can pay for membership online here at our website. - Alternatively, you can pay at a club event or contact one of the{' '} - - committee members - - . -

-

- Create an account below to start - the registration process. -

-
-
-
-
- -
-

{heading.title}

-

{heading.description}

+
+
+

+ Membership costs $10 for the full year. + You can pay for membership online here at our website. Alternatively, you + can pay at a club event or contact one of the{' '} + + committee members + + . +

+

+ Create an account below to start the + registration process. +

+
+
+
+ +
+

{heading.title}

+

{heading.description}

- - - - - - { - // eslint-disable-next-line react/jsx-key - [, , ][step - 2] - } - -
-
-
-
-
-
+ + + + + + { + // eslint-disable-next-line react/jsx-key + [, , ][step - 2] + } + +
+ +
+ ); } diff --git a/src/app/(account)/sign-in/page.tsx b/src/app/(account)/sign-in/page.tsx index 5b3aca11..2891bf05 100644 --- a/src/app/(account)/sign-in/page.tsx +++ b/src/app/(account)/sign-in/page.tsx @@ -17,7 +17,7 @@ const signInSchema = z.object({ password: z.string().min(1, { message: 'Please enter your password' }), }); -export default function SignInForm() { +export default function SignInPage() { const { isLoaded, signIn, setActive } = useSignIn(); const form = useForm>({ @@ -75,7 +75,7 @@ export default function SignInForm() { }; return ( -
+
{/* Heading */} @@ -109,7 +109,7 @@ export default function SignInForm() { > Forgot password? - diff --git a/src/app/(home)/page.tsx b/src/app/(home)/page.tsx index 882eea18..90c5ce11 100644 --- a/src/app/(home)/page.tsx +++ b/src/app/(home)/page.tsx @@ -3,12 +3,12 @@ import Title from '@/components/Title'; import Image from 'next/image'; import ImageCarousel from './ImageCarousel'; -export default function Home() { +export default function HomePage() { return ( -
-
+
+
{/* Hero Section */} -
+
{/* Left side */}
@@ -27,9 +27,7 @@ export default function Home() {

SOCIALISE,

- - Code. - + Code.
Thinking about Joining? -

+

New members are always welcome!

diff --git a/src/app/contact/Form.tsx b/src/app/contact/Form.tsx index 23ea5b99..dbc84b72 100644 --- a/src/app/contact/Form.tsx +++ b/src/app/contact/Form.tsx @@ -28,7 +28,7 @@ export default function Form({ className }: { className?: string }) { className="absolute right-[100px] top-[-48px] hidden md:block" />

diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 99ac89ef..0b46b016 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -5,21 +5,16 @@ import Sponsorship from './Sponsorship'; export default function ContactPage() { return ( -
-
-
- - Contact - -
- - -
- +
+
+
+ Contact
+
+ + +
+
); diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 56e44778..170c5f3e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -44,12 +44,12 @@ export default function RootLayout({ children }: RootLayoutProps) { }} > - -
-
+ +
+
{children} -
+