new ui hero updated

This commit is contained in:
2025-10-25 11:00:46 +08:00
parent 202b27f7be
commit 251dd79adc
11 changed files with 308 additions and 2 deletions

22
src/components/layout.tsx Normal file
View File

@@ -0,0 +1,22 @@
import { Outlet } from '@tanstack/react-router'
import {
Box,
Container,
} from '@chakra-ui/react'
import Header from './header'
import Footer from './footer'
function Layout() {
return (
<Container maxW="100vw" p={0} m={0} mt={0}>
<Header />
<Box position="relative">
<Outlet />
</Box>
<Footer />
</Container>
)
}
export default Layout