-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage.tsx
65 lines (57 loc) · 2.09 KB
/
page.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import React from "react";
import Image from "next/image";
import './index.css';
import About from "./pages/gpt/page";
// localhost:3000/
import App from "./pages/gpt/page";
import Navbar from "./pages/Navbar/navbar";
import Link from "next/link";
import Footer from './pages/footer/page.js'
const Home = () => {
return (
<div className="main">
<Navbar />
<div className="card max-w-sm bg-white border border-gray-200 rounded-lg shadow dark:bg-gray-800 dark:border-gray-700">
<a href="#">
<div className="rounded-t-lg">
<Image
src="/mypic.jpg"
alt={"مرتضی تقوی"}
width={'600'}
height={'800'}
/>
</div>
</a>
<div className="p-5">
<a href="#">
<h5 className="mb-2 text-2xl font-bold tracking-tight text-gray-900 dark:text-white">
Hi my name is Morteza, I'm a fullStack developer
</h5>
</a>
<p className="mb-3 font-normal text-gray-700 dark:text-gray-400">
This is just my resume website where you can learn more about me
</p>
<div className="flex flex-col gap-2">
<button className="btn bg-dark px-4 py-2 text-white bg-glass rounded-lg shadow-glass">
<a href="https://instagram.com/dr_webiran">Instagram</a>
</button>
<button className="btn bg-dark px-4 py-2 text-white bg-glass rounded-lg shadow-glass">
<a href="https://t.me/iammorvism">Telegram</a>
</button>
<button className="btn bg-dark px-4 py-2 text-white bg-glass rounded-lg shadow-glass">
<a href="https://github.com/morvism">Github
</a>
</button>
<button className="btn bg-primary px-4 py-2 text-white bg-glass rounded-lg shadow-glass">
<a href="/pages/gpt"> Persian GPT </a>
</button>
</div>
</div>
</div>
<footer>
<Footer />
</footer>
</div>
);
};
export default Home;