2022-05-07 13:52:01 -07:00
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
/** Fullscreen gradient used as a backdrop to public pages. */
|
|
|
|
const LandingGradient: React.FC = () => (
|
2022-07-22 10:30:16 -07:00
|
|
|
<div className='fixed h-screen w-full bg-gradient-to-tr from-primary-50 dark:from-primary-900/50 via-white dark:via-primary-900 to-gradient-end/10 dark:to-primary-800/50' />
|
2022-05-07 13:52:01 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
export default LandingGradient;
|