feat: init
This commit is contained in:
19
apps/web/app/(home)/layout.tsx
Normal file
19
apps/web/app/(home)/layout.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
import type { Metadata, Viewport } from "next";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
robots: {
|
||||
index: true,
|
||||
follow: false,
|
||||
},
|
||||
};
|
||||
|
||||
export const viewport: Viewport = {
|
||||
minimumScale: 1,
|
||||
initialScale: 1,
|
||||
width: "device-width",
|
||||
viewportFit: "cover",
|
||||
};
|
||||
|
||||
export default function HomeLayout({ children }: { children: React.ReactNode }) {
|
||||
return <>{children}</>;
|
||||
}
|
||||
Reference in New Issue
Block a user