import { Metadata } from 'next'; import Link from 'next/link'; import React from 'react'; import ForgotPasswordForm from '@/components/auth/components-auth-forgot-form'; export const metadata: Metadata = { title: 'Forgot Password', }; export default function ForgotPasswordPage() { return (
{/* ===== Background Glows ===== */}
{/* ===== FORGOT PASSWORD CARD ===== */}
{/* Logo / Heading */}
SocialBuddy Logo

Forgot your password?

Enter your email and we’ll send you a reset link

{/* Forgot Password Form */} {/* Back to login */}
Remember your password?{' '} SIGN IN
); }