Skip to content

Commit

Permalink
chore: change favicon and title & description page
Browse files Browse the repository at this point in the history
  • Loading branch information
belapferreira committed Nov 5, 2023
1 parent b9ab38f commit ed4747e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
Binary file removed src/app/favicon.ico
Binary file not shown.
Binary file added src/app/icon.ico
Binary file not shown.
10 changes: 7 additions & 3 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { Roboto } from 'next/font/google';
const roboto = Roboto({ subsets: ['latin'], weight: ['400'] });

export const metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
title: 'DHIS2 Dashboard',
description: 'A list of dashboards available to a DHIS2 user',
};

export default function RootLayout({
Expand All @@ -15,7 +15,11 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={roboto.className}>{children}</body>
<body className={roboto.className}>
<div className="bg-app-grey-100 flex min-h-screen w-full flex-col">
{children}
</div>
</body>
</html>
);
}
3 changes: 3 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'],
theme: {
extend: {},
colors: {
'app-grey-100': '#F8F9FA',
},
},
plugins: [],
};

0 comments on commit ed4747e

Please sign in to comment.