Add slogan to home page

This commit is contained in:
2023-09-07 18:12:33 +08:00
parent 45956673d2
commit 2c8429d012
6 changed files with 115 additions and 15 deletions

View File

@@ -1,9 +1,17 @@
import React from 'react'
const FitFullScreen: React.FC<PropsWithChildren> = (props: PropsWithChildren) => {
const FitFullScreen: React.FC<FitFullscreenProps> = (props: FitFullscreenProps) => {
return (
<>
<div id={'fit-fullscreen'}>{props.children}</div>
<div
id={'fit-fullscreen'}
style={{
zIndex: props.zIndex,
backgroundColor: props.backgroundColor
}}
>
{props.children}
</div>
</>
)
}