-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.tsx
35 lines (32 loc) · 1.06 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
import Head from "next/head";
import { Space_Grotesk } from "@next/font/google";
import Header from "../components/Header";
import Service from '../components/Service'
import Hero from '../components/Hero'
import About from '../components/About'
const spaceGrotesk = Space_Grotesk({
weight: "700",
display: "swap",
subsets: ["latin"],
});
export default function Home() {
return (
<>
<div className={`${spaceGrotesk.className} flex flex-col items-center m-0 `}>
<Head>
<title>ChatMate: Your Intelligent Buddy for Everyday Conversations</title>
<meta
name="description"
content="Using Quotes Generator can help you get exact quote you are looking for. Do you have an idea of where to find? Generate your quotes idea with ease."
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="https://i.postimg.cc/j5S0SV3g/logo2.png" />
</Head>
<Header />
<Hero />
<Service/>
<About/>
</div>
</>
);
}