page.tsx 781 B

123456789101112131415161718192021
  1. import {Body, Footer, Header, Ratio} from "./lib"
  2. import "./page.css"
  3. export default function Home() {
  4. const ratio: Ratio = new Ratio(8, 6, 88);
  5. return (
  6. <div className="page-container">
  7. <Header height={ratio.top()} className="bg-gray-800 flex flex-row justify-center items-center">
  8. <h1>My Website</h1>
  9. </Header>
  10. <Body height={ratio.middle()} className="bg-gray-700 justify-center items-center flex flex-col">
  11. <h1>Main Content</h1>
  12. <p>Your page content here...</p>
  13. </Body>
  14. <Footer height={ratio.bottom()} className="bg-gray-800 justify-center items-center flex">
  15. <p>© 2025 Custom Footer</p>
  16. </Footer>
  17. </div>
  18. );
  19. };