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 = () => (
|
2023-02-06 09:18:49 -08:00
|
|
|
<div className='from-primary-50 to-gradient-end/10 dark:from-primary-900/50 dark:via-primary-900 dark:to-primary-800/50 fixed h-screen w-full bg-gradient-to-tr via-white' />
|
2022-05-07 13:52:01 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
export default LandingGradient;
|