data class Profile(
val name: String = "Cloudlein",
val description: String = "Passionate developer exploring new tech",
val languages: List = listOf("Java", "PHP", "Rust", "Golang"),
val focus: List = listOf("Web", "Android"),
val github: String = "https://github.com/cloudlein",
val location: String = "张家界市,湖南省,中国",
val hobbies: List = listOf("Gaming", "Music")
)



