Skip to content
This repository was archived by the owner on Nov 16, 2024. It is now read-only.

Commit 198aa63

Browse files
committed
release: 1.0.0 with minor tweaks
1 parent e60c0fa commit 198aa63

File tree

6 files changed

+25
-16
lines changed

6 files changed

+25
-16
lines changed

README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![Theppitak M_](https://github.com/mmmmmob/me.theppitak/assets/141404845/29d12b14-2540-4953-9c58-075005d9442d)
44

5-
theppitak.me , my portfoilio site built with React, Bun, and Vite. Design with cleanliness and simplicity in mind.
5+
theppitak.me , my portfolio site built with React, Bun, and Vite. Design with cleanliness and simplicity in mind.
66

77
## Table of Contents
88

@@ -14,6 +14,7 @@ theppitak.me , my portfoilio site built with React, Bun, and Vite. Design with c
1414
- [Prerequisites](#prerequisites)
1515
- [Installation](#installation)
1616
- [Running the Project](#running-the-project)
17+
- [Now Playing Bar](#now-playing-bar)
1718
- [Technologies Used](#technologies-used)
1819
- [Contributing](#contributing)
1920
- [License](#license)
@@ -63,17 +64,19 @@ bun run dev
6364

6465
Open your browser and visit `http://localhost:5173` or the address as shown in your terminal to see your portfolio.
6566

66-
### Spotify Now Playing Bar
67+
### Now Playing Bar
68+
69+
The Now Playing Bar at the bottom pf the page uses Spotify's Now Playing API to retrieve information about your current listening song and render the data live on your site
6770

6871
Refer to the `.env.example` file to learn how to obtain your credential tokens from the Spotify Developer website. Use these tokens in production by creating a `.env.local` file in your folder. Remember to set the actual environment variables on your deployment platform.
6972

7073
You can opt-out of this feature by removing the `<NowPlaying/>` component from `App.jsx`.
7174

7275
## Technologies Used
7376

74-
- **Frontend**: React, Tailwind CSS, daisyUI and react-icons
75-
- **Bundler**: Vite
76-
- **Package Manager**: Bun
77+
- **Frontend**: [React](https://react.dev/), [Tailwind CSS](https://tailwindcss.com/), [daisyUI](https://daisyui.com/) and [react-icons](https://react-icons.github.io/react-icons/)
78+
- **Bundler**: [Vite](https://vitejs.dev/)
79+
- **JavaScript Runtime and Package Manager**: [Bun](https://bun.sh/)
7780

7881
## Contributing
7982

@@ -87,4 +90,4 @@ Contributions are welcome! Please fork this repository and submit a pull request
8790

8891
## License
8992

90-
This project is licensed under the Creative Commons CC-BY-SA-4.0 license. See the [LICENSE](LICENSE) file for details.
93+
This project is licensed under the Creative Commons license. See the [LICENSE](LICENSE) file for details.

package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "me.theppitak",
33
"private": true,
4-
"version": "0.0.0",
4+
"version": "1.0.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -35,8 +35,6 @@
3535
"vite-plugin-node-polyfills": "^0.22.0"
3636
},
3737
"prettier": {
38-
"plugins": [
39-
"prettier-plugin-tailwindcss"
40-
]
38+
"plugins": ["prettier-plugin-tailwindcss"]
4139
}
4240
}

src/components/Header.jsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ import ModeToggle from "../snippets/ModeToggle";
44
function Header() {
55
return (
66
<div className="flex h-12 w-screen justify-between bg-white/20 shadow backdrop-blur-lg md:h-14 dark:bg-gray-700/50">
7-
<img
8-
src="/logo.png"
9-
alt="avatar"
7+
<a
8+
href="#"
109
className="ml-1 size-10 -translate-y-1 self-center rounded-md p-1 md:ml-3"
11-
/>
10+
>
11+
<img src="/logo.png" alt="avatar" />
12+
</a>
1213
<div className="mr-3 flex self-center md:mr-5">
1314
<div className="self-center">
1415
<CurrentTime />

src/components/Project.jsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import {
55
SiNodedotjs,
66
SiReact,
77
SiSwift,
8+
SiDaisyui,
89
} from "react-icons/si";
910
import { VscJson } from "react-icons/vsc";
1011
import ProjectCard from "../sub-components/ProjectCard";
@@ -52,6 +53,12 @@ const projects = [
5253
color: "bg-lime-700",
5354
reactIcon: SiNodedotjs,
5455
},
56+
{
57+
id: 5,
58+
name: "DaisyUI",
59+
color: "bg-orange-500/80",
60+
reactIcon: SiDaisyui,
61+
},
5562
],
5663
icon: "/loglife.png",
5764
url: "https://loglife.guru",

src/components/WorkExp.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const experiences = [
77
workplace: "Self-studied",
88
url: "https://www.linkedin.com/in/theppitak-m/details/certifications/",
99
title: "iOS Mobile Developer",
10-
desc: "Since high school, I've always been passionate about Apple software. After finishing the bootcamp, I decided to dive into native iOS development. I taught myself Swift through online courses and various hands-on projects. In just two months, I created my first native iOS application, Lotto Journal.",
10+
desc: "Since high school, I've always been passionate about Apple platform. After finishing the bootcamp, I decided to dive into native iOS development. I taught myself Swift through online courses and various hands-on projects. After two months, I created my first native iOS application, Lotto Journal.",
1111
},
1212
{
1313
id: 2,

src/snippets/ModeToggle.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function ModeToggle() {
2626
return (
2727
<button
2828
onClick={changeTheme}
29-
className="rounded-sm p-1 align-bottom text-base ring-1 ring-slate-700/50 ring-offset-1 hover:ring-slate-700 dark:ring-slate-400 hover:dark:ring-slate-400/50"
29+
className="ml-1 rounded-sm p-1 align-bottom text-base ring-1 ring-slate-700/50 ring-offset-1 hover:ring-slate-700 dark:ring-slate-400 hover:dark:ring-slate-400/50"
3030
>
3131
{theme === "dark" ? <IoSunny /> : <IoMoon />}
3232
</button>

0 commit comments

Comments
 (0)