create tamplate scroll

This commit is contained in:
2025-03-06 10:14:03 +08:00
parent f1175b77d4
commit 307e61c567
5 changed files with 476 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import { Test_Children } from "./test_children";
import Test_FooterHome from "./test_footer";
import Test_LayoutHeaderTamplate from "./test_header";
import { Test_Tamplate } from "./test_tamplate";
export default async function Page() {
return (
<>
<Test_Tamplate
header={<Test_LayoutHeaderTamplate title="Test scroll" />}
// footer={<Test_FooterHome />}
>
<Test_Children />
</Test_Tamplate>
</>
);
}