File size: 590 Bytes
cdf301a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
'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>
  );
}