From 2cb9783cca328691dba53ddba3c5997487a46228 Mon Sep 17 00:00:00 2001 From: Christopher Arraya Date: Thu, 6 Jul 2023 18:37:56 -0400 Subject: [PATCH] change metadata --- app/layout.tsx | 16 ++++++++-------- app/page.tsx | 3 +-- tsconfig.json | 2 +- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index 71b3fbf..b5d0eb0 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,21 +1,21 @@ -import './globals.css' -import { Inter } from 'next/font/google' +import "./globals.css"; +import { Inter } from "next/font/google"; -const inter = Inter({ subsets: ['latin'] }) +const inter = Inter({ subsets: ["latin"] }); export const metadata = { - title: 'Create Next App', - description: 'Generated by create next app', -} + title: "Skalara", + description: "Project management for technical teams.", +}; export default function RootLayout({ children, }: { - children: React.ReactNode + children: React.ReactNode; }) { return ( {children} - ) + ); } diff --git a/app/page.tsx b/app/page.tsx index 6aa81af..7b41a0b 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -50,8 +50,7 @@ export default function Home() {

Empowering tech startups to automate, optimize, and streamline - projects -
+ projects
like never before.

diff --git a/tsconfig.json b/tsconfig.json index e06a445..e22b0a0 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -23,6 +23,6 @@ "@/*": ["./*"] } }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "lib/db.js"], "exclude": ["node_modules"] }