N-FIN-1: customise template

This commit is contained in:
Markus Thielker 2024-03-08 21:54:36 +01:00
parent 52aed24a96
commit b9bdf36872
No known key found for this signature in database
12 changed files with 29 additions and 54 deletions

View file

@ -3,12 +3,13 @@ import { Inter } from 'next/font/google';
import './globals.css';
import { cn } from '@/lib/utils';
import { Toaster } from '@/components/ui/sonner';
import React from 'react';
const inter = Inter({subsets: ['latin']});
export const metadata: Metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
title: 'Finances',
description: 'Track your finances with ease',
};
export default function RootLayout({

View file

@ -12,7 +12,7 @@ export default async function Home() {
<User/>
</Link>
</Button>
Next Base
Next Finances
</main>
);
}