Swift Logo About.swift
// About Me struct Developer: Codable { var name: String = "David García Pérez" var expertise: String = "iOS Development" }
// Technical Skills enum Skills: String { case Swift case SwiftUI case UIKit case ObjectiveC = "Objective-C" }
// Communication Details struct ContactInfo { private let email: String = "davidcodable@gmail.com" func getEmail() -> String { return email } }