From 6264a94df36ad083d1352dd3f1ee759aa3c1e53f Mon Sep 17 00:00:00 2001 From: Chika Date: Tue, 14 Jun 2022 13:01:32 +0300 Subject: [PATCH] html: add app title --- pages/index.tsx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pages/index.tsx b/pages/index.tsx index adb1cb0..144f074 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -1,13 +1,21 @@ import initializeApollo from 'apollo/client'; import Calculation from 'Components/Calculation'; import type { GetServerSideProps } from 'next'; +import Head from 'next/head'; import { fetchUser } from 'services/user'; import type { BasePageProps } from 'types/page'; type PageProps = BasePageProps; function Home() { - return ; + return ( + <> + + Лизинговый калькулятор - Эволюция + + + + ); } export const getServerSideProps: GetServerSideProps = async (ctx) => {