struct Project {

var info = [String:Any]()

var owner = justin

init(_ name: String) {

info["name"] = name

}

}


var thisProject = Project("placeholder")

thisProject.info["about"] = "A placeholder until I've added them"

thisProject.info["url"] = "https://github.com/juice805"

thisProject.info["tags"] = ["testing", "construction", "goback", "don't look"]


Website.projects.append(thisProject)