- Changed favicon and logo references to ONYXSimple - Updated package.json to modify start command and add deploy scripts - Adjusted layout and page metadata to reflect ONYXSimple branding - Enhanced marquee animation with dynamic duration - Added robots.txt and sitemap.xml for SEO - Refactored various components for consistency and clarity
14 lines
275 B
TypeScript
14 lines
275 B
TypeScript
import React from 'react'
|
|
|
|
const BeforeLogin: React.FC = () => {
|
|
return (
|
|
<div>
|
|
{/* <p>
|
|
<b>Welcome to your dashboard!</b>
|
|
{' This is where site admins will log in to manage your website.'}
|
|
</p>*/}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default BeforeLogin
|