mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-20 10:57:45 +08:00
* feat: enhance MAA website animation for a more elegant appearance * fix: briefly appears scrollbar which cause a bad animation apperance.
14 lines
285 B
TypeScript
14 lines
285 B
TypeScript
import { HomeHero } from './components/home/HomeHero'
|
|
|
|
function App() {
|
|
return (
|
|
<main className="h-full max-h-screen overflow-hidden">
|
|
<section className="h-screen min-h-[20rem] w-full relative">
|
|
<HomeHero />
|
|
</section>
|
|
</main>
|
|
)
|
|
}
|
|
|
|
export default App
|