https://github.com/u7p4l-in/profile
Profile
https://github.com/u7p4l-in/profile
Last synced: 3 months ago
JSON representation
Profile
- Host: GitHub
- URL: https://github.com/u7p4l-in/profile
- Owner: U7P4L-IN
- License: mit
- Created: 2023-07-31T02:10:18.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-12T18:25:51.000Z (over 1 year ago)
- Last Synced: 2024-05-11T05:46:03.506Z (over 1 year ago)
- Language: CSS
- Homepage: https://u7p4l-in.github.io/Profile/
- Size: 22.5 KB
- Stars: 13
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Profile
Simple site to group all my profiles on social networks in one place.
## About the project
This is an open source project that serves as a free alternative to the Linktree website.
- [Demo](https://u7p4l-in.github.io/Profile/)## 👨💻 Quotes:
```go
package mainimport "fmt"
type Person struct {
name string
username string
age int
hobbies []string
job string
}func main() {
var me = new(Person)
me.name = "U7P4L 1N"
me.username = "U7P4L-IN"
me.age = "20"
me.job = "ai developer | web developer"
me.hobbies = []string{"code", "anime", "music"," singing"}
fmt.Println(me)
}
```