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 { 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 (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
)
);
}

View File

@ -50,8 +50,7 @@ export default function Home() {
</h1>
<h2 className="font-medium text-lg">
Empowering tech startups to automate, optimize, and streamline
projects
<br className="hidden md:block" />
projects <br className="hidden md:block" />
like never before.
</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">

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"]
}