change metadata

This commit is contained in:
Christopher Arraya 2023-07-06 18:37:56 -04:00
parent fb0685adf9
commit 2cb9783cca
3 changed files with 10 additions and 11 deletions

View File

@ -1,21 +1,21 @@
import './globals.css' import "./globals.css";
import { Inter } from 'next/font/google' import { Inter } from "next/font/google";
const inter = Inter({ subsets: ['latin'] }) const inter = Inter({ subsets: ["latin"] });
export const metadata = { export const metadata = {
title: 'Create Next App', title: "Skalara",
description: 'Generated by create next app', description: "Project management for technical teams.",
} };
export default function RootLayout({ export default function RootLayout({
children, children,
}: { }: {
children: React.ReactNode children: React.ReactNode;
}) { }) {
return ( return (
<html lang="en"> <html lang="en">
<body className={inter.className}>{children}</body> <body className={inter.className}>{children}</body>
</html> </html>
) );
} }

View File

@ -50,8 +50,7 @@ export default function Home() {
</h1> </h1>
<h2 className="font-medium text-lg"> <h2 className="font-medium text-lg">
Empowering tech startups to automate, optimize, and streamline Empowering tech startups to automate, optimize, and streamline
projects projects <br className="hidden md:block" />
<br className="hidden md:block" />
like never before. like never before.
</h2> </h2>
<div className="flex flex-col md:flex-row w-full max-w-md items-center space-y-2 md:space-y-0 md:space-x-2"> <div className="flex flex-col md:flex-row w-full max-w-md items-center space-y-2 md:space-y-0 md:space-x-2">

View File

@ -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"] "exclude": ["node_modules"]
} }