ChandimaPrabath's picture
debug
2902f73
raw
history blame contribute delete
590 Bytes
'use client';
import UserSearch from '@components/SearchUsers';
export default function SearchUsersPage() {
return (
<div className='search-page' style={{ width: '100%', padding: '20px', backgroundColor: 'rgb(28, 28, 47)', height: '100dvh' }}>
<div className='pulse-and-fade' style={{ display: 'flex', flexDirection: 'column', height: '100%', width: '100%' }}>
<div style={{ textAlign: 'center' }}>
<h1 style={{ color: '#4a4a4a', fontSize: '24px', marginBottom: '20px' }}>Nexus MS</h1>
<UserSearch />
</div>
</div>
</div>
);
}