Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Wellington-gc committed Jan 24, 2024
1 parent 7b91597 commit 42d3b72
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
18 changes: 9 additions & 9 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ import "./globals.css";
const inter = Inter({ subsets: ["latin"] });

export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "WQ CodeHub - Portfolio",
description: "My Portfolio.",
};

export default function RootLayout({
children,
children,
}: Readonly<{
children: React.ReactNode;
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
);
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
);
}
6 changes: 3 additions & 3 deletions app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default function Home() {
return (
<main><h1>My portfolio.</h1></main>
);
return (
<main><h1>My portfolio.</h1></main>
);
}

0 comments on commit 42d3b72

Please sign in to comment.