Files
MaaAssistantArknights/website/apps/web/src/App.tsx
__Chisato__ b3d4269476 feat: enhance MAA website animation for a more elegant appearance (#11303)
* feat: enhance MAA website animation for a more elegant appearance

* fix: briefly appears scrollbar which cause a bad animation apperance.
2024-12-06 17:53:15 +01:00

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