/ app / layout.tsx
layout.tsx
 1  import type { Metadata } from "next";
 2  
 3  export const metadata: Metadata = {
 4    title: {
 5      template: "%s | aswnss",
 6      default: "aswnss",
 7    },
 8    description:
 9      "Software developer and co-founder of Soft Served Web. Building innovative solutions with Next.js, React, and modern web technologies.",
10    authors: [{ name: "Aswin Lal M", url: "https://www.linkedin.com/in/aswnss" }],
11    creator: "Aswin Lal M",
12  };
13  
14  export default function RootLayout({
15    children,
16  }: Readonly<{
17    children: React.ReactNode;
18  }>) {
19    return (
20      <html lang="en" suppressHydrationWarning>
21        <body>{children}</body>
22      </html>
23    );
24  }