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

@@ -0,0 +1,11 @@
import React from 'react'
const FitCenter: React.FC<PropsWithChildren> = (props: PropsWithChildren) => {
return (
<>
<div id={'fit-center'}>{props.children}</div>
</>
)
}
export default FitCenter