Skip to content

Commit 8eee8aa

Browse files
committed
clear up things
1 parent 9f9455d commit 8eee8aa

18 files changed

+6
-599
lines changed

README.md

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,7 @@
1-
# My Portfolio Site - WhatsApp Style
1+
# My Site
22

3-
- [Demo](https://rasyidcode.github.io)
4-
5-
## How-to run
3+
## How-to run on local
64

75
```
86
$ docker run -it --rm -v $PWD:/srv/app -w /srv/app -p 3000:3000 -u node node:22-alpine sh
9-
```
10-
11-
## Planning
12-
13-
### Chats
14-
15-
- [ ] Chat with me
16-
- [ ] Command to show summary about me
17-
- [ ] Command to show working experiences
18-
- [ ] Command to show skills
19-
- [ ] Command to show projects
20-
- [ ] Command to show email
21-
- [ ] Command to show CV
22-
- [ ] Visitors Log
23-
- [ ] Welcome Bot
7+
```

app/globals.css

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -24,28 +24,4 @@
2424
border-color: var(--color-gray-200, currentColor);
2525
}
2626

27-
}
28-
29-
@layer utilities {
30-
.scrollbar {
31-
scrollbar-width: thin;
32-
scrollbar-color: rgba(10, 20, 26, .3) transparent;
33-
}
34-
35-
/* .scrollbar::-webkit-scrollbar {
36-
width: 12px;
37-
}
38-
39-
.scrollbar::-webkit-scrollbar-track {
40-
background: #ffffff;
41-
}
42-
43-
.scrollbar::-webkit-scrollbar-thumb {
44-
background: #CED0D1;
45-
border: 3px solid #ffffff;
46-
} */
47-
48-
/* .scrollbar::-webkit-scrollbar-thumb:hover {
49-
background: #c0a0b9;
50-
} */
5127
}

app/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import { Inter } from 'next/font/google'
55
const inter = Inter({ subsets: ['latin'] })
66

77
export const metadata: Metadata = {
8-
title: 'WhatsApp Style Portfolio',
9-
description: 'My personal github pages',
8+
title: 'My Site',
9+
description: 'My Personal Site',
1010
}
1111

1212
export default function RootLayout({

app/page.tsx

Lines changed: 1 addition & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,5 @@
1-
import AppHeader from "@/components/AppHeader";
2-
import ChatCategories from "@/components/ChatCategories";
3-
import ChatHeader from "@/components/ChatHeader";
4-
import ChatInput from "@/components/ChatInput";
5-
import ChatList from "@/components/ChatList";
6-
import ChatPanel from "@/components/ChatPanel";
7-
import ChatSearch from "@/components/ChatSearch";
8-
import SideMenu from "@/components/SideMenu";
9-
import { PhoneIcon } from "@heroicons/react/24/outline";
10-
11-
121
export default function Page() {
132
return (
14-
<div className="flex flex-col h-screen overflow-hidden">
15-
<div className='absolute w-full h-full z-0 bg-[#DAD7D3]'>
16-
<div className='h-30 bg-[#00A783]'></div>
17-
</div>
18-
<div className='flex-1 flex overflow-hidden p-5 z-50'>
19-
<div className="flex-1 flex overflow-hidden shadow-xl">
20-
<SideMenu />
21-
<div className="bg-white w-md border flex flex-col relative">
22-
<AppHeader />
23-
<ChatSearch />
24-
<ChatCategories />
25-
<ChatList />
26-
<a href="#" className="absolute bottom-0 bg-white text-center
27-
flex items-center p-2 justify-center gap-4 w-full border-t">
28-
<div className="bg-[#25D366] p-1 rounded-sm">
29-
<PhoneIcon className="size-7 text-white" />
30-
</div>
31-
<h1>Get WhyApp for Windows</h1>
32-
</a>
33-
</div>
34-
<div className="flex-1 flex flex-col overflow-hidden relative">
35-
<div className="w-full h-full absolute bg-[url(./wa-bg.png)] bg-fixed bg-contain
36-
bg-[#EFEAE2] bg-repeat z-0"></div>
37-
<ChatHeader />
38-
<ChatPanel />
39-
<ChatInput />
40-
</div>
41-
</div>
42-
</div>
43-
</div>
3+
<h1>My Site</h1>
444
)
455
}

app/try-tooltip/page.tsx

Lines changed: 0 additions & 100 deletions
This file was deleted.

assets/me.jpg

-143 KB
Binary file not shown.

components/AppHeader.tsx

Lines changed: 0 additions & 20 deletions
This file was deleted.

components/ChatCategories.tsx

Lines changed: 0 additions & 14 deletions
This file was deleted.

components/ChatHeader.tsx

Lines changed: 0 additions & 48 deletions
This file was deleted.

components/ChatInput.tsx

Lines changed: 0 additions & 26 deletions
This file was deleted.

0 commit comments

Comments
 (0)