-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.tsx
43 lines (40 loc) · 1.46 KB
/
index.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import Head from "next/head";
import styles from "styles/home.module.css";
import Image from "next/image";
import { Inter } from "next/font/google";
const inter = Inter({ subsets: ["latin"] });
export default function Home() {
return (
<>
<Head>
<title>Finmanager</title>
</Head>
<div className={styles.container}>
<div className={styles.title}>
<h1 className="animate-bounce">Welcome to FinManager!!!</h1>
<p className="w-96 px-8 pb-4 text-center -mt-4">
Are you looking to know your daily life financial
routine? aren't you curious to analyse how much you
spent on average each day? Would you like to manage your
finance to utilize your money in the best way? If yes,
you are at the right place!!!
</p>
</div>
<div>
<Image
src="/images/receipt.svg"
width={200}
height={200}
alt="money"
/>
<Image
src="/images/foot.svg"
width={150}
height={200}
alt="money"
/>
</div>
</div>
</>
);
}