Skip to content

Commit

Permalink
Merge pull request #49 from indexnetwork/landing
Browse files Browse the repository at this point in the history
viewport
  • Loading branch information
serefyarar authored Feb 21, 2024
2 parents d84c150 + 8d742b5 commit 0655b47
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions web-app/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { AppLayout } from "components/layout/site/AppLayout";
import type { Metadata } from "next";
import type { Metadata, Viewport } from "next";
import { Inter } from "next/font/google";

const inter = Inter({ subsets: ["latin"] });
Expand All @@ -8,8 +8,7 @@ export const metadata: Metadata = {
metadataBase: new URL("https://index.network"),
title: "Index Network | Composable Discovery Protocol",
description:
"Index allows to create truly personalised and autonomous discovery experiences across the web.",
viewport: "width=device-width, initial-scale=1",
"Index allows to create truly personalised and autonomous discovery experiences across the web",
referrer: "origin-when-cross-origin",
icons: [
{ rel: "shortcut icon", url: "/favicon-white.png" },
Expand All @@ -34,6 +33,11 @@ export const metadata: Metadata = {
},
};

export const viewport: Viewport = {
width: "device-width",
initialScale: 1,
};

export default function RootLayout({
children,
}: {
Expand Down

0 comments on commit 0655b47

Please sign in to comment.