layout.tsx 748 B

1234567891011121314151617181920212223242526
  1. export default function CoreLayout({
  2. children
  3. }: {
  4. children: React.ReactNode,
  5. }) {
  6. return (
  7. <section className="section">
  8. <div className="container">
  9. <div className="row">
  10. <div className="col">
  11. <main className="main">{children}</main>
  12. </div>
  13. <div className="col-3">
  14. <h1 className="section-title section-title-lg">Tabler Blog</h1>
  15. <p className="section-description">
  16. Stay in the loop with all things Tabler. We provide regular
  17. updates on new features, changelogs, and news, ensuring you never
  18. miss any of our software developments.
  19. </p>
  20. </div>
  21. </div>
  22. </div>
  23. </section>
  24. );
  25. }