({ children, className }: LayoutProps)
| 15 | }; |
| 16 | |
| 17 | const Layout = ({ children, className }: LayoutProps) => { |
| 18 | return ( |
| 19 | <html |
| 20 | lang="en" |
| 21 | suppressHydrationWarning |
| 22 | className={cn("scroll-smooth antialiased focus:scroll-auto", className)} |
| 23 | > |
| 24 | {children} |
| 25 | </html> |
| 26 | ); |
| 27 | }; |
| 28 | |
| 29 | // Main Component |
| 30 | type MainProps = { |