xsmall home header breakpoint

This commit is contained in:
adilallo
2025-08-06 08:53:15 -06:00
parent 37caada856
commit 73615e31a7
9 changed files with 222 additions and 7 deletions
+8 -1
View File
@@ -1,3 +1,10 @@
import HomeHeader from "./components/HomeHeader";
export default function Page() {
return <></>;
return (
<>
<HomeHeader />
<main>{/* Your home page content will go here */}</main>
</>
);
}