Skip to content

Commit

Permalink
️🪠🥎 ↝ [SGV2-13]: app router
Browse files Browse the repository at this point in the history
  • Loading branch information
Gizmotronn committed Apr 19, 2024
1 parent 1b5564f commit be61819
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions app/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { Metadata } from "next";

export const metadata: Metadata = {
title: 'Star Sailors',
// description: 'By Talonova Aerospace',
}

export default function Layout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
};

0 comments on commit be61819

Please sign in to comment.