struct ContentView: View {
   var body: some View {
      VStack {
         Image("spot1")
            .resizable()
            .scaledToFit()
            .clipShape(ConcentricRectangle())
            .padding(40)
      }
      .background(.gray)
      .containerShape(.rect(cornerRadius: 60))
      .padding()
   }
}