struct ContentView: View {
    var body: some View {
        Text("Hello, World!")

        Text("Emmanuel Vuignier")
            .font(.title)
            .fontWeight(.bold)

        Section {
            Text("Senior Web & iOS Developer")
                .font(.title3)
                .fontWeight(.regular)
            
            Text("Swiss Craftsmanship 🇨🇭")
                .font(.title3)
                .fontWeight(.regular)
        }
    }
}